KMLline_tutorial tutorial for KMLline

This tutorial explains KMLline

Contents

A simple case

The best documented function in the toolbox is KML line For the most it works just like matlab line, except that a lot of extra options are available via keyword value pairs.

Just a simple case, some lat an lon data. To see approximately what we will get, use the matlab function line.

lat = [70 40 40 70];
lon = [4,5,16,16];

line(lat,lon);
axis([30 80 3 17])

KMLline works just like line, except that one has to save the output file, and open that in Google Earth to view the result. Alternatively, you can assign the location to save the file as a keyword/value pair.

fname = 'line.kml';
KMLline(lat,lon,'fileName',fname);

3D lines

matlab can also draw 3 dimensional lines

lon = 0:.1:360;
lat = linspace(0,90,size(lon,2));
z  = (1+sind(lon*50))*1e5;
clf;
line(lat,lon,z)
view([-3 88])

and so can KMLline

KMLline(lat,lon,z,'fileName',fname);

Multiple lines

Matlab can draw multiple lines at once

[lat,lon] = meshgrid(90:-10:-90,0:.5:360);
z  = (1+sind(lon*50))*1e5;
clf;
line(lat,lon,z)
view([66 89])

and so can KMLline

KMLline(lat,lon,z,'fileName',fname);

Grids

We can also add the transposed lines

line(lat',lon',z')
axis([-10 30 10 30 0 1e5])
axis off

And so can KMLline. Save with a different name as the previous KML file and open both in Google Earth. Also, we set the 'fill' property to false

KMLline(lat',lon',z','fileName',fname,'fill',false);

Advanced options

Finally, here is an example of how to make some more complex output, using additional keyoword value pairs

To get an idea of different options, just call the function without arguments.

KMLline
ans = 

        fileName: ''
     description: ''
         kmlName: []
       lineWidth: 1
       lineColor: [0 0 0]
       lineAlpha: 1
            fill: 1
       fillColor: [0 0.5000 0]
       fillAlpha: 0.4000
        openInGE: 0
          timeIn: []
         timeOut: []
    dateStrStyle: 29
            is3D: 0
         visible: 1
         extrude: 1
      tessellate: 1
       zScaleFun: @(z)(z+0)*1
             fid: -1

We will generate some data, and specify a variety of input arguments. Note the repetition of inputs that are smaller than the number of lines. This allows one to make patterns in the output.

[lat,lon] = meshgrid(30:.1:35,0:.1:5);
z  = 1000*abs(peaks(51));

OPT = KMLline(lat,lon,z,'fileName',...
    fname,'fillColor',jet(5),'fillAlpha',[1 0 1 0 1],...
    'lineColor',[0 0 1],'lineWidth',[0 1 2 4 2 1],'lineAlpha',linspace(0,1,51));

To understand how this works, evaluate the OPT

var2evalstr(OPT)
ans =

OPT = '<Style id="line_style1">
<LineStyle>
<color>00FF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style2">
<LineStyle>
<color>1FFF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style3">
<LineStyle>
<color>3DFF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style4">
<LineStyle>
<color>5CFF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style5">
<LineStyle>
<color>7AFF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style6">
<LineStyle>
<color>99FF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style7">
<LineStyle>
<color>B8FF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style8">
<LineStyle>
<color>D6FF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style9">
<LineStyle>
<color>F5FF0000</color>
<width>0</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style10">
<LineStyle>
<color>05FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style11">
<LineStyle>
<color>1AFF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style12">
<LineStyle>
<color>24FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style13">
<LineStyle>
<color>38FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style14">
<LineStyle>
<color>42FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style15">
<LineStyle>
<color>57FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style16">
<LineStyle>
<color>61FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style17">
<LineStyle>
<color>75FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style18">
<LineStyle>
<color>80FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style19">
<LineStyle>
<color>94FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style20">
<LineStyle>
<color>9EFF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style21">
<LineStyle>
<color>B3FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style22">
<LineStyle>
<color>BDFF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style23">
<LineStyle>
<color>D1FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style24">
<LineStyle>
<color>DBFF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style25">
<LineStyle>
<color>F0FF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style26">
<LineStyle>
<color>FAFF0000</color>
<width>1</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style27">
<LineStyle>
<color>0AFF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style28">
<LineStyle>
<color>14FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style29">
<LineStyle>
<color>29FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style30">
<LineStyle>
<color>33FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style31">
<LineStyle>
<color>47FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style32">
<LineStyle>
<color>52FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style33">
<LineStyle>
<color>66FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style34">
<LineStyle>
<color>70FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style35">
<LineStyle>
<color>85FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style36">
<LineStyle>
<color>8FFF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style37">
<LineStyle>
<color>A3FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style38">
<LineStyle>
<color>ADFF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style39">
<LineStyle>
<color>C2FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style40">
<LineStyle>
<color>CCFF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style41">
<LineStyle>
<color>E0FF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style42">
<LineStyle>
<color>EBFF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style43">
<LineStyle>
<color>FFFF0000</color>
<width>2</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style44">
<LineStyle>
<color>0FFF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style45">
<LineStyle>
<color>2EFF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style46">
<LineStyle>
<color>4DFF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style47">
<LineStyle>
<color>6BFF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style48">
<LineStyle>
<color>8AFF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style49">
<LineStyle>
<color>A8FF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style50">
<LineStyle>
<color>C7FF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="line_style51">
<LineStyle>
<color>E6FF0000</color>
<width>4</width>
</LineStyle>
<open>1</open>
</Style>
<Style id="fill_style1">
<LineStyle>
<color>FF000000</color>
<width>0</width>
</LineStyle>
<open>1</open>
<PolyStyle>
<color>FFFF8000</color>
<outline>1</outline>
<fill>1</fill>
</PolyStyle>
</Style>
<Style id="fill_style2">
<LineStyle>
<color>FF000000</color>
<width>0</width>
</LineStyle>
<open>1</open>
<PolyStyle>
<color>00FFFF00</color>
<outline>1</outline>
<fill>1</fill>
</PolyStyle>
</Style>
<Style id="fill_style3">
<LineStyle>
<color>FF000000</color>
<width>0</width>
</LineStyle>
<open>1</open>
<PolyStyle>
<color>FF80FF80</color>
<outline>1</outline>
<fill>1</fill>
</PolyStyle>
</Style>
<Style id="fill_style4">
<LineStyle>
<color>FF000000</color>
<width>0</width>
</LineStyle>
<open>1</open>
<PolyStyle>
<color>FF0080FF</color>
<outline>1</outline>
<fill>1</fill>
</PolyStyle>
</Style>
<Style id="fill_style5">
<LineStyle>
<color>FF000000</color>
<width>0</width>
</LineStyle>
<open>1</open>
<PolyStyle>
<color>0000FFFF</color>
<outline>1</outline>
<fill>1</fill>
</PolyStyle>
</Style>
<Placemark>
<name></name>
<styleUrl>#line_style1</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.00000000,0.067 0.10000000,30.00000000,0.102 0.20000000,30.00000000,0.151 0.30000000,30.00000000,0.217 0.40000000,30.00000000,0.301 0.50000000,30.00000000,0.403 0.60000000,30.00000000,0.517 0.70000000,30.00000000,0.632 0.80000000,30.00000000,0.726 0.90000000,30.00000000,0.764 1.00000000,30.00000000,0.695 1.10000000,30.00000000,0.448 1.20000000,30.00000000,0.065 1.30000000,30.00000000,0.944 1.40000000,30.00000000,2.293 1.50000000,30.00000000,4.202 1.60000000,30.00000000,6.729 1.70000000,30.00000000,9.878 1.80000000,30.00000000,13.584 1.90000000,30.00000000,17.701 2.00000000,30.00000000,22.009 2.10000000,30.00000000,26.229 2.20000000,30.00000000,30.057 2.30000000,30.00000000,33.196 2.40000000,30.00000000,35.402 2.50000000,30.00000000,36.506 2.60000000,30.00000000,36.443 2.70000000,30.00000000,35.246 2.80000000,30.00000000,33.045 2.90000000,30.00000000,30.037 3.00000000,30.00000000,26.465 3.10000000,30.00000000,22.586 3.20000000,30.00000000,18.648 3.30000000,30.00000000,14.865 3.40000000,30.00000000,11.407 3.50000000,30.00000000,8.391 3.60000000,30.00000000,5.881 3.70000000,30.00000000,3.888 3.80000000,30.00000000,2.385 3.90000000,30.00000000,1.314 4.00000000,30.00000000,0.599 4.10000000,30.00000000,0.161 4.20000000,30.00000000,0.077 4.30000000,30.00000000,0.182 4.40000000,30.00000000,0.207 4.50000000,30.00000000,0.188 4.60000000,30.00000000,0.151 4.70000000,30.00000000,0.112 4.80000000,30.00000000,0.078 4.90000000,30.00000000,0.051 5.00000000,30.00000000,0.032 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.00000000,0.067 0.10000000,30.00000000,0.102 0.20000000,30.00000000,0.151 0.30000000,30.00000000,0.217 0.40000000,30.00000000,0.301 0.50000000,30.00000000,0.403 0.60000000,30.00000000,0.517 0.70000000,30.00000000,0.632 0.80000000,30.00000000,0.726 0.90000000,30.00000000,0.764 1.00000000,30.00000000,0.695 1.10000000,30.00000000,0.448 1.20000000,30.00000000,0.065 1.30000000,30.00000000,0.944 1.40000000,30.00000000,2.293 1.50000000,30.00000000,4.202 1.60000000,30.00000000,6.729 1.70000000,30.00000000,9.878 1.80000000,30.00000000,13.584 1.90000000,30.00000000,17.701 2.00000000,30.00000000,22.009 2.10000000,30.00000000,26.229 2.20000000,30.00000000,30.057 2.30000000,30.00000000,33.196 2.40000000,30.00000000,35.402 2.50000000,30.00000000,36.506 2.60000000,30.00000000,36.443 2.70000000,30.00000000,35.246 2.80000000,30.00000000,33.045 2.90000000,30.00000000,30.037 3.00000000,30.00000000,26.465 3.10000000,30.00000000,22.586 3.20000000,30.00000000,18.648 3.30000000,30.00000000,14.865 3.40000000,30.00000000,11.407 3.50000000,30.00000000,8.391 3.60000000,30.00000000,5.881 3.70000000,30.00000000,3.888 3.80000000,30.00000000,2.385 3.90000000,30.00000000,1.314 4.00000000,30.00000000,0.599 4.10000000,30.00000000,0.161 4.20000000,30.00000000,0.077 4.30000000,30.00000000,0.182 4.40000000,30.00000000,0.207 4.50000000,30.00000000,0.188 4.60000000,30.00000000,0.151 4.70000000,30.00000000,0.112 4.80000000,30.00000000,0.078 4.90000000,30.00000000,0.051 5.00000000,30.00000000,0.032 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style10</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.10000000,0.123 0.10000000,30.10000000,0.189 0.20000000,30.10000000,0.279 0.30000000,30.10000000,0.401 0.40000000,30.10000000,0.558 0.50000000,30.10000000,0.749 0.60000000,30.10000000,0.966 0.70000000,30.10000000,1.193 0.80000000,30.10000000,1.392 0.90000000,30.10000000,1.504 1.00000000,30.10000000,1.439 1.10000000,30.10000000,1.077 1.20000000,30.10000000,0.260 1.30000000,30.10000000,1.193 1.40000000,30.10000000,3.469 1.50000000,30.10000000,6.737 1.60000000,30.10000000,11.105 1.70000000,30.10000000,16.592 1.80000000,30.10000000,23.086 1.90000000,30.10000000,30.335 2.00000000,30.10000000,37.949 2.10000000,30.10000000,45.432 2.20000000,30.10000000,52.241 2.30000000,30.10000000,57.847 2.40000000,30.10000000,61.810 2.50000000,30.10000000,63.832 2.60000000,30.10000000,63.793 2.70000000,30.10000000,61.752 2.80000000,30.10000000,57.932 2.90000000,30.10000000,52.681 3.00000000,30.10000000,46.423 3.10000000,30.10000000,39.609 3.20000000,30.10000000,32.673 3.30000000,30.10000000,25.997 3.40000000,30.10000000,19.883 3.50000000,30.10000000,14.545 3.60000000,30.10000000,10.099 3.70000000,30.10000000,6.573 3.80000000,30.10000000,3.922 3.90000000,30.10000000,2.045 4.00000000,30.10000000,0.809 4.10000000,30.10000000,0.067 4.20000000,30.10000000,0.318 4.30000000,30.10000000,0.467 4.40000000,30.10000000,0.475 4.50000000,30.10000000,0.413 4.60000000,30.10000000,0.325 4.70000000,30.10000000,0.237 4.80000000,30.10000000,0.163 4.90000000,30.10000000,0.107 5.00000000,30.10000000,0.067 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.10000000,0.123 0.10000000,30.10000000,0.189 0.20000000,30.10000000,0.279 0.30000000,30.10000000,0.401 0.40000000,30.10000000,0.558 0.50000000,30.10000000,0.749 0.60000000,30.10000000,0.966 0.70000000,30.10000000,1.193 0.80000000,30.10000000,1.392 0.90000000,30.10000000,1.504 1.00000000,30.10000000,1.439 1.10000000,30.10000000,1.077 1.20000000,30.10000000,0.260 1.30000000,30.10000000,1.193 1.40000000,30.10000000,3.469 1.50000000,30.10000000,6.737 1.60000000,30.10000000,11.105 1.70000000,30.10000000,16.592 1.80000000,30.10000000,23.086 1.90000000,30.10000000,30.335 2.00000000,30.10000000,37.949 2.10000000,30.10000000,45.432 2.20000000,30.10000000,52.241 2.30000000,30.10000000,57.847 2.40000000,30.10000000,61.810 2.50000000,30.10000000,63.832 2.60000000,30.10000000,63.793 2.70000000,30.10000000,61.752 2.80000000,30.10000000,57.932 2.90000000,30.10000000,52.681 3.00000000,30.10000000,46.423 3.10000000,30.10000000,39.609 3.20000000,30.10000000,32.673 3.30000000,30.10000000,25.997 3.40000000,30.10000000,19.883 3.50000000,30.10000000,14.545 3.60000000,30.10000000,10.099 3.70000000,30.10000000,6.573 3.80000000,30.10000000,3.922 3.90000000,30.10000000,2.045 4.00000000,30.10000000,0.809 4.10000000,30.10000000,0.067 4.20000000,30.10000000,0.318 4.30000000,30.10000000,0.467 4.40000000,30.10000000,0.475 4.50000000,30.10000000,0.413 4.60000000,30.10000000,0.325 4.70000000,30.10000000,0.237 4.80000000,30.10000000,0.163 4.90000000,30.10000000,0.107 5.00000000,30.10000000,0.067 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style27</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.20000000,0.220 0.10000000,30.20000000,0.336 0.20000000,30.20000000,0.498 0.30000000,30.20000000,0.715 0.40000000,30.20000000,0.995 0.50000000,30.20000000,1.339 0.60000000,30.20000000,1.739 0.70000000,30.20000000,2.165 0.80000000,30.20000000,2.561 0.90000000,30.20000000,2.830 1.00000000,30.20000000,2.826 1.10000000,30.20000000,2.340 1.20000000,30.20000000,1.105 1.30000000,30.20000000,1.193 1.40000000,30.20000000,4.888 1.50000000,30.20000000,10.279 1.60000000,30.20000000,17.574 1.70000000,30.20000000,26.816 1.80000000,30.20000000,37.831 1.90000000,30.20000000,50.192 2.00000000,30.20000000,63.230 2.10000000,30.20000000,76.092 2.20000000,30.20000000,87.834 2.30000000,30.20000000,97.542 2.40000000,30.20000000,104.452 2.50000000,30.20000000,108.048 2.60000000,30.20000000,108.117 2.70000000,30.20000000,104.758 2.80000000,30.20000000,98.348 2.90000000,30.20000000,89.474 3.00000000,30.20000000,78.856 3.10000000,30.20000000,67.259 3.20000000,30.20000000,55.423 3.30000000,30.20000000,44.000 3.40000000,30.20000000,33.519 3.50000000,30.20000000,24.354 3.60000000,30.20000000,16.716 3.70000000,30.20000000,10.668 3.80000000,30.20000000,6.136 3.90000000,30.20000000,2.952 4.00000000,30.20000000,0.885 4.10000000,30.20000000,0.319 4.20000000,30.20000000,0.906 4.30000000,30.20000000,1.088 4.40000000,30.20000000,1.035 4.50000000,30.20000000,0.869 4.60000000,30.20000000,0.671 4.70000000,30.20000000,0.484 4.80000000,30.20000000,0.330 4.90000000,30.20000000,0.215 5.00000000,30.20000000,0.133 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.20000000,0.220 0.10000000,30.20000000,0.336 0.20000000,30.20000000,0.498 0.30000000,30.20000000,0.715 0.40000000,30.20000000,0.995 0.50000000,30.20000000,1.339 0.60000000,30.20000000,1.739 0.70000000,30.20000000,2.165 0.80000000,30.20000000,2.561 0.90000000,30.20000000,2.830 1.00000000,30.20000000,2.826 1.10000000,30.20000000,2.340 1.20000000,30.20000000,1.105 1.30000000,30.20000000,1.193 1.40000000,30.20000000,4.888 1.50000000,30.20000000,10.279 1.60000000,30.20000000,17.574 1.70000000,30.20000000,26.816 1.80000000,30.20000000,37.831 1.90000000,30.20000000,50.192 2.00000000,30.20000000,63.230 2.10000000,30.20000000,76.092 2.20000000,30.20000000,87.834 2.30000000,30.20000000,97.542 2.40000000,30.20000000,104.452 2.50000000,30.20000000,108.048 2.60000000,30.20000000,108.117 2.70000000,30.20000000,104.758 2.80000000,30.20000000,98.348 2.90000000,30.20000000,89.474 3.00000000,30.20000000,78.856 3.10000000,30.20000000,67.259 3.20000000,30.20000000,55.423 3.30000000,30.20000000,44.000 3.40000000,30.20000000,33.519 3.50000000,30.20000000,24.354 3.60000000,30.20000000,16.716 3.70000000,30.20000000,10.668 3.80000000,30.20000000,6.136 3.90000000,30.20000000,2.952 4.00000000,30.20000000,0.885 4.10000000,30.20000000,0.319 4.20000000,30.20000000,0.906 4.30000000,30.20000000,1.088 4.40000000,30.20000000,1.035 4.50000000,30.20000000,0.869 4.60000000,30.20000000,0.671 4.70000000,30.20000000,0.484 4.80000000,30.20000000,0.330 4.90000000,30.20000000,0.215 5.00000000,30.20000000,0.133 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style44</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.30000000,0.379 0.10000000,30.30000000,0.577 0.20000000,30.30000000,0.853 0.30000000,30.30000000,1.225 0.40000000,30.30000000,1.707 0.50000000,30.30000000,2.304 0.60000000,30.30000000,3.006 0.70000000,30.30000000,3.774 0.80000000,30.30000000,4.523 0.90000000,30.30000000,5.103 1.00000000,30.30000000,5.280 1.10000000,30.30000000,4.715 1.20000000,30.30000000,2.966 1.30000000,30.30000000,0.499 1.40000000,30.30000000,6.248 1.50000000,30.30000000,14.809 1.60000000,30.30000000,26.556 1.70000000,30.30000000,41.595 1.80000000,30.30000000,59.659 1.90000000,30.30000000,80.054 2.00000000,30.30000000,101.672 2.10000000,30.30000000,123.084 2.20000000,30.30000000,142.706 2.30000000,30.30000000,159.001 2.40000000,30.30000000,170.686 2.50000000,30.30000000,176.890 2.60000000,30.30000000,177.252 2.70000000,30.30000000,171.929 2.80000000,30.30000000,161.536 2.90000000,30.30000000,147.035 3.00000000,30.30000000,129.603 3.10000000,30.30000000,110.496 3.20000000,30.30000000,90.932 3.30000000,30.30000000,71.999 3.40000000,30.30000000,54.584 3.50000000,30.30000000,39.329 3.60000000,30.30000000,26.612 3.70000000,30.30000000,16.554 3.80000000,30.30000000,9.051 3.90000000,30.30000000,3.827 4.00000000,30.30000000,0.495 4.10000000,30.30000000,1.377 4.20000000,30.30000000,2.208 4.30000000,30.30000000,2.368 4.40000000,30.30000000,2.148 4.50000000,30.30000000,1.758 4.60000000,30.30000000,1.335 4.70000000,30.30000000,0.954 4.80000000,30.30000000,0.647 4.90000000,30.30000000,0.418 5.00000000,30.30000000,0.258 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.30000000,0.379 0.10000000,30.30000000,0.577 0.20000000,30.30000000,0.853 0.30000000,30.30000000,1.225 0.40000000,30.30000000,1.707 0.50000000,30.30000000,2.304 0.60000000,30.30000000,3.006 0.70000000,30.30000000,3.774 0.80000000,30.30000000,4.523 0.90000000,30.30000000,5.103 1.00000000,30.30000000,5.280 1.10000000,30.30000000,4.715 1.20000000,30.30000000,2.966 1.30000000,30.30000000,0.499 1.40000000,30.30000000,6.248 1.50000000,30.30000000,14.809 1.60000000,30.30000000,26.556 1.70000000,30.30000000,41.595 1.80000000,30.30000000,59.659 1.90000000,30.30000000,80.054 2.00000000,30.30000000,101.672 2.10000000,30.30000000,123.084 2.20000000,30.30000000,142.706 2.30000000,30.30000000,159.001 2.40000000,30.30000000,170.686 2.50000000,30.30000000,176.890 2.60000000,30.30000000,177.252 2.70000000,30.30000000,171.929 2.80000000,30.30000000,161.536 2.90000000,30.30000000,147.035 3.00000000,30.30000000,129.603 3.10000000,30.30000000,110.496 3.20000000,30.30000000,90.932 3.30000000,30.30000000,71.999 3.40000000,30.30000000,54.584 3.50000000,30.30000000,39.329 3.60000000,30.30000000,26.612 3.70000000,30.30000000,16.554 3.80000000,30.30000000,9.051 3.90000000,30.30000000,3.827 4.00000000,30.30000000,0.495 4.10000000,30.30000000,1.377 4.20000000,30.30000000,2.208 4.30000000,30.30000000,2.368 4.40000000,30.30000000,2.148 4.50000000,30.30000000,1.758 4.60000000,30.30000000,1.335 4.70000000,30.30000000,0.954 4.80000000,30.30000000,0.647 4.90000000,30.30000000,0.418 5.00000000,30.30000000,0.258 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style28</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.40000000,0.628 0.10000000,30.40000000,0.953 0.20000000,30.40000000,1.406 0.30000000,30.40000000,2.017 0.40000000,30.40000000,2.811 0.50000000,30.40000000,3.804 0.60000000,30.40000000,4.988 0.70000000,30.40000000,6.312 0.80000000,30.40000000,7.660 0.90000000,30.40000000,8.812 1.00000000,30.40000000,9.408 1.10000000,30.40000000,8.921 1.20000000,30.40000000,6.641 1.30000000,30.40000000,1.702 1.40000000,30.40000000,6.843 1.50000000,30.40000000,19.890 1.60000000,30.40000000,38.099 1.70000000,30.40000000,61.700 1.80000000,30.40000000,90.311 1.90000000,30.40000000,122.845 2.00000000,30.40000000,157.521 2.10000000,30.40000000,192.026 2.20000000,30.40000000,223.782 2.30000000,30.40000000,250.282 2.40000000,30.40000000,269.434 2.50000000,30.40000000,279.818 2.60000000,30.40000000,280.838 2.70000000,30.40000000,272.735 2.80000000,30.40000000,256.477 2.90000000,30.40000000,233.584 3.00000000,30.40000000,205.916 3.10000000,30.40000000,175.461 3.20000000,30.40000000,144.164 3.30000000,30.40000000,113.777 3.40000000,30.40000000,85.748 3.50000000,30.40000000,61.146 3.60000000,30.40000000,40.626 3.70000000,30.40000000,24.423 3.80000000,30.40000000,12.397 3.90000000,30.40000000,4.115 4.00000000,30.40000000,1.053 4.10000000,30.40000000,3.819 4.20000000,30.40000000,4.887 4.30000000,30.40000000,4.872 4.40000000,30.40000000,4.268 4.50000000,30.40000000,3.425 4.60000000,30.40000000,2.568 4.70000000,30.40000000,1.819 4.80000000,30.40000000,1.226 4.90000000,30.40000000,0.789 5.00000000,30.40000000,0.486 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.40000000,0.628 0.10000000,30.40000000,0.953 0.20000000,30.40000000,1.406 0.30000000,30.40000000,2.017 0.40000000,30.40000000,2.811 0.50000000,30.40000000,3.804 0.60000000,30.40000000,4.988 0.70000000,30.40000000,6.312 0.80000000,30.40000000,7.660 0.90000000,30.40000000,8.812 1.00000000,30.40000000,9.408 1.10000000,30.40000000,8.921 1.20000000,30.40000000,6.641 1.30000000,30.40000000,1.702 1.40000000,30.40000000,6.843 1.50000000,30.40000000,19.890 1.60000000,30.40000000,38.099 1.70000000,30.40000000,61.700 1.80000000,30.40000000,90.311 1.90000000,30.40000000,122.845 2.00000000,30.40000000,157.521 2.10000000,30.40000000,192.026 2.20000000,30.40000000,223.782 2.30000000,30.40000000,250.282 2.40000000,30.40000000,269.434 2.50000000,30.40000000,279.818 2.60000000,30.40000000,280.838 2.70000000,30.40000000,272.735 2.80000000,30.40000000,256.477 2.90000000,30.40000000,233.584 3.00000000,30.40000000,205.916 3.10000000,30.40000000,175.461 3.20000000,30.40000000,144.164 3.30000000,30.40000000,113.777 3.40000000,30.40000000,85.748 3.50000000,30.40000000,61.146 3.60000000,30.40000000,40.626 3.70000000,30.40000000,24.423 3.80000000,30.40000000,12.397 3.90000000,30.40000000,4.115 4.00000000,30.40000000,1.053 4.10000000,30.40000000,3.819 4.20000000,30.40000000,4.887 4.30000000,30.40000000,4.872 4.40000000,30.40000000,4.268 4.50000000,30.40000000,3.425 4.60000000,30.40000000,2.568 4.70000000,30.40000000,1.819 4.80000000,30.40000000,1.226 4.90000000,30.40000000,0.789 5.00000000,30.40000000,0.486 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style11</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.50000000,0.999 0.10000000,30.50000000,1.511 0.20000000,30.50000000,2.223 0.30000000,30.50000000,3.183 0.40000000,30.50000000,4.435 0.50000000,30.50000000,6.014 0.60000000,30.50000000,7.922 0.70000000,30.50000000,10.107 0.80000000,30.50000000,12.420 0.90000000,30.50000000,14.556 1.00000000,30.50000000,15.997 1.10000000,30.50000000,15.950 1.20000000,30.50000000,13.322 1.30000000,30.50000000,6.742 1.40000000,30.50000000,5.316 1.50000000,30.50000000,24.331 1.60000000,30.50000000,51.439 1.70000000,30.50000000,87.102 1.80000000,30.50000000,130.815 1.90000000,30.50000000,180.936 2.00000000,30.50000000,234.707 2.10000000,30.50000000,288.495 2.20000000,30.50000000,338.233 2.30000000,30.50000000,379.964 2.40000000,30.50000000,410.379 2.50000000,30.50000000,427.235 2.60000000,30.50000000,429.582 2.70000000,30.50000000,417.766 2.80000000,30.50000000,393.261 2.90000000,30.50000000,358.383 3.00000000,30.50000000,315.962 3.10000000,30.50000000,269.043 3.20000000,30.50000000,220.619 3.30000000,30.50000000,173.417 3.40000000,30.50000000,129.734 3.50000000,30.50000000,91.307 3.60000000,30.50000000,59.234 3.70000000,30.50000000,33.957 3.80000000,30.50000000,15.310 3.90000000,30.50000000,2.636 4.00000000,30.50000000,5.055 4.10000000,30.50000000,8.912 4.20000000,30.50000000,10.075 4.30000000,30.50000000,9.552 4.40000000,30.50000000,8.147 4.50000000,30.50000000,6.435 4.60000000,30.50000000,4.776 4.70000000,30.50000000,3.359 4.80000000,30.50000000,2.252 4.90000000,30.50000000,1.444 5.00000000,30.50000000,0.887 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.50000000,0.999 0.10000000,30.50000000,1.511 0.20000000,30.50000000,2.223 0.30000000,30.50000000,3.183 0.40000000,30.50000000,4.435 0.50000000,30.50000000,6.014 0.60000000,30.50000000,7.922 0.70000000,30.50000000,10.107 0.80000000,30.50000000,12.420 0.90000000,30.50000000,14.556 1.00000000,30.50000000,15.997 1.10000000,30.50000000,15.950 1.20000000,30.50000000,13.322 1.30000000,30.50000000,6.742 1.40000000,30.50000000,5.316 1.50000000,30.50000000,24.331 1.60000000,30.50000000,51.439 1.70000000,30.50000000,87.102 1.80000000,30.50000000,130.815 1.90000000,30.50000000,180.936 2.00000000,30.50000000,234.707 2.10000000,30.50000000,288.495 2.20000000,30.50000000,338.233 2.30000000,30.50000000,379.964 2.40000000,30.50000000,410.379 2.50000000,30.50000000,427.235 2.60000000,30.50000000,429.582 2.70000000,30.50000000,417.766 2.80000000,30.50000000,393.261 2.90000000,30.50000000,358.383 3.00000000,30.50000000,315.962 3.10000000,30.50000000,269.043 3.20000000,30.50000000,220.619 3.30000000,30.50000000,173.417 3.40000000,30.50000000,129.734 3.50000000,30.50000000,91.307 3.60000000,30.50000000,59.234 3.70000000,30.50000000,33.957 3.80000000,30.50000000,15.310 3.90000000,30.50000000,2.636 4.00000000,30.50000000,5.055 4.10000000,30.50000000,8.912 4.20000000,30.50000000,10.075 4.30000000,30.50000000,9.552 4.40000000,30.50000000,8.147 4.50000000,30.50000000,6.435 4.60000000,30.50000000,4.776 4.70000000,30.50000000,3.359 4.80000000,30.50000000,2.252 4.90000000,30.50000000,1.444 5.00000000,30.50000000,0.887 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style2</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.60000000,1.524 0.10000000,30.60000000,2.294 0.20000000,30.60000000,3.360 0.30000000,30.60000000,4.797 0.40000000,30.60000000,6.678 0.50000000,30.60000000,9.068 0.60000000,30.60000000,12.001 0.70000000,30.60000000,15.442 0.80000000,30.60000000,19.223 0.90000000,30.60000000,22.961 1.00000000,30.60000000,25.947 1.10000000,30.60000000,27.044 1.20000000,30.60000000,24.630 1.30000000,30.60000000,16.613 1.40000000,30.60000000,0.605 1.50000000,30.60000000,25.771 1.60000000,30.60000000,64.407 1.70000000,30.60000000,116.189 1.80000000,30.60000000,180.517 1.90000000,30.60000000,255.011 2.00000000,30.60000000,335.538 2.10000000,30.60000000,416.586 2.20000000,30.60000000,491.939 2.30000000,30.60000000,555.540 2.40000000,30.60000000,602.322 2.50000000,30.60000000,628.852 2.60000000,30.60000000,633.658 2.70000000,30.60000000,617.222 2.80000000,30.60000000,581.698 2.90000000,30.60000000,530.480 3.00000000,30.60000000,467.723 3.10000000,30.60000000,397.908 3.20000000,30.60000000,325.483 3.30000000,30.60000000,254.560 3.40000000,30.60000000,188.669 3.50000000,30.60000000,130.551 3.60000000,30.60000000,82.007 3.70000000,30.60000000,43.837 3.80000000,30.60000000,15.884 3.90000000,30.60000000,2.811 4.00000000,30.60000000,13.762 4.10000000,30.60000000,18.762 4.20000000,30.60000000,19.615 4.30000000,30.60000000,17.927 4.40000000,30.60000000,14.977 4.50000000,30.60000000,11.677 4.60000000,30.60000000,8.593 4.70000000,30.60000000,6.008 4.80000000,30.60000000,4.010 4.90000000,30.60000000,2.562 5.00000000,30.60000000,1.571 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.60000000,1.524 0.10000000,30.60000000,2.294 0.20000000,30.60000000,3.360 0.30000000,30.60000000,4.797 0.40000000,30.60000000,6.678 0.50000000,30.60000000,9.068 0.60000000,30.60000000,12.001 0.70000000,30.60000000,15.442 0.80000000,30.60000000,19.223 0.90000000,30.60000000,22.961 1.00000000,30.60000000,25.947 1.10000000,30.60000000,27.044 1.20000000,30.60000000,24.630 1.30000000,30.60000000,16.613 1.40000000,30.60000000,0.605 1.50000000,30.60000000,25.771 1.60000000,30.60000000,64.407 1.70000000,30.60000000,116.189 1.80000000,30.60000000,180.517 1.90000000,30.60000000,255.011 2.00000000,30.60000000,335.538 2.10000000,30.60000000,416.586 2.20000000,30.60000000,491.939 2.30000000,30.60000000,555.540 2.40000000,30.60000000,602.322 2.50000000,30.60000000,628.852 2.60000000,30.60000000,633.658 2.70000000,30.60000000,617.222 2.80000000,30.60000000,581.698 2.90000000,30.60000000,530.480 3.00000000,30.60000000,467.723 3.10000000,30.60000000,397.908 3.20000000,30.60000000,325.483 3.30000000,30.60000000,254.560 3.40000000,30.60000000,188.669 3.50000000,30.60000000,130.551 3.60000000,30.60000000,82.007 3.70000000,30.60000000,43.837 3.80000000,30.60000000,15.884 3.90000000,30.60000000,2.811 4.00000000,30.60000000,13.762 4.10000000,30.60000000,18.762 4.20000000,30.60000000,19.615 4.30000000,30.60000000,17.927 4.40000000,30.60000000,14.977 4.50000000,30.60000000,11.677 4.60000000,30.60000000,8.593 4.70000000,30.60000000,6.008 4.80000000,30.60000000,4.010 4.90000000,30.60000000,2.562 5.00000000,30.60000000,1.571 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style12</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.70000000,2.219 0.10000000,30.70000000,3.318 0.20000000,30.70000000,4.832 0.30000000,30.70000000,6.867 0.40000000,30.70000000,9.540 0.50000000,30.70000000,12.968 0.60000000,30.70000000,17.246 0.70000000,30.70000000,22.398 0.80000000,30.70000000,28.286 0.90000000,30.70000000,34.477 1.00000000,30.70000000,40.074 1.10000000,30.70000000,43.530 1.20000000,30.70000000,42.533 1.30000000,30.70000000,34.002 1.40000000,30.70000000,14.308 1.50000000,30.70000000,20.250 1.60000000,30.70000000,72.749 1.70000000,30.70000000,144.803 1.80000000,30.70000000,235.812 1.90000000,30.70000000,342.486 2.00000000,30.70000000,458.851 2.10000000,30.70000000,576.804 2.20000000,30.70000000,687.155 2.30000000,30.70000000,780.919 2.40000000,30.70000000,850.584 2.50000000,30.70000000,891.059 2.60000000,30.70000000,900.137 2.70000000,30.70000000,878.448 2.80000000,30.70000000,829.021 2.90000000,30.70000000,756.634 3.00000000,30.70000000,667.142 3.10000000,30.70000000,566.894 3.20000000,30.70000000,462.257 3.30000000,30.70000000,359.222 3.40000000,30.70000000,263.057 3.50000000,30.70000000,177.968 3.60000000,30.70000000,106.837 3.70000000,30.70000000,51.062 3.80000000,30.70000000,10.571 3.90000000,30.70000000,15.972 4.00000000,30.70000000,30.814 4.10000000,30.70000000,36.681 4.20000000,30.70000000,36.352 4.30000000,30.70000000,32.314 4.40000000,30.70000000,26.557 4.50000000,30.70000000,20.488 4.60000000,30.70000000,14.968 4.70000000,30.70000000,10.413 4.80000000,30.70000000,6.924 4.90000000,30.70000000,4.413 5.00000000,30.70000000,2.700 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.70000000,2.219 0.10000000,30.70000000,3.318 0.20000000,30.70000000,4.832 0.30000000,30.70000000,6.867 0.40000000,30.70000000,9.540 0.50000000,30.70000000,12.968 0.60000000,30.70000000,17.246 0.70000000,30.70000000,22.398 0.80000000,30.70000000,28.286 0.90000000,30.70000000,34.477 1.00000000,30.70000000,40.074 1.10000000,30.70000000,43.530 1.20000000,30.70000000,42.533 1.30000000,30.70000000,34.002 1.40000000,30.70000000,14.308 1.50000000,30.70000000,20.250 1.60000000,30.70000000,72.749 1.70000000,30.70000000,144.803 1.80000000,30.70000000,235.812 1.90000000,30.70000000,342.486 2.00000000,30.70000000,458.851 2.10000000,30.70000000,576.804 2.20000000,30.70000000,687.155 2.30000000,30.70000000,780.919 2.40000000,30.70000000,850.584 2.50000000,30.70000000,891.059 2.60000000,30.70000000,900.137 2.70000000,30.70000000,878.448 2.80000000,30.70000000,829.021 2.90000000,30.70000000,756.634 3.00000000,30.70000000,667.142 3.10000000,30.70000000,566.894 3.20000000,30.70000000,462.257 3.30000000,30.70000000,359.222 3.40000000,30.70000000,263.057 3.50000000,30.70000000,177.968 3.60000000,30.70000000,106.837 3.70000000,30.70000000,51.062 3.80000000,30.70000000,10.571 3.90000000,30.70000000,15.972 4.00000000,30.70000000,30.814 4.10000000,30.70000000,36.681 4.20000000,30.70000000,36.352 4.30000000,30.70000000,32.314 4.40000000,30.70000000,26.557 4.50000000,30.70000000,20.488 4.60000000,30.70000000,14.968 4.70000000,30.70000000,10.413 4.80000000,30.70000000,6.924 4.90000000,30.70000000,4.413 5.00000000,30.70000000,2.700 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style29</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.80000000,3.070 0.10000000,30.80000000,4.546 0.20000000,30.80000000,6.563 0.30000000,30.80000000,9.263 0.40000000,30.80000000,12.820 0.50000000,30.80000000,17.431 0.60000000,30.80000000,23.306 0.70000000,30.80000000,30.603 0.80000000,30.80000000,39.305 0.90000000,30.80000000,49.028 1.00000000,30.80000000,58.741 1.10000000,30.80000000,66.469 1.20000000,30.80000000,69.057 1.30000000,30.80000000,62.123 1.40000000,30.80000000,40.333 1.50000000,30.80000000,1.931 1.60000000,30.80000000,69.518 1.70000000,30.80000000,165.253 1.80000000,30.80000000,288.760 1.90000000,30.80000000,435.704 2.00000000,30.80000000,597.764 2.10000000,30.80000000,763.430 2.20000000,30.80000000,919.537 2.30000000,30.80000000,1053.183 2.40000000,30.80000000,1153.580 2.50000000,30.80000000,1213.418 2.60000000,30.80000000,1229.494 2.70000000,30.80000000,1202.580 2.80000000,30.80000000,1136.752 2.90000000,30.80000000,1038.458 3.00000000,30.80000000,915.606 3.10000000,30.80000000,776.821 3.20000000,30.80000000,630.876 3.30000000,30.80000000,486.209 3.40000000,30.80000000,350.442 3.50000000,30.80000000,229.865 3.60000000,30.80000000,128.968 3.70000000,30.80000000,50.116 3.80000000,30.80000000,6.521 3.90000000,30.80000000,42.728 4.00000000,30.80000000,61.739 4.10000000,30.80000000,67.589 4.20000000,30.80000000,64.446 4.30000000,30.80000000,56.072 4.40000000,30.80000000,45.475 4.50000000,30.80000000,34.778 4.60000000,30.80000000,25.256 4.70000000,30.80000000,17.495 4.80000000,30.80000000,11.597 4.90000000,30.80000000,7.373 5.00000000,30.80000000,4.504 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.80000000,3.070 0.10000000,30.80000000,4.546 0.20000000,30.80000000,6.563 0.30000000,30.80000000,9.263 0.40000000,30.80000000,12.820 0.50000000,30.80000000,17.431 0.60000000,30.80000000,23.306 0.70000000,30.80000000,30.603 0.80000000,30.80000000,39.305 0.90000000,30.80000000,49.028 1.00000000,30.80000000,58.741 1.10000000,30.80000000,66.469 1.20000000,30.80000000,69.057 1.30000000,30.80000000,62.123 1.40000000,30.80000000,40.333 1.50000000,30.80000000,1.931 1.60000000,30.80000000,69.518 1.70000000,30.80000000,165.253 1.80000000,30.80000000,288.760 1.90000000,30.80000000,435.704 2.00000000,30.80000000,597.764 2.10000000,30.80000000,763.430 2.20000000,30.80000000,919.537 2.30000000,30.80000000,1053.183 2.40000000,30.80000000,1153.580 2.50000000,30.80000000,1213.418 2.60000000,30.80000000,1229.494 2.70000000,30.80000000,1202.580 2.80000000,30.80000000,1136.752 2.90000000,30.80000000,1038.458 3.00000000,30.80000000,915.606 3.10000000,30.80000000,776.821 3.20000000,30.80000000,630.876 3.30000000,30.80000000,486.209 3.40000000,30.80000000,350.442 3.50000000,30.80000000,229.865 3.60000000,30.80000000,128.968 3.70000000,30.80000000,50.116 3.80000000,30.80000000,6.521 3.90000000,30.80000000,42.728 4.00000000,30.80000000,61.739 4.10000000,30.80000000,67.589 4.20000000,30.80000000,64.446 4.30000000,30.80000000,56.072 4.40000000,30.80000000,45.475 4.50000000,30.80000000,34.778 4.60000000,30.80000000,25.256 4.70000000,30.80000000,17.495 4.80000000,30.80000000,11.597 4.90000000,30.80000000,7.373 5.00000000,30.80000000,4.504 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style45</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.90000000,4.001 0.10000000,30.90000000,5.839 0.20000000,30.90000000,8.317 0.30000000,30.90000000,11.610 0.40000000,30.90000000,15.958 0.50000000,30.90000000,21.679 0.60000000,30.90000000,29.173 0.70000000,30.90000000,38.857 0.80000000,30.90000000,51.008 0.90000000,30.90000000,65.477 1.00000000,30.90000000,81.261 1.10000000,30.90000000,96.027 1.20000000,30.90000000,105.680 1.30000000,30.90000000,104.213 1.40000000,30.90000000,84.021 1.50000000,30.90000000,36.823 1.60000000,30.90000000,44.821 1.70000000,30.90000000,165.653 1.80000000,30.90000000,325.934 1.90000000,30.90000000,520.273 2.00000000,30.90000000,737.513 2.10000000,30.90000000,961.849 2.20000000,30.90000000,1175.027 2.30000000,30.90000000,1359.101 2.40000000,30.90000000,1499.070 2.50000000,30.90000000,1584.776 2.60000000,30.90000000,1611.714 2.70000000,30.90000000,1580.756 2.80000000,30.90000000,1497.139 2.90000000,30.90000000,1369.170 3.00000000,30.90000000,1207.044 3.10000000,30.90000000,1021.976 3.20000000,30.90000000,825.578 3.30000000,30.90000000,629.325 3.40000000,30.90000000,443.921 3.50000000,30.90000000,278.531 3.60000000,30.90000000,139.980 3.70000000,30.90000000,32.137 3.80000000,30.90000000,44.323 3.90000000,30.90000000,91.667 4.00000000,30.90000000,114.417 4.10000000,30.90000000,118.384 4.20000000,30.90000000,109.670 4.30000000,30.90000000,93.819 4.40000000,30.90000000,75.275 4.50000000,30.90000000,57.153 4.60000000,30.90000000,41.295 4.70000000,30.90000000,28.502 4.80000000,30.90000000,18.842 4.90000000,30.90000000,11.955 5.00000000,30.90000000,7.291 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,30.90000000,4.001 0.10000000,30.90000000,5.839 0.20000000,30.90000000,8.317 0.30000000,30.90000000,11.610 0.40000000,30.90000000,15.958 0.50000000,30.90000000,21.679 0.60000000,30.90000000,29.173 0.70000000,30.90000000,38.857 0.80000000,30.90000000,51.008 0.90000000,30.90000000,65.477 1.00000000,30.90000000,81.261 1.10000000,30.90000000,96.027 1.20000000,30.90000000,105.680 1.30000000,30.90000000,104.213 1.40000000,30.90000000,84.021 1.50000000,30.90000000,36.823 1.60000000,30.90000000,44.821 1.70000000,30.90000000,165.653 1.80000000,30.90000000,325.934 1.90000000,30.90000000,520.273 2.00000000,30.90000000,737.513 2.10000000,30.90000000,961.849 2.20000000,30.90000000,1175.027 2.30000000,30.90000000,1359.101 2.40000000,30.90000000,1499.070 2.50000000,30.90000000,1584.776 2.60000000,30.90000000,1611.714 2.70000000,30.90000000,1580.756 2.80000000,30.90000000,1497.139 2.90000000,30.90000000,1369.170 3.00000000,30.90000000,1207.044 3.10000000,30.90000000,1021.976 3.20000000,30.90000000,825.578 3.30000000,30.90000000,629.325 3.40000000,30.90000000,443.921 3.50000000,30.90000000,278.531 3.60000000,30.90000000,139.980 3.70000000,30.90000000,32.137 3.80000000,30.90000000,44.323 3.90000000,30.90000000,91.667 4.00000000,30.90000000,114.417 4.10000000,30.90000000,118.384 4.20000000,30.90000000,109.670 4.30000000,30.90000000,93.819 4.40000000,30.90000000,75.275 4.50000000,30.90000000,57.153 4.60000000,30.90000000,41.295 4.70000000,30.90000000,28.502 4.80000000,30.90000000,18.842 4.90000000,30.90000000,11.955 5.00000000,30.90000000,7.291 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style30</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.00000000,4.840 0.10000000,31.00000000,6.903 0.20000000,31.00000000,9.613 0.30000000,31.00000000,13.161 0.40000000,31.00000000,17.854 0.50000000,31.00000000,24.176 0.60000000,31.00000000,32.827 0.70000000,31.00000000,44.675 0.80000000,31.00000000,60.566 0.90000000,31.00000000,80.913 1.00000000,31.00000000,105.070 1.10000000,31.00000000,130.561 1.20000000,31.00000000,152.366 1.30000000,31.00000000,162.562 1.40000000,31.00000000,150.641 1.50000000,31.00000000,104.734 1.60000000,31.00000000,13.737 1.70000000,31.00000000,130.008 1.80000000,31.00000000,328.085 1.90000000,31.00000000,574.237 2.00000000,31.00000000,854.088 2.10000000,31.00000000,1146.669 2.20000000,31.00000000,1427.478 2.30000000,31.00000000,1672.336 2.40000000,31.00000000,1861.045 2.50000000,31.00000000,1979.946 2.60000000,31.00000000,2022.900 2.70000000,31.00000000,1990.780 2.80000000,31.00000000,1889.978 2.90000000,31.00000000,1730.663 3.00000000,31.00000000,1525.326 3.10000000,31.00000000,1287.856 3.20000000,31.00000000,1032.990 3.30000000,31.00000000,775.790 3.40000000,31.00000000,530.862 3.50000000,31.00000000,311.216 3.60000000,31.00000000,126.974 3.70000000,31.00000000,15.733 3.80000000,31.00000000,115.307 3.90000000,31.00000000,174.475 4.00000000,31.00000000,199.373 4.10000000,31.00000000,198.168 4.20000000,31.00000000,179.570 4.30000000,31.00000000,151.559 4.40000000,31.00000000,120.536 4.50000000,31.00000000,90.969 4.60000000,31.00000000,65.449 4.70000000,31.00000000,45.033 4.80000000,31.00000000,29.703 4.90000000,31.00000000,18.813 5.00000000,31.00000000,11.459 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.00000000,4.840 0.10000000,31.00000000,6.903 0.20000000,31.00000000,9.613 0.30000000,31.00000000,13.161 0.40000000,31.00000000,17.854 0.50000000,31.00000000,24.176 0.60000000,31.00000000,32.827 0.70000000,31.00000000,44.675 0.80000000,31.00000000,60.566 0.90000000,31.00000000,80.913 1.00000000,31.00000000,105.070 1.10000000,31.00000000,130.561 1.20000000,31.00000000,152.366 1.30000000,31.00000000,162.562 1.40000000,31.00000000,150.641 1.50000000,31.00000000,104.734 1.60000000,31.00000000,13.737 1.70000000,31.00000000,130.008 1.80000000,31.00000000,328.085 1.90000000,31.00000000,574.237 2.00000000,31.00000000,854.088 2.10000000,31.00000000,1146.669 2.20000000,31.00000000,1427.478 2.30000000,31.00000000,1672.336 2.40000000,31.00000000,1861.045 2.50000000,31.00000000,1979.946 2.60000000,31.00000000,2022.900 2.70000000,31.00000000,1990.780 2.80000000,31.00000000,1889.978 2.90000000,31.00000000,1730.663 3.00000000,31.00000000,1525.326 3.10000000,31.00000000,1287.856 3.20000000,31.00000000,1032.990 3.30000000,31.00000000,775.790 3.40000000,31.00000000,530.862 3.50000000,31.00000000,311.216 3.60000000,31.00000000,126.974 3.70000000,31.00000000,15.733 3.80000000,31.00000000,115.307 3.90000000,31.00000000,174.475 4.00000000,31.00000000,199.373 4.10000000,31.00000000,198.168 4.20000000,31.00000000,179.570 4.30000000,31.00000000,151.559 4.40000000,31.00000000,120.536 4.50000000,31.00000000,90.969 4.60000000,31.00000000,65.449 4.70000000,31.00000000,45.033 4.80000000,31.00000000,29.703 4.90000000,31.00000000,18.813 5.00000000,31.00000000,11.459 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style13</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.10000000,5.286 0.10000000,31.10000000,7.231 0.20000000,31.10000000,9.639 0.30000000,31.10000000,12.666 0.40000000,31.10000000,16.675 0.50000000,31.10000000,22.361 0.60000000,31.10000000,30.868 0.70000000,31.10000000,43.791 0.80000000,31.10000000,62.953 0.90000000,31.10000000,89.850 1.00000000,31.10000000,124.736 1.10000000,31.10000000,165.446 1.20000000,31.10000000,206.227 1.30000000,31.10000000,237.045 1.40000000,31.10000000,243.829 1.50000000,31.10000000,210.036 1.60000000,31.10000000,119.544 1.70000000,31.10000000,39.563 1.80000000,31.10000000,271.238 1.90000000,31.10000000,568.842 2.00000000,31.10000000,914.617 2.10000000,31.10000000,1281.686 2.20000000,31.10000000,1638.202 2.30000000,31.10000000,1952.611 2.40000000,31.10000000,2198.570 2.50000000,31.10000000,2358.297 2.60000000,31.10000000,2423.701 2.70000000,31.10000000,2395.479 2.80000000,31.10000000,2280.993 2.90000000,31.10000000,2091.980 3.00000000,31.10000000,1842.871 3.10000000,31.10000000,1549.964 3.20000000,31.10000000,1231.132 3.30000000,31.10000000,905.459 3.40000000,31.10000000,592.316 3.50000000,31.10000000,309.725 3.60000000,31.10000000,72.325 3.70000000,31.10000000,110.469 3.80000000,31.10000000,235.524 3.90000000,31.10000000,305.910 4.00000000,31.10000000,329.728 4.10000000,31.10000000,318.176 4.20000000,31.10000000,283.400 4.30000000,31.10000000,236.613 4.40000000,31.10000000,186.827 4.50000000,31.10000000,140.295 4.60000000,31.10000000,100.578 4.70000000,31.10000000,69.024 4.80000000,31.10000000,45.438 4.90000000,31.10000000,28.737 5.00000000,31.10000000,17.483 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.10000000,5.286 0.10000000,31.10000000,7.231 0.20000000,31.10000000,9.639 0.30000000,31.10000000,12.666 0.40000000,31.10000000,16.675 0.50000000,31.10000000,22.361 0.60000000,31.10000000,30.868 0.70000000,31.10000000,43.791 0.80000000,31.10000000,62.953 0.90000000,31.10000000,89.850 1.00000000,31.10000000,124.736 1.10000000,31.10000000,165.446 1.20000000,31.10000000,206.227 1.30000000,31.10000000,237.045 1.40000000,31.10000000,243.829 1.50000000,31.10000000,210.036 1.60000000,31.10000000,119.544 1.70000000,31.10000000,39.563 1.80000000,31.10000000,271.238 1.90000000,31.10000000,568.842 2.00000000,31.10000000,914.617 2.10000000,31.10000000,1281.686 2.20000000,31.10000000,1638.202 2.30000000,31.10000000,1952.611 2.40000000,31.10000000,2198.570 2.50000000,31.10000000,2358.297 2.60000000,31.10000000,2423.701 2.70000000,31.10000000,2395.479 2.80000000,31.10000000,2280.993 2.90000000,31.10000000,2091.980 3.00000000,31.10000000,1842.871 3.10000000,31.10000000,1549.964 3.20000000,31.10000000,1231.132 3.30000000,31.10000000,905.459 3.40000000,31.10000000,592.316 3.50000000,31.10000000,309.725 3.60000000,31.10000000,72.325 3.70000000,31.10000000,110.469 3.80000000,31.10000000,235.524 3.90000000,31.10000000,305.910 4.00000000,31.10000000,329.728 4.10000000,31.10000000,318.176 4.20000000,31.10000000,283.400 4.30000000,31.10000000,236.613 4.40000000,31.10000000,186.827 4.50000000,31.10000000,140.295 4.60000000,31.10000000,100.578 4.70000000,31.10000000,69.024 4.80000000,31.10000000,45.438 4.90000000,31.10000000,28.737 5.00000000,31.10000000,17.483 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style3</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.20000000,4.875 0.10000000,31.20000000,6.058 0.20000000,31.20000000,7.176 0.30000000,31.20000000,8.270 0.40000000,31.20000000,9.707 0.50000000,31.20000000,12.433 0.60000000,31.20000000,18.216 0.70000000,31.20000000,29.743 0.80000000,31.20000000,50.385 0.90000000,31.20000000,83.474 1.00000000,31.20000000,130.994 1.10000000,31.20000000,191.836 1.20000000,31.20000000,259.980 1.30000000,31.20000000,323.253 1.40000000,31.20000000,363.397 1.50000000,31.20000000,357.975 1.60000000,31.20000000,284.226 1.70000000,31.20000000,124.243 1.80000000,31.20000000,129.749 1.90000000,31.20000000,471.613 2.00000000,31.20000000,880.372 2.10000000,31.20000000,1322.744 2.20000000,31.20000000,1758.640 2.30000000,31.20000000,2148.140 2.40000000,31.20000000,2457.958 2.50000000,31.20000000,2665.685 2.60000000,31.20000000,2760.994 2.70000000,31.20000000,2744.151 2.80000000,31.20000000,2623.058 2.90000000,31.20000000,2410.339 3.00000000,31.20000000,2121.523 3.10000000,31.20000000,1774.565 3.20000000,31.20000000,1390.103 3.30000000,31.20000000,991.476 3.40000000,31.20000000,603.685 3.50000000,31.20000000,251.102 3.60000000,31.20000000,45.612 3.70000000,31.20000000,272.448 3.80000000,31.20000000,423.894 3.90000000,31.20000000,503.136 4.00000000,31.20000000,520.589 4.10000000,31.20000000,491.253 4.20000000,31.20000000,431.681 4.30000000,31.20000000,357.276 4.40000000,31.20000000,280.436 4.50000000,31.20000000,209.718 4.60000000,31.20000000,149.899 4.70000000,31.20000000,102.646 4.80000000,31.20000000,67.460 4.90000000,31.20000000,42.612 5.00000000,31.20000000,25.899 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.20000000,4.875 0.10000000,31.20000000,6.058 0.20000000,31.20000000,7.176 0.30000000,31.20000000,8.270 0.40000000,31.20000000,9.707 0.50000000,31.20000000,12.433 0.60000000,31.20000000,18.216 0.70000000,31.20000000,29.743 0.80000000,31.20000000,50.385 0.90000000,31.20000000,83.474 1.00000000,31.20000000,130.994 1.10000000,31.20000000,191.836 1.20000000,31.20000000,259.980 1.30000000,31.20000000,323.253 1.40000000,31.20000000,363.397 1.50000000,31.20000000,357.975 1.60000000,31.20000000,284.226 1.70000000,31.20000000,124.243 1.80000000,31.20000000,129.749 1.90000000,31.20000000,471.613 2.00000000,31.20000000,880.372 2.10000000,31.20000000,1322.744 2.20000000,31.20000000,1758.640 2.30000000,31.20000000,2148.140 2.40000000,31.20000000,2457.958 2.50000000,31.20000000,2665.685 2.60000000,31.20000000,2760.994 2.70000000,31.20000000,2744.151 2.80000000,31.20000000,2623.058 2.90000000,31.20000000,2410.339 3.00000000,31.20000000,2121.523 3.10000000,31.20000000,1774.565 3.20000000,31.20000000,1390.103 3.30000000,31.20000000,991.476 3.40000000,31.20000000,603.685 3.50000000,31.20000000,251.102 3.60000000,31.20000000,45.612 3.70000000,31.20000000,272.448 3.80000000,31.20000000,423.894 3.90000000,31.20000000,503.136 4.00000000,31.20000000,520.589 4.10000000,31.20000000,491.253 4.20000000,31.20000000,431.681 4.30000000,31.20000000,357.276 4.40000000,31.20000000,280.436 4.50000000,31.20000000,209.718 4.60000000,31.20000000,149.899 4.70000000,31.20000000,102.646 4.80000000,31.20000000,67.460 4.90000000,31.20000000,42.612 5.00000000,31.20000000,25.899 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style14</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.30000000,2.973 0.10000000,31.30000000,2.346 0.20000000,31.30000000,0.589 0.30000000,31.30000000,2.515 0.40000000,31.30000000,6.686 0.50000000,31.30000000,10.708 0.60000000,31.30000000,11.987 0.70000000,31.30000000,6.289 0.80000000,31.30000000,12.054 0.90000000,31.30000000,49.213 1.00000000,31.30000000,110.065 1.10000000,31.30000000,195.663 1.20000000,31.30000000,300.514 1.30000000,31.30000000,410.536 1.40000000,31.30000000,502.761 1.50000000,31.30000000,547.578 1.60000000,31.30000000,513.718 1.70000000,31.30000000,375.193 1.80000000,31.30000000,118.500 1.90000000,31.30000000,252.063 2.00000000,31.30000000,712.879 2.10000000,31.30000000,1224.134 2.20000000,31.30000000,1736.913 2.30000000,31.30000000,2202.226 2.40000000,31.30000000,2579.292 2.50000000,31.30000000,2840.761 2.60000000,31.30000000,2973.871 2.70000000,31.30000000,2978.122 2.80000000,31.30000000,2861.253 2.90000000,31.30000000,2635.638 3.00000000,31.30000000,2316.497 3.10000000,31.30000000,1922.116 3.20000000,31.30000000,1475.067 3.30000000,31.30000000,1002.899 3.40000000,31.30000000,537.066 3.50000000,31.30000000,109.776 3.60000000,31.30000000,250.521 3.70000000,31.30000000,523.611 3.80000000,31.30000000,700.530 3.90000000,31.30000000,784.215 4.00000000,31.30000000,787.729 4.10000000,31.30000000,730.731 4.20000000,31.30000000,635.288 4.30000000,31.30000000,522.093 4.40000000,31.30000000,407.827 4.50000000,31.30000000,303.943 4.60000000,31.30000000,216.710 4.70000000,31.30000000,148.125 4.80000000,31.30000000,97.216 4.90000000,31.30000000,61.343 5.00000000,31.30000000,37.253 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.30000000,2.973 0.10000000,31.30000000,2.346 0.20000000,31.30000000,0.589 0.30000000,31.30000000,2.515 0.40000000,31.30000000,6.686 0.50000000,31.30000000,10.708 0.60000000,31.30000000,11.987 0.70000000,31.30000000,6.289 0.80000000,31.30000000,12.054 0.90000000,31.30000000,49.213 1.00000000,31.30000000,110.065 1.10000000,31.30000000,195.663 1.20000000,31.30000000,300.514 1.30000000,31.30000000,410.536 1.40000000,31.30000000,502.761 1.50000000,31.30000000,547.578 1.60000000,31.30000000,513.718 1.70000000,31.30000000,375.193 1.80000000,31.30000000,118.500 1.90000000,31.30000000,252.063 2.00000000,31.30000000,712.879 2.10000000,31.30000000,1224.134 2.20000000,31.30000000,1736.913 2.30000000,31.30000000,2202.226 2.40000000,31.30000000,2579.292 2.50000000,31.30000000,2840.761 2.60000000,31.30000000,2973.871 2.70000000,31.30000000,2978.122 2.80000000,31.30000000,2861.253 2.90000000,31.30000000,2635.638 3.00000000,31.30000000,2316.497 3.10000000,31.30000000,1922.116 3.20000000,31.30000000,1475.067 3.30000000,31.30000000,1002.899 3.40000000,31.30000000,537.066 3.50000000,31.30000000,109.776 3.60000000,31.30000000,250.521 3.70000000,31.30000000,523.611 3.80000000,31.30000000,700.530 3.90000000,31.30000000,784.215 4.00000000,31.30000000,787.729 4.10000000,31.30000000,730.731 4.20000000,31.30000000,635.288 4.30000000,31.30000000,522.093 4.40000000,31.30000000,407.827 4.50000000,31.30000000,303.943 4.60000000,31.30000000,216.710 4.70000000,31.30000000,148.125 4.80000000,31.30000000,97.216 4.90000000,31.30000000,61.343 5.00000000,31.30000000,37.253 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style31</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.40000000,1.202 0.10000000,31.40000000,5.177 0.20000000,31.40000000,12.119 0.30000000,31.40000000,22.712 0.40000000,31.40000000,36.916 0.50000000,31.40000000,53.268 0.60000000,31.40000000,68.134 0.70000000,31.40000000,75.206 0.80000000,31.40000000,65.612 0.90000000,31.40000000,29.076 1.00000000,31.40000000,43.661 1.10000000,31.40000000,157.307 1.20000000,31.40000000,308.070 1.30000000,31.40000000,480.499 1.40000000,31.40000000,646.582 1.50000000,31.40000000,768.273 1.60000000,31.40000000,803.780 1.70000000,31.40000000,716.630 1.80000000,31.40000000,485.285 1.90000000,31.40000000,110.407 2.00000000,31.40000000,382.789 2.10000000,31.40000000,948.272 2.20000000,31.40000000,1528.120 2.30000000,31.40000000,2063.953 2.40000000,31.40000000,2507.274 2.50000000,31.40000000,2825.731 2.60000000,31.40000000,3004.052 2.70000000,31.40000000,3040.573 2.80000000,31.40000000,2941.908 2.90000000,31.40000000,2718.591 3.00000000,31.40000000,2383.558 3.10000000,31.40000000,1953.521 3.20000000,31.40000000,1451.670 3.30000000,31.40000000,909.422 3.40000000,31.40000000,365.411 3.50000000,31.40000000,138.730 3.60000000,31.40000000,564.770 3.70000000,31.40000000,884.431 3.80000000,31.40000000,1084.001 3.90000000,31.40000000,1165.682 4.00000000,31.40000000,1145.498 4.10000000,31.40000000,1048.681 4.20000000,31.40000000,904.032 4.30000000,31.40000000,738.753 4.40000000,31.40000000,574.805 4.50000000,31.40000000,427.190 4.60000000,31.40000000,303.964 4.70000000,31.40000000,207.450 4.80000000,31.40000000,135.996 4.90000000,31.40000000,85.738 5.00000000,31.40000000,52.033 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.40000000,1.202 0.10000000,31.40000000,5.177 0.20000000,31.40000000,12.119 0.30000000,31.40000000,22.712 0.40000000,31.40000000,36.916 0.50000000,31.40000000,53.268 0.60000000,31.40000000,68.134 0.70000000,31.40000000,75.206 0.80000000,31.40000000,65.612 0.90000000,31.40000000,29.076 1.00000000,31.40000000,43.661 1.10000000,31.40000000,157.307 1.20000000,31.40000000,308.070 1.30000000,31.40000000,480.499 1.40000000,31.40000000,646.582 1.50000000,31.40000000,768.273 1.60000000,31.40000000,803.780 1.70000000,31.40000000,716.630 1.80000000,31.40000000,485.285 1.90000000,31.40000000,110.407 2.00000000,31.40000000,382.789 2.10000000,31.40000000,948.272 2.20000000,31.40000000,1528.120 2.30000000,31.40000000,2063.953 2.40000000,31.40000000,2507.274 2.50000000,31.40000000,2825.731 2.60000000,31.40000000,3004.052 2.70000000,31.40000000,3040.573 2.80000000,31.40000000,2941.908 2.90000000,31.40000000,2718.591 3.00000000,31.40000000,2383.558 3.10000000,31.40000000,1953.521 3.20000000,31.40000000,1451.670 3.30000000,31.40000000,909.422 3.40000000,31.40000000,365.411 3.50000000,31.40000000,138.730 3.60000000,31.40000000,564.770 3.70000000,31.40000000,884.431 3.80000000,31.40000000,1084.001 3.90000000,31.40000000,1165.682 4.00000000,31.40000000,1145.498 4.10000000,31.40000000,1048.681 4.20000000,31.40000000,904.032 4.30000000,31.40000000,738.753 4.40000000,31.40000000,574.805 4.50000000,31.40000000,427.190 4.60000000,31.40000000,303.964 4.70000000,31.40000000,207.450 4.80000000,31.40000000,135.996 4.90000000,31.40000000,85.738 5.00000000,31.40000000,52.033 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style46</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.50000000,8.517 0.10000000,31.50000000,17.908 0.20000000,31.50000000,33.127 0.30000000,31.50000000,55.610 0.40000000,31.50000000,85.786 0.50000000,31.50000000,122.017 0.60000000,31.50000000,159.444 0.70000000,31.50000000,189.107 0.80000000,31.50000000,197.909 0.90000000,31.50000000,170.003 1.00000000,31.50000000,89.961 1.10000000,31.50000000,52.424 1.20000000,31.50000000,256.609 1.30000000,31.50000000,506.653 1.40000000,31.50000000,769.427 1.50000000,31.50000000,997.322 1.60000000,31.50000000,1135.986 1.70000000,31.50000000,1135.892 1.80000000,31.50000000,964.864 1.90000000,31.50000000,617.758 2.00000000,31.50000000,119.914 2.10000000,31.50000000,477.180 2.20000000,31.50000000,1106.873 2.30000000,31.50000000,1701.487 2.40000000,31.50000000,2204.964 2.50000000,31.50000000,2580.173 2.60000000,31.50000000,2809.404 2.70000000,31.50000000,2889.427 2.80000000,31.50000000,2824.558 2.90000000,31.50000000,2621.546 3.00000000,31.50000000,2288.608 3.10000000,31.50000000,1838.499 3.20000000,31.50000000,1293.303 3.30000000,31.50000000,687.684 3.40000000,31.50000000,68.075 3.50000000,31.50000000,512.850 3.60000000,31.50000000,1004.960 3.70000000,31.50000000,1369.884 3.80000000,31.50000000,1587.722 3.90000000,31.50000000,1659.361 4.00000000,31.50000000,1604.073 4.10000000,31.50000000,1453.611 4.20000000,31.50000000,1244.795 4.30000000,31.50000000,1012.630 4.40000000,31.50000000,785.416 4.50000000,31.50000000,582.393 4.60000000,31.50000000,413.711 4.70000000,31.50000000,282.003 4.80000000,31.50000000,184.698 4.90000000,31.50000000,116.358 5.00000000,31.50000000,70.577 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.50000000,8.517 0.10000000,31.50000000,17.908 0.20000000,31.50000000,33.127 0.30000000,31.50000000,55.610 0.40000000,31.50000000,85.786 0.50000000,31.50000000,122.017 0.60000000,31.50000000,159.444 0.70000000,31.50000000,189.107 0.80000000,31.50000000,197.909 0.90000000,31.50000000,170.003 1.00000000,31.50000000,89.961 1.10000000,31.50000000,52.424 1.20000000,31.50000000,256.609 1.30000000,31.50000000,506.653 1.40000000,31.50000000,769.427 1.50000000,31.50000000,997.322 1.60000000,31.50000000,1135.986 1.70000000,31.50000000,1135.892 1.80000000,31.50000000,964.864 1.90000000,31.50000000,617.758 2.00000000,31.50000000,119.914 2.10000000,31.50000000,477.180 2.20000000,31.50000000,1106.873 2.30000000,31.50000000,1701.487 2.40000000,31.50000000,2204.964 2.50000000,31.50000000,2580.173 2.60000000,31.50000000,2809.404 2.70000000,31.50000000,2889.427 2.80000000,31.50000000,2824.558 2.90000000,31.50000000,2621.546 3.00000000,31.50000000,2288.608 3.10000000,31.50000000,1838.499 3.20000000,31.50000000,1293.303 3.30000000,31.50000000,687.684 3.40000000,31.50000000,68.075 3.50000000,31.50000000,512.850 3.60000000,31.50000000,1004.960 3.70000000,31.50000000,1369.884 3.80000000,31.50000000,1587.722 3.90000000,31.50000000,1659.361 4.00000000,31.50000000,1604.073 4.10000000,31.50000000,1453.611 4.20000000,31.50000000,1244.795 4.30000000,31.50000000,1012.630 4.40000000,31.50000000,785.416 4.50000000,31.50000000,582.393 4.60000000,31.50000000,413.711 4.70000000,31.50000000,282.003 4.80000000,31.50000000,184.698 4.90000000,31.50000000,116.358 5.00000000,31.50000000,70.577 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style32</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.60000000,19.805 0.10000000,31.60000000,37.177 0.20000000,31.60000000,64.500 0.30000000,31.60000000,104.317 0.40000000,31.60000000,157.828 0.50000000,31.60000000,223.373 0.60000000,31.60000000,294.724 0.70000000,31.60000000,359.712 0.80000000,31.60000000,399.949 0.90000000,31.60000000,392.438 1.00000000,31.60000000,313.621 1.10000000,31.60000000,145.697 1.20000000,31.60000000,115.893 1.30000000,31.60000000,455.925 1.40000000,31.60000000,836.383 1.50000000,31.60000000,1199.218 1.60000000,31.60000000,1475.640 1.70000000,31.60000000,1600.546 1.80000000,31.60000000,1528.437 1.90000000,31.60000000,1245.981 2.00000000,31.60000000,776.863 2.10000000,31.60000000,176.893 2.20000000,31.60000000,479.233 2.30000000,31.60000000,1115.042 2.40000000,31.60000000,1667.418 2.50000000,31.60000000,2094.948 2.60000000,31.60000000,2377.727 2.70000000,31.60000000,2510.587 2.80000000,31.60000000,2494.311 2.90000000,31.60000000,2329.745 3.00000000,31.60000000,2017.718 3.10000000,31.60000000,1564.395 3.20000000,31.60000000,988.792 3.30000000,31.60000000,328.017 3.40000000,31.60000000,363.208 3.50000000,31.60000000,1019.612 3.60000000,31.60000000,1577.054 3.70000000,31.60000000,1985.021 3.80000000,31.60000000,2215.954 3.90000000,31.60000000,2268.811 4.00000000,31.60000000,2166.385 4.10000000,31.60000000,1947.886 4.20000000,31.60000000,1659.436 4.30000000,31.60000000,1345.144 4.40000000,31.60000000,1040.710 4.50000000,31.60000000,770.304 4.60000000,31.60000000,546.473 4.70000000,31.60000000,372.131 4.80000000,31.60000000,243.544 4.90000000,31.60000000,153.343 5.00000000,31.60000000,92.969 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.60000000,19.805 0.10000000,31.60000000,37.177 0.20000000,31.60000000,64.500 0.30000000,31.60000000,104.317 0.40000000,31.60000000,157.828 0.50000000,31.60000000,223.373 0.60000000,31.60000000,294.724 0.70000000,31.60000000,359.712 0.80000000,31.60000000,399.949 0.90000000,31.60000000,392.438 1.00000000,31.60000000,313.621 1.10000000,31.60000000,145.697 1.20000000,31.60000000,115.893 1.30000000,31.60000000,455.925 1.40000000,31.60000000,836.383 1.50000000,31.60000000,1199.218 1.60000000,31.60000000,1475.640 1.70000000,31.60000000,1600.546 1.80000000,31.60000000,1528.437 1.90000000,31.60000000,1245.981 2.00000000,31.60000000,776.863 2.10000000,31.60000000,176.893 2.20000000,31.60000000,479.233 2.30000000,31.60000000,1115.042 2.40000000,31.60000000,1667.418 2.50000000,31.60000000,2094.948 2.60000000,31.60000000,2377.727 2.70000000,31.60000000,2510.587 2.80000000,31.60000000,2494.311 2.90000000,31.60000000,2329.745 3.00000000,31.60000000,2017.718 3.10000000,31.60000000,1564.395 3.20000000,31.60000000,988.792 3.30000000,31.60000000,328.017 3.40000000,31.60000000,363.208 3.50000000,31.60000000,1019.612 3.60000000,31.60000000,1577.054 3.70000000,31.60000000,1985.021 3.80000000,31.60000000,2215.954 3.90000000,31.60000000,2268.811 4.00000000,31.60000000,2166.385 4.10000000,31.60000000,1947.886 4.20000000,31.60000000,1659.436 4.30000000,31.60000000,1345.144 4.40000000,31.60000000,1040.710 4.50000000,31.60000000,770.304 4.60000000,31.60000000,546.473 4.70000000,31.60000000,372.131 4.80000000,31.60000000,243.544 4.90000000,31.60000000,153.343 5.00000000,31.60000000,92.969 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style15</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.70000000,35.714 0.10000000,31.70000000,64.001 0.20000000,31.70000000,107.791 0.30000000,31.70000000,171.150 0.40000000,31.70000000,256.426 0.50000000,31.70000000,362.157 0.60000000,31.70000000,480.687 0.70000000,31.70000000,596.167 0.80000000,31.70000000,683.916 0.90000000,31.70000000,712.254 1.00000000,31.70000000,647.515 1.10000000,31.70000000,462.137 1.20000000,31.70000000,144.450 1.30000000,31.70000000,292.490 1.40000000,31.70000000,806.339 1.50000000,31.70000000,1328.101 1.60000000,31.70000000,1773.044 1.70000000,31.70000000,2058.276 1.80000000,31.70000000,2122.491 1.90000000,31.70000000,1941.844 2.00000000,31.70000000,1536.485 2.10000000,31.70000000,965.175 2.20000000,31.70000000,309.673 2.30000000,31.70000000,345.571 2.40000000,31.70000000,931.176 2.50000000,31.70000000,1402.157 2.60000000,31.70000000,1736.808 2.70000000,31.70000000,1927.769 2.80000000,31.70000000,1971.150 2.90000000,31.70000000,1859.881 3.00000000,31.70000000,1584.834 3.10000000,31.70000000,1143.025 3.20000000,31.70000000,548.470 3.30000000,31.70000000,160.132 3.40000000,31.70000000,919.402 3.50000000,31.70000000,1650.092 3.60000000,31.70000000,2272.143 3.70000000,31.70000000,2721.026 3.80000000,31.70000000,2960.176 3.90000000,31.70000000,2986.068 4.00000000,31.70000000,2825.264 4.10000000,31.70000000,2525.310 4.20000000,31.70000000,2142.818 4.30000000,31.70000000,1732.210 4.40000000,31.70000000,1337.570 4.50000000,31.70000000,988.640 4.60000000,31.70000000,700.639 4.70000000,31.70000000,476.744 4.80000000,31.70000000,311.826 4.90000000,31.70000000,196.247 5.00000000,31.70000000,118.938 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.70000000,35.714 0.10000000,31.70000000,64.001 0.20000000,31.70000000,107.791 0.30000000,31.70000000,171.150 0.40000000,31.70000000,256.426 0.50000000,31.70000000,362.157 0.60000000,31.70000000,480.687 0.70000000,31.70000000,596.167 0.80000000,31.70000000,683.916 0.90000000,31.70000000,712.254 1.00000000,31.70000000,647.515 1.10000000,31.70000000,462.137 1.20000000,31.70000000,144.450 1.30000000,31.70000000,292.490 1.40000000,31.70000000,806.339 1.50000000,31.70000000,1328.101 1.60000000,31.70000000,1773.044 1.70000000,31.70000000,2058.276 1.80000000,31.70000000,2122.491 1.90000000,31.70000000,1941.844 2.00000000,31.70000000,1536.485 2.10000000,31.70000000,965.175 2.20000000,31.70000000,309.673 2.30000000,31.70000000,345.571 2.40000000,31.70000000,931.176 2.50000000,31.70000000,1402.157 2.60000000,31.70000000,1736.808 2.70000000,31.70000000,1927.769 2.80000000,31.70000000,1971.150 2.90000000,31.70000000,1859.881 3.00000000,31.70000000,1584.834 3.10000000,31.70000000,1143.025 3.20000000,31.70000000,548.470 3.30000000,31.70000000,160.132 3.40000000,31.70000000,919.402 3.50000000,31.70000000,1650.092 3.60000000,31.70000000,2272.143 3.70000000,31.70000000,2721.026 3.80000000,31.70000000,2960.176 3.90000000,31.70000000,2986.068 4.00000000,31.70000000,2825.264 4.10000000,31.70000000,2525.310 4.20000000,31.70000000,2142.818 4.30000000,31.70000000,1732.210 4.40000000,31.70000000,1337.570 4.50000000,31.70000000,988.640 4.60000000,31.70000000,700.639 4.70000000,31.70000000,476.744 4.80000000,31.70000000,311.826 4.90000000,31.70000000,196.247 5.00000000,31.70000000,118.938 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style4</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.80000000,56.523 0.10000000,31.80000000,98.789 0.20000000,31.80000000,163.590 0.30000000,31.80000000,256.962 0.40000000,31.80000000,382.814 0.50000000,31.80000000,540.180 0.60000000,31.80000000,720.032 0.70000000,31.80000000,902.513 0.80000000,31.80000000,1055.854 0.90000000,31.80000000,1138.375 1.00000000,31.80000000,1104.549 1.10000000,31.80000000,915.047 1.20000000,31.80000000,549.130 1.30000000,31.80000000,16.126 1.40000000,31.80000000,638.155 1.50000000,31.80000000,1333.735 1.60000000,31.80000000,1969.031 1.70000000,31.80000000,2441.769 1.80000000,31.80000000,2672.885 1.90000000,31.80000000,2626.063 2.00000000,31.80000000,2316.196 2.10000000,31.80000000,1803.597 2.20000000,31.80000000,1175.946 2.30000000,31.80000000,524.660 2.40000000,31.80000000,75.570 2.50000000,31.80000000,577.030 2.60000000,31.80000000,956.728 2.70000000,31.80000000,1205.040 2.80000000,31.80000000,1312.552 2.90000000,31.80000000,1262.676 3.00000000,31.80000000,1034.250 3.10000000,31.80000000,613.041 3.20000000,31.80000000,6.461 3.30000000,31.80000000,745.937 3.40000000,31.80000000,1571.872 3.50000000,31.80000000,2377.064 3.60000000,31.80000000,3064.046 3.70000000,31.80000000,3552.815 3.80000000,31.80000000,3796.755 3.90000000,31.80000000,3789.447 4.00000000,31.80000000,3561.464 4.10000000,31.80000000,3169.414 4.20000000,31.80000000,2681.389 4.30000000,31.80000000,2163.108 4.40000000,31.80000000,1667.847 4.50000000,31.80000000,1231.445 4.60000000,31.80000000,872.027 4.70000000,31.80000000,593.014 4.80000000,31.80000000,387.702 4.90000000,31.80000000,243.915 5.00000000,31.80000000,147.789 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.80000000,56.523 0.10000000,31.80000000,98.789 0.20000000,31.80000000,163.590 0.30000000,31.80000000,256.962 0.40000000,31.80000000,382.814 0.50000000,31.80000000,540.180 0.60000000,31.80000000,720.032 0.70000000,31.80000000,902.513 0.80000000,31.80000000,1055.854 0.90000000,31.80000000,1138.375 1.00000000,31.80000000,1104.549 1.10000000,31.80000000,915.047 1.20000000,31.80000000,549.130 1.30000000,31.80000000,16.126 1.40000000,31.80000000,638.155 1.50000000,31.80000000,1333.735 1.60000000,31.80000000,1969.031 1.70000000,31.80000000,2441.769 1.80000000,31.80000000,2672.885 1.90000000,31.80000000,2626.063 2.00000000,31.80000000,2316.196 2.10000000,31.80000000,1803.597 2.20000000,31.80000000,1175.946 2.30000000,31.80000000,524.660 2.40000000,31.80000000,75.570 2.50000000,31.80000000,577.030 2.60000000,31.80000000,956.728 2.70000000,31.80000000,1205.040 2.80000000,31.80000000,1312.552 2.90000000,31.80000000,1262.676 3.00000000,31.80000000,1034.250 3.10000000,31.80000000,613.041 3.20000000,31.80000000,6.461 3.30000000,31.80000000,745.937 3.40000000,31.80000000,1571.872 3.50000000,31.80000000,2377.064 3.60000000,31.80000000,3064.046 3.70000000,31.80000000,3552.815 3.80000000,31.80000000,3796.755 3.90000000,31.80000000,3789.447 4.00000000,31.80000000,3561.464 4.10000000,31.80000000,3169.414 4.20000000,31.80000000,2681.389 4.30000000,31.80000000,2163.108 4.40000000,31.80000000,1667.847 4.50000000,31.80000000,1231.445 4.60000000,31.80000000,872.027 4.70000000,31.80000000,593.014 4.80000000,31.80000000,387.702 4.90000000,31.80000000,243.915 5.00000000,31.80000000,147.789 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style16</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.90000000,81.983 0.10000000,31.90000000,141.081 0.20000000,31.90000000,231.117 0.30000000,31.90000000,360.514 0.40000000,31.90000000,535.167 0.50000000,31.90000000,754.952 0.60000000,31.90000000,1009.645 0.70000000,31.90000000,1275.282 0.80000000,31.90000000,1512.532 0.90000000,31.90000000,1668.828 1.00000000,31.90000000,1685.492 1.10000000,31.90000000,1509.861 1.20000000,31.90000000,1110.473 1.30000000,31.90000000,491.429 1.40000000,31.90000000,299.087 1.50000000,31.90000000,1170.639 1.60000000,31.90000000,2004.678 1.70000000,31.90000000,2678.866 1.80000000,31.90000000,3095.302 1.90000000,31.90000000,3203.918 2.00000000,31.90000000,3013.049 2.10000000,31.90000000,2583.327 2.20000000,31.90000000,2007.213 2.30000000,31.90000000,1382.014 2.40000000,31.90000000,786.722 2.50000000,31.90000000,270.913 2.60000000,31.90000000,141.726 2.70000000,31.90000000,439.458 2.80000000,31.90000000,606.961 2.90000000,31.90000000,617.225 3.00000000,31.90000000,435.824 3.10000000,31.90000000,36.012 3.20000000,31.90000000,582.393 3.30000000,31.90000000,1379.476 3.40000000,31.90000000,2273.961 3.50000000,31.90000000,3155.956 3.60000000,31.90000000,3909.762 3.70000000,31.90000000,4439.096 3.80000000,31.90000000,4686.729 3.90000000,31.90000000,4643.174 4.00000000,31.90000000,4343.213 4.10000000,31.90000000,3853.010 4.20000000,31.90000000,3252.768 4.30000000,31.90000000,2620.132 4.40000000,31.90000000,2018.080 4.50000000,31.90000000,1488.885 4.60000000,31.90000000,1053.725 4.70000000,31.90000000,716.268 4.80000000,31.90000000,468.130 4.90000000,31.90000000,294.441 5.00000000,31.90000000,178.368 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,31.90000000,81.983 0.10000000,31.90000000,141.081 0.20000000,31.90000000,231.117 0.30000000,31.90000000,360.514 0.40000000,31.90000000,535.167 0.50000000,31.90000000,754.952 0.60000000,31.90000000,1009.645 0.70000000,31.90000000,1275.282 0.80000000,31.90000000,1512.532 0.90000000,31.90000000,1668.828 1.00000000,31.90000000,1685.492 1.10000000,31.90000000,1509.861 1.20000000,31.90000000,1110.473 1.30000000,31.90000000,491.429 1.40000000,31.90000000,299.087 1.50000000,31.90000000,1170.639 1.60000000,31.90000000,2004.678 1.70000000,31.90000000,2678.866 1.80000000,31.90000000,3095.302 1.90000000,31.90000000,3203.918 2.00000000,31.90000000,3013.049 2.10000000,31.90000000,2583.327 2.20000000,31.90000000,2007.213 2.30000000,31.90000000,1382.014 2.40000000,31.90000000,786.722 2.50000000,31.90000000,270.913 2.60000000,31.90000000,141.726 2.70000000,31.90000000,439.458 2.80000000,31.90000000,606.961 2.90000000,31.90000000,617.225 3.00000000,31.90000000,435.824 3.10000000,31.90000000,36.012 3.20000000,31.90000000,582.393 3.30000000,31.90000000,1379.476 3.40000000,31.90000000,2273.961 3.50000000,31.90000000,3155.956 3.60000000,31.90000000,3909.762 3.70000000,31.90000000,4439.096 3.80000000,31.90000000,4686.729 3.90000000,31.90000000,4643.174 4.00000000,31.90000000,4343.213 4.10000000,31.90000000,3853.010 4.20000000,31.90000000,3252.768 4.30000000,31.90000000,2620.132 4.40000000,31.90000000,2018.080 4.50000000,31.90000000,1488.885 4.60000000,31.90000000,1053.725 4.70000000,31.90000000,716.268 4.80000000,31.90000000,468.130 4.90000000,31.90000000,294.441 5.00000000,31.90000000,178.368 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style33</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.00000000,111.203 0.10000000,32.00000000,189.373 0.20000000,32.00000000,307.945 0.30000000,32.00000000,478.071 0.40000000,32.00000000,707.999 0.50000000,32.00000000,998.812 0.60000000,32.00000000,1339.385 0.70000000,32.00000000,1701.812 0.80000000,32.00000000,2039.172 0.90000000,32.00000000,2287.718 1.00000000,32.00000000,2375.044 1.10000000,32.00000000,2234.287 1.20000000,32.00000000,1822.158 1.30000000,32.00000000,1136.294 1.40000000,32.00000000,226.010 1.50000000,32.00000000,808.907 1.60000000,32.00000000,1833.777 1.70000000,32.00000000,2706.665 1.80000000,32.00000000,3310.891 1.90000000,32.00000000,3582.292 2.00000000,32.00000000,3521.964 2.10000000,32.00000000,3189.944 2.20000000,32.00000000,2682.427 2.30000000,32.00000000,2101.556 2.40000000,32.00000000,1529.652 2.50000000,32.00000000,1017.338 2.60000000,32.00000000,588.388 2.70000000,32.00000000,256.262 2.80000000,32.00000000,42.018 2.90000000,32.00000000,16.921 3.00000000,32.00000000,127.254 3.10000000,32.00000000,513.982 3.20000000,32.00000000,1151.234 3.30000000,32.00000000,1998.891 3.40000000,32.00000000,2966.801 3.50000000,32.00000000,3929.547 3.60000000,32.00000000,4753.251 3.70000000,32.00000000,5325.407 3.80000000,32.00000000,5578.254 3.90000000,32.00000000,5499.331 4.00000000,32.00000000,5127.757 4.10000000,32.00000000,4539.385 4.20000000,32.00000000,3826.662 4.30000000,32.00000000,3079.276 4.40000000,32.00000000,2369.998 4.50000000,32.00000000,1747.593 4.60000000,32.00000000,1236.335 4.70000000,32.00000000,840.149 4.80000000,32.00000000,548.972 4.90000000,32.00000000,345.228 5.00000000,32.00000000,209.106 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.00000000,111.203 0.10000000,32.00000000,189.373 0.20000000,32.00000000,307.945 0.30000000,32.00000000,478.071 0.40000000,32.00000000,707.999 0.50000000,32.00000000,998.812 0.60000000,32.00000000,1339.385 0.70000000,32.00000000,1701.812 0.80000000,32.00000000,2039.172 0.90000000,32.00000000,2287.718 1.00000000,32.00000000,2375.044 1.10000000,32.00000000,2234.287 1.20000000,32.00000000,1822.158 1.30000000,32.00000000,1136.294 1.40000000,32.00000000,226.010 1.50000000,32.00000000,808.907 1.60000000,32.00000000,1833.777 1.70000000,32.00000000,2706.665 1.80000000,32.00000000,3310.891 1.90000000,32.00000000,3582.292 2.00000000,32.00000000,3521.964 2.10000000,32.00000000,3189.944 2.20000000,32.00000000,2682.427 2.30000000,32.00000000,2101.556 2.40000000,32.00000000,1529.652 2.50000000,32.00000000,1017.338 2.60000000,32.00000000,588.388 2.70000000,32.00000000,256.262 2.80000000,32.00000000,42.018 2.90000000,32.00000000,16.921 3.00000000,32.00000000,127.254 3.10000000,32.00000000,513.982 3.20000000,32.00000000,1151.234 3.30000000,32.00000000,1998.891 3.40000000,32.00000000,2966.801 3.50000000,32.00000000,3929.547 3.60000000,32.00000000,4753.251 3.70000000,32.00000000,5325.407 3.80000000,32.00000000,5578.254 3.90000000,32.00000000,5499.331 4.00000000,32.00000000,5127.757 4.10000000,32.00000000,4539.385 4.20000000,32.00000000,3826.662 4.30000000,32.00000000,3079.276 4.40000000,32.00000000,2369.998 4.50000000,32.00000000,1747.593 4.60000000,32.00000000,1236.335 4.70000000,32.00000000,840.149 4.80000000,32.00000000,548.972 4.90000000,32.00000000,345.228 5.00000000,32.00000000,209.106 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style47</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.10000000,142.631 0.10000000,32.10000000,241.091 0.20000000,32.10000000,389.972 0.30000000,32.10000000,603.352 0.40000000,32.10000000,892.095 0.50000000,32.10000000,1258.810 0.60000000,32.10000000,1691.863 0.70000000,32.10000000,2159.862 0.80000000,32.10000000,2608.767 0.90000000,32.10000000,2964.093 1.00000000,32.10000000,3140.010 1.10000000,32.10000000,3055.496 1.20000000,32.10000000,2655.099 1.30000000,32.10000000,1929.184 1.40000000,32.10000000,926.905 1.50000000,32.10000000,244.275 1.60000000,32.10000000,1435.397 1.70000000,32.10000000,2486.680 1.80000000,32.10000000,3264.008 1.90000000,32.10000000,3689.852 2.00000000,32.10000000,3758.110 2.10000000,32.10000000,3527.664 2.20000000,32.10000000,3097.513 2.30000000,32.10000000,2573.607 2.40000000,32.10000000,2040.682 2.50000000,32.10000000,1549.695 2.60000000,32.10000000,1123.928 2.70000000,32.10000000,777.977 2.80000000,32.10000000,537.882 2.90000000,32.10000000,450.521 3.00000000,32.10000000,576.007 3.10000000,32.10000000,965.488 3.20000000,32.10000000,1634.066 3.30000000,32.10000000,2541.290 3.40000000,32.10000000,3588.572 3.50000000,32.10000000,4635.860 3.60000000,32.10000000,5532.217 3.70000000,32.10000000,6149.980 3.80000000,32.10000000,6411.647 3.90000000,32.10000000,6302.170 4.00000000,32.10000000,5864.977 4.10000000,32.10000000,5185.272 4.20000000,32.10000000,4367.233 4.30000000,32.10000000,3512.060 4.40000000,32.10000000,2701.876 4.50000000,32.10000000,1991.659 4.60000000,32.10000000,1408.656 4.70000000,32.10000000,957.074 4.80000000,32.10000000,625.286 4.90000000,32.10000000,393.177 5.00000000,32.10000000,238.129 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.10000000,142.631 0.10000000,32.10000000,241.091 0.20000000,32.10000000,389.972 0.30000000,32.10000000,603.352 0.40000000,32.10000000,892.095 0.50000000,32.10000000,1258.810 0.60000000,32.10000000,1691.863 0.70000000,32.10000000,2159.862 0.80000000,32.10000000,2608.767 0.90000000,32.10000000,2964.093 1.00000000,32.10000000,3140.010 1.10000000,32.10000000,3055.496 1.20000000,32.10000000,2655.099 1.30000000,32.10000000,1929.184 1.40000000,32.10000000,926.905 1.50000000,32.10000000,244.275 1.60000000,32.10000000,1435.397 1.70000000,32.10000000,2486.680 1.80000000,32.10000000,3264.008 1.90000000,32.10000000,3689.852 2.00000000,32.10000000,3758.110 2.10000000,32.10000000,3527.664 2.20000000,32.10000000,3097.513 2.30000000,32.10000000,2573.607 2.40000000,32.10000000,2040.682 2.50000000,32.10000000,1549.695 2.60000000,32.10000000,1123.928 2.70000000,32.10000000,777.977 2.80000000,32.10000000,537.882 2.90000000,32.10000000,450.521 3.00000000,32.10000000,576.007 3.10000000,32.10000000,965.488 3.20000000,32.10000000,1634.066 3.30000000,32.10000000,2541.290 3.40000000,32.10000000,3588.572 3.50000000,32.10000000,4635.860 3.60000000,32.10000000,5532.217 3.70000000,32.10000000,6149.980 3.80000000,32.10000000,6411.647 3.90000000,32.10000000,6302.170 4.00000000,32.10000000,5864.977 4.10000000,32.10000000,5185.272 4.20000000,32.10000000,4367.233 4.30000000,32.10000000,3512.060 4.40000000,32.10000000,2701.876 4.50000000,32.10000000,1991.659 4.60000000,32.10000000,1408.656 4.70000000,32.10000000,957.074 4.80000000,32.10000000,625.286 4.90000000,32.10000000,393.177 5.00000000,32.10000000,238.129 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style34</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.20000000,174.157 0.10000000,32.20000000,292.762 0.20000000,32.20000000,471.685 0.30000000,32.20000000,727.945 0.40000000,32.20000000,1075.102 0.50000000,32.20000000,1517.527 0.60000000,32.20000000,2043.522 0.70000000,32.20000000,2618.916 0.80000000,32.20000000,3183.550 0.90000000,32.20000000,3653.411 1.00000000,32.20000000,3930.509 1.10000000,32.20000000,3920.729 1.20000000,32.20000000,3557.006 1.30000000,32.20000000,2822.171 1.40000000,32.20000000,1763.978 1.50000000,32.20000000,495.386 1.60000000,32.20000000,823.207 1.70000000,32.20000000,2017.186 1.80000000,32.20000000,2937.630 1.90000000,32.20000000,3495.428 2.00000000,32.20000000,3677.984 2.10000000,32.20000000,3542.756 2.20000000,32.20000000,3190.648 2.30000000,32.20000000,2730.335 2.40000000,32.20000000,2248.062 2.50000000,32.20000000,1794.492 2.60000000,32.20000000,1391.911 2.70000000,32.20000000,1055.331 2.80000000,32.20000000,814.558 2.90000000,32.20000000,724.126 3.00000000,32.20000000,854.304 3.10000000,32.20000000,1265.916 3.20000000,32.20000000,1979.840 3.30000000,32.20000000,2955.003 3.40000000,32.20000000,4085.264 3.50000000,32.20000000,5217.757 3.60000000,32.20000000,6186.749 3.70000000,32.20000000,6851.544 3.80000000,32.20000000,7126.396 3.90000000,32.20000000,6994.297 4.00000000,32.20000000,6502.726 4.10000000,32.20000000,5745.316 4.20000000,32.20000000,4836.717 4.30000000,32.20000000,3888.359 4.40000000,32.20000000,2990.676 4.50000000,32.20000000,2204.172 4.60000000,32.20000000,1558.765 4.70000000,32.20000000,1058.962 4.80000000,32.20000000,691.802 4.90000000,32.20000000,434.978 5.00000000,32.20000000,263.434 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.20000000,174.157 0.10000000,32.20000000,292.762 0.20000000,32.20000000,471.685 0.30000000,32.20000000,727.945 0.40000000,32.20000000,1075.102 0.50000000,32.20000000,1517.527 0.60000000,32.20000000,2043.522 0.70000000,32.20000000,2618.916 0.80000000,32.20000000,3183.550 0.90000000,32.20000000,3653.411 1.00000000,32.20000000,3930.509 1.10000000,32.20000000,3920.729 1.20000000,32.20000000,3557.006 1.30000000,32.20000000,2822.171 1.40000000,32.20000000,1763.978 1.50000000,32.20000000,495.386 1.60000000,32.20000000,823.207 1.70000000,32.20000000,2017.186 1.80000000,32.20000000,2937.630 1.90000000,32.20000000,3495.428 2.00000000,32.20000000,3677.984 2.10000000,32.20000000,3542.756 2.20000000,32.20000000,3190.648 2.30000000,32.20000000,2730.335 2.40000000,32.20000000,2248.062 2.50000000,32.20000000,1794.492 2.60000000,32.20000000,1391.911 2.70000000,32.20000000,1055.331 2.80000000,32.20000000,814.558 2.90000000,32.20000000,724.126 3.00000000,32.20000000,854.304 3.10000000,32.20000000,1265.916 3.20000000,32.20000000,1979.840 3.30000000,32.20000000,2955.003 3.40000000,32.20000000,4085.264 3.50000000,32.20000000,5217.757 3.60000000,32.20000000,6186.749 3.70000000,32.20000000,6851.544 3.80000000,32.20000000,7126.396 3.90000000,32.20000000,6994.297 4.00000000,32.20000000,6502.726 4.10000000,32.20000000,5745.316 4.20000000,32.20000000,4836.717 4.30000000,32.20000000,3888.359 4.40000000,32.20000000,2990.676 4.50000000,32.20000000,2204.172 4.60000000,32.20000000,1558.765 4.70000000,32.20000000,1058.962 4.80000000,32.20000000,691.802 4.90000000,32.20000000,434.978 5.00000000,32.20000000,263.434 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style17</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.30000000,203.326 0.10000000,32.30000000,340.365 0.20000000,32.30000000,546.735 0.30000000,32.30000000,842.168 0.40000000,32.30000000,1242.803 0.50000000,32.30000000,1754.860 0.60000000,32.30000000,2367.018 0.70000000,32.30000000,3043.247 0.80000000,32.30000000,3718.719 0.90000000,32.30000000,4301.826 1.00000000,32.30000000,4684.610 1.10000000,32.30000000,4761.928 1.20000000,32.30000000,4456.542 1.30000000,32.30000000,3744.081 1.40000000,32.30000000,2669.790 1.50000000,32.30000000,1349.555 1.60000000,32.30000000,48.469 1.70000000,32.30000000,1338.948 1.80000000,32.30000000,2361.895 1.90000000,32.30000000,3019.265 2.00000000,32.30000000,3293.176 2.10000000,32.30000000,3239.504 2.20000000,32.30000000,2960.024 2.30000000,32.30000000,2564.864 2.40000000,32.30000000,2140.769 2.50000000,32.30000000,1737.521 2.60000000,32.30000000,1375.982 2.70000000,32.30000000,1070.848 2.80000000,32.30000000,854.197 2.90000000,32.30000000,785.857 3.00000000,32.30000000,943.349 3.10000000,32.30000000,1394.428 3.20000000,32.30000000,2163.960 3.30000000,32.30000000,3210.013 3.40000000,32.30000000,4420.351 3.50000000,32.30000000,5632.081 3.60000000,32.30000000,6668.046 3.70000000,32.30000000,7377.617 3.80000000,32.30000000,7668.926 3.90000000,32.30000000,7523.762 4.00000000,32.30000000,6993.095 4.10000000,32.30000000,6177.421 4.20000000,32.30000000,5199.808 4.30000000,32.30000000,4179.867 4.40000000,32.30000000,3214.668 4.50000000,32.30000000,2369.139 4.60000000,32.30000000,1675.366 4.70000000,32.30000000,1138.143 4.80000000,32.30000000,743.514 4.90000000,32.30000000,467.485 5.00000000,32.30000000,283.118 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.30000000,203.326 0.10000000,32.30000000,340.365 0.20000000,32.30000000,546.735 0.30000000,32.30000000,842.168 0.40000000,32.30000000,1242.803 0.50000000,32.30000000,1754.860 0.60000000,32.30000000,2367.018 0.70000000,32.30000000,3043.247 0.80000000,32.30000000,3718.719 0.90000000,32.30000000,4301.826 1.00000000,32.30000000,4684.610 1.10000000,32.30000000,4761.928 1.20000000,32.30000000,4456.542 1.30000000,32.30000000,3744.081 1.40000000,32.30000000,2669.790 1.50000000,32.30000000,1349.555 1.60000000,32.30000000,48.469 1.70000000,32.30000000,1338.948 1.80000000,32.30000000,2361.895 1.90000000,32.30000000,3019.265 2.00000000,32.30000000,3293.176 2.10000000,32.30000000,3239.504 2.20000000,32.30000000,2960.024 2.30000000,32.30000000,2564.864 2.40000000,32.30000000,2140.769 2.50000000,32.30000000,1737.521 2.60000000,32.30000000,1375.982 2.70000000,32.30000000,1070.848 2.80000000,32.30000000,854.197 2.90000000,32.30000000,785.857 3.00000000,32.30000000,943.349 3.10000000,32.30000000,1394.428 3.20000000,32.30000000,2163.960 3.30000000,32.30000000,3210.013 3.40000000,32.30000000,4420.351 3.50000000,32.30000000,5632.081 3.60000000,32.30000000,6668.046 3.70000000,32.30000000,7377.617 3.80000000,32.30000000,7668.926 3.90000000,32.30000000,7523.762 4.00000000,32.30000000,6993.095 4.10000000,32.30000000,6177.421 4.20000000,32.30000000,5199.808 4.30000000,32.30000000,4179.867 4.40000000,32.30000000,3214.668 4.50000000,32.30000000,2369.139 4.60000000,32.30000000,1675.366 4.70000000,32.30000000,1138.143 4.80000000,32.30000000,743.514 4.90000000,32.30000000,467.485 5.00000000,32.30000000,283.118 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style5</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.40000000,227.650 0.10000000,32.40000000,379.843 0.20000000,32.40000000,608.725 0.30000000,32.40000000,936.288 0.40000000,32.40000000,1380.895 0.50000000,32.40000000,1950.532 0.60000000,32.40000000,2634.641 0.70000000,32.40000000,3396.367 0.80000000,32.40000000,4168.008 0.90000000,32.40000000,4852.865 1.00000000,32.40000000,5335.966 1.10000000,32.40000000,5504.054 1.20000000,32.40000000,5271.941 1.30000000,32.40000000,4608.933 1.40000000,32.40000000,3556.843 1.50000000,32.40000000,2231.675 1.60000000,32.40000000,805.069 1.70000000,32.40000000,531.840 1.80000000,32.40000000,1612.517 1.90000000,32.40000000,2333.199 2.00000000,32.40000000,2672.144 2.10000000,32.40000000,2683.390 2.20000000,32.40000000,2468.239 2.30000000,32.40000000,2136.656 2.40000000,32.40000000,1774.652 2.50000000,32.40000000,1430.487 2.60000000,32.40000000,1123.270 2.70000000,32.40000000,866.734 2.80000000,32.40000000,693.714 2.90000000,32.40000000,666.773 3.00000000,32.40000000,867.471 3.10000000,32.40000000,1367.470 3.20000000,32.40000000,2193.777 3.30000000,32.40000000,3303.650 3.40000000,32.40000000,4580.861 3.50000000,32.40000000,5856.172 3.60000000,32.40000000,6945.321 3.70000000,32.40000000,7691.628 3.80000000,32.40000000,7999.654 3.90000000,32.40000000,7850.776 4.00000000,32.40000000,7298.524 4.10000000,32.40000000,6448.072 4.20000000,32.40000000,5428.102 4.30000000,32.40000000,4363.644 4.40000000,32.40000000,3356.149 4.50000000,32.40000000,2473.482 4.60000000,32.40000000,1749.192 4.70000000,32.40000000,1188.316 4.80000000,32.40000000,776.300 4.90000000,32.40000000,488.104 5.00000000,32.40000000,295.607 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.40000000,227.650 0.10000000,32.40000000,379.843 0.20000000,32.40000000,608.725 0.30000000,32.40000000,936.288 0.40000000,32.40000000,1380.895 0.50000000,32.40000000,1950.532 0.60000000,32.40000000,2634.641 0.70000000,32.40000000,3396.367 0.80000000,32.40000000,4168.008 0.90000000,32.40000000,4852.865 1.00000000,32.40000000,5335.966 1.10000000,32.40000000,5504.054 1.20000000,32.40000000,5271.941 1.30000000,32.40000000,4608.933 1.40000000,32.40000000,3556.843 1.50000000,32.40000000,2231.675 1.60000000,32.40000000,805.069 1.70000000,32.40000000,531.840 1.80000000,32.40000000,1612.517 1.90000000,32.40000000,2333.199 2.00000000,32.40000000,2672.144 2.10000000,32.40000000,2683.390 2.20000000,32.40000000,2468.239 2.30000000,32.40000000,2136.656 2.40000000,32.40000000,1774.652 2.50000000,32.40000000,1430.487 2.60000000,32.40000000,1123.270 2.70000000,32.40000000,866.734 2.80000000,32.40000000,693.714 2.90000000,32.40000000,666.773 3.00000000,32.40000000,867.471 3.10000000,32.40000000,1367.470 3.20000000,32.40000000,2193.777 3.30000000,32.40000000,3303.650 3.40000000,32.40000000,4580.861 3.50000000,32.40000000,5856.172 3.60000000,32.40000000,6945.321 3.70000000,32.40000000,7691.628 3.80000000,32.40000000,7999.654 3.90000000,32.40000000,7850.776 4.00000000,32.40000000,7298.524 4.10000000,32.40000000,6448.072 4.20000000,32.40000000,5428.102 4.30000000,32.40000000,4363.644 4.40000000,32.40000000,3356.149 4.50000000,32.40000000,2473.482 4.60000000,32.40000000,1749.192 4.70000000,32.40000000,1188.316 4.80000000,32.40000000,776.300 4.90000000,32.40000000,488.104 5.00000000,32.40000000,295.607 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style18</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.50000000,244.954 0.10000000,32.50000000,407.667 0.20000000,32.50000000,652.112 0.30000000,32.50000000,1001.873 0.40000000,32.50000000,1476.980 0.50000000,32.50000000,2086.923 0.60000000,32.50000000,2822.184 0.70000000,32.50000000,3646.137 0.80000000,32.50000000,4490.179 0.90000000,32.50000000,5255.379 1.00000000,32.50000000,5823.210 1.10000000,32.50000000,6075.792 1.20000000,32.50000000,5922.780 1.30000000,32.50000000,5328.470 1.40000000,32.50000000,4330.523 1.50000000,32.50000000,3042.206 1.60000000,32.50000000,1634.090 1.70000000,32.50000000,297.808 1.80000000,32.50000000,798.439 1.90000000,32.50000000,1548.573 2.00000000,32.50000000,1928.365 2.10000000,32.50000000,1989.461 2.20000000,32.50000000,1830.910 2.30000000,32.50000000,1560.452 2.40000000,32.50000000,1261.822 2.50000000,32.50000000,981.012 2.60000000,32.50000000,735.113 2.70000000,32.50000000,536.443 2.80000000,32.50000000,417.296 2.90000000,32.50000000,440.593 3.00000000,32.50000000,688.874 3.10000000,32.50000000,1234.875 3.20000000,32.50000000,2106.199 3.30000000,32.50000000,3259.807 3.40000000,32.50000000,4578.204 3.50000000,32.50000000,5890.188 3.60000000,32.50000000,7009.375 3.70000000,32.50000000,7777.386 3.80000000,32.50000000,8097.975 3.90000000,32.50000000,7952.800 4.00000000,32.50000000,7396.663 4.10000000,32.50000000,6536.696 4.20000000,32.50000000,5503.806 4.30000000,32.50000000,4425.116 4.40000000,32.50000000,3403.764 4.50000000,32.50000000,2508.754 4.60000000,32.50000000,1774.229 4.70000000,32.50000000,1205.372 4.80000000,32.50000000,787.466 4.90000000,32.50000000,495.136 5.00000000,32.50000000,299.871 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.50000000,244.954 0.10000000,32.50000000,407.667 0.20000000,32.50000000,652.112 0.30000000,32.50000000,1001.873 0.40000000,32.50000000,1476.980 0.50000000,32.50000000,2086.923 0.60000000,32.50000000,2822.184 0.70000000,32.50000000,3646.137 0.80000000,32.50000000,4490.179 0.90000000,32.50000000,5255.379 1.00000000,32.50000000,5823.210 1.10000000,32.50000000,6075.792 1.20000000,32.50000000,5922.780 1.30000000,32.50000000,5328.470 1.40000000,32.50000000,4330.523 1.50000000,32.50000000,3042.206 1.60000000,32.50000000,1634.090 1.70000000,32.50000000,297.808 1.80000000,32.50000000,798.439 1.90000000,32.50000000,1548.573 2.00000000,32.50000000,1928.365 2.10000000,32.50000000,1989.461 2.20000000,32.50000000,1830.910 2.30000000,32.50000000,1560.452 2.40000000,32.50000000,1261.822 2.50000000,32.50000000,981.012 2.60000000,32.50000000,735.113 2.70000000,32.50000000,536.443 2.80000000,32.50000000,417.296 2.90000000,32.50000000,440.593 3.00000000,32.50000000,688.874 3.10000000,32.50000000,1234.875 3.20000000,32.50000000,2106.199 3.30000000,32.50000000,3259.807 3.40000000,32.50000000,4578.204 3.50000000,32.50000000,5890.188 3.60000000,32.50000000,7009.375 3.70000000,32.50000000,7777.386 3.80000000,32.50000000,8097.975 3.90000000,32.50000000,7952.800 4.00000000,32.50000000,7396.663 4.10000000,32.50000000,6536.696 4.20000000,32.50000000,5503.806 4.30000000,32.50000000,4425.116 4.40000000,32.50000000,3403.764 4.50000000,32.50000000,2508.754 4.60000000,32.50000000,1774.229 4.70000000,32.50000000,1205.372 4.80000000,32.50000000,787.466 4.90000000,32.50000000,495.136 5.00000000,32.50000000,299.871 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style35</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.60000000,253.695 0.10000000,32.60000000,421.352 0.20000000,32.60000000,673.010 0.30000000,32.60000000,1033.035 0.40000000,32.60000000,1522.395 0.50000000,32.60000000,2151.667 0.60000000,32.60000000,2912.522 0.70000000,32.60000000,3769.540 0.80000000,32.60000000,4655.193 0.90000000,32.60000000,5471.267 1.00000000,32.60000000,6099.313 1.10000000,32.60000000,6420.583 1.20000000,32.60000000,6342.640 1.30000000,32.60000000,5826.352 1.40000000,32.60000000,4904.726 1.50000000,32.60000000,3685.581 1.60000000,32.60000000,2333.945 1.70000000,32.60000000,1036.695 1.80000000,32.60000000,41.088 1.90000000,32.60000000,794.244 2.00000000,32.60000000,1197.139 2.10000000,32.60000000,1298.078 2.20000000,32.60000000,1191.625 2.30000000,32.60000000,980.822 2.40000000,32.60000000,745.276 2.50000000,32.60000000,527.821 2.60000000,32.60000000,343.333 2.70000000,32.60000000,202.511 2.80000000,32.60000000,136.197 2.90000000,32.60000000,205.787 3.00000000,32.60000000,492.282 3.10000000,32.60000000,1067.226 3.20000000,32.60000000,1957.827 3.30000000,32.60000000,3121.799 3.40000000,32.60000000,4443.585 3.50000000,32.60000000,5754.799 3.60000000,32.60000000,6872.172 3.70000000,32.60000000,7640.102 3.80000000,32.60000000,7964.254 3.90000000,32.60000000,7827.072 4.00000000,32.60000000,7283.064 4.10000000,32.60000000,6438.255 4.20000000,32.60000000,5422.035 4.30000000,32.60000000,4359.997 4.40000000,32.60000000,3354.017 4.50000000,32.60000000,2472.270 4.60000000,32.60000000,1748.522 4.70000000,32.60000000,1187.956 4.80000000,32.60000000,776.112 4.90000000,32.60000000,488.008 5.00000000,32.60000000,295.560 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.60000000,253.695 0.10000000,32.60000000,421.352 0.20000000,32.60000000,673.010 0.30000000,32.60000000,1033.035 0.40000000,32.60000000,1522.395 0.50000000,32.60000000,2151.667 0.60000000,32.60000000,2912.522 0.70000000,32.60000000,3769.540 0.80000000,32.60000000,4655.193 0.90000000,32.60000000,5471.267 1.00000000,32.60000000,6099.313 1.10000000,32.60000000,6420.583 1.20000000,32.60000000,6342.640 1.30000000,32.60000000,5826.352 1.40000000,32.60000000,4904.726 1.50000000,32.60000000,3685.581 1.60000000,32.60000000,2333.945 1.70000000,32.60000000,1036.695 1.80000000,32.60000000,41.088 1.90000000,32.60000000,794.244 2.00000000,32.60000000,1197.139 2.10000000,32.60000000,1298.078 2.20000000,32.60000000,1191.625 2.30000000,32.60000000,980.822 2.40000000,32.60000000,745.276 2.50000000,32.60000000,527.821 2.60000000,32.60000000,343.333 2.70000000,32.60000000,202.511 2.80000000,32.60000000,136.197 2.90000000,32.60000000,205.787 3.00000000,32.60000000,492.282 3.10000000,32.60000000,1067.226 3.20000000,32.60000000,1957.827 3.30000000,32.60000000,3121.799 3.40000000,32.60000000,4443.585 3.50000000,32.60000000,5754.799 3.60000000,32.60000000,6872.172 3.70000000,32.60000000,7640.102 3.80000000,32.60000000,7964.254 3.90000000,32.60000000,7827.072 4.00000000,32.60000000,7283.064 4.10000000,32.60000000,6438.255 4.20000000,32.60000000,5422.035 4.30000000,32.60000000,4359.997 4.40000000,32.60000000,3354.017 4.50000000,32.60000000,2472.270 4.60000000,32.60000000,1748.522 4.70000000,32.60000000,1187.956 4.80000000,32.60000000,776.112 4.90000000,32.60000000,488.008 5.00000000,32.60000000,295.560 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style48</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.70000000,253.188 0.10000000,32.70000000,419.821 0.20000000,32.70000000,669.769 0.30000000,32.70000000,1027.294 0.40000000,32.70000000,1513.492 0.50000000,32.70000000,2139.495 0.60000000,32.70000000,2898.182 0.70000000,32.70000000,3756.164 0.80000000,32.70000000,4648.791 0.90000000,32.70000000,5481.351 1.00000000,32.70000000,6138.962 1.10000000,32.70000000,6505.652 1.20000000,32.70000000,6489.946 1.30000000,32.70000000,6050.952 1.40000000,32.70000000,5216.734 1.50000000,32.70000000,4087.276 1.60000000,32.70000000,2818.015 1.70000000,32.70000000,1586.308 1.80000000,32.70000000,549.814 1.90000000,32.70000000,189.990 2.00000000,32.70000000,606.731 2.10000000,32.70000000,744.073 2.20000000,32.70000000,689.558 2.30000000,32.70000000,538.797 2.40000000,32.70000000,365.219 2.50000000,32.70000000,207.518 2.60000000,32.70000000,78.215 2.70000000,32.70000000,13.569 2.80000000,32.70000000,38.883 2.90000000,32.70000000,60.914 3.00000000,32.70000000,363.535 3.10000000,32.70000000,937.828 3.20000000,32.70000000,1810.281 3.30000000,32.70000000,2940.867 3.40000000,32.70000000,4219.393 3.50000000,32.70000000,5485.056 3.60000000,32.70000000,6562.778 3.70000000,32.70000000,7303.943 3.80000000,32.70000000,7618.577 3.90000000,32.70000000,7490.192 4.00000000,32.70000000,6971.275 4.10000000,32.70000000,6163.604 4.20000000,32.70000000,5191.288 4.30000000,32.70000000,4174.755 4.40000000,32.70000000,3211.683 4.50000000,32.70000000,2367.444 4.60000000,32.70000000,1674.430 4.70000000,32.70000000,1137.641 4.80000000,32.70000000,743.252 4.90000000,32.70000000,467.352 5.00000000,32.70000000,283.052 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.70000000,253.188 0.10000000,32.70000000,419.821 0.20000000,32.70000000,669.769 0.30000000,32.70000000,1027.294 0.40000000,32.70000000,1513.492 0.50000000,32.70000000,2139.495 0.60000000,32.70000000,2898.182 0.70000000,32.70000000,3756.164 0.80000000,32.70000000,4648.791 0.90000000,32.70000000,5481.351 1.00000000,32.70000000,6138.962 1.10000000,32.70000000,6505.652 1.20000000,32.70000000,6489.946 1.30000000,32.70000000,6050.952 1.40000000,32.70000000,5216.734 1.50000000,32.70000000,4087.276 1.60000000,32.70000000,2818.015 1.70000000,32.70000000,1586.308 1.80000000,32.70000000,549.814 1.90000000,32.70000000,189.990 2.00000000,32.70000000,606.731 2.10000000,32.70000000,744.073 2.20000000,32.70000000,689.558 2.30000000,32.70000000,538.797 2.40000000,32.70000000,365.219 2.50000000,32.70000000,207.518 2.60000000,32.70000000,78.215 2.70000000,32.70000000,13.569 2.80000000,32.70000000,38.883 2.90000000,32.70000000,60.914 3.00000000,32.70000000,363.535 3.10000000,32.70000000,937.828 3.20000000,32.70000000,1810.281 3.30000000,32.70000000,2940.867 3.40000000,32.70000000,4219.393 3.50000000,32.70000000,5485.056 3.60000000,32.70000000,6562.778 3.70000000,32.70000000,7303.943 3.80000000,32.70000000,7618.577 3.90000000,32.70000000,7490.192 4.00000000,32.70000000,6971.275 4.10000000,32.70000000,6163.604 4.20000000,32.70000000,5191.288 4.30000000,32.70000000,4174.755 4.40000000,32.70000000,3211.683 4.50000000,32.70000000,2367.444 4.60000000,32.70000000,1674.430 4.70000000,32.70000000,1137.641 4.80000000,32.70000000,743.252 4.90000000,32.70000000,467.352 5.00000000,32.70000000,283.052 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style36</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.80000000,243.697 0.10000000,32.80000000,403.551 0.20000000,32.80000000,643.189 0.30000000,32.80000000,985.908 0.40000000,32.80000000,1452.120 0.50000000,32.80000000,2052.940 0.60000000,32.80000000,2782.361 0.70000000,32.80000000,3609.644 0.80000000,32.80000000,4474.524 0.90000000,32.80000000,5288.180 1.00000000,32.80000000,5942.350 1.10000000,32.80000000,6327.074 1.20000000,32.80000000,6354.600 1.30000000,32.80000000,5983.864 1.40000000,32.80000000,5237.902 1.50000000,32.80000000,4206.962 1.60000000,32.80000000,3033.566 1.70000000,32.80000000,1881.609 1.80000000,32.80000000,897.831 1.90000000,32.80000000,177.893 2.00000000,32.80000000,251.358 2.10000000,32.80000000,427.456 2.20000000,32.80000000,428.363 2.30000000,32.80000000,339.552 2.40000000,32.80000000,226.249 2.50000000,32.80000000,122.035 2.60000000,32.80000000,36.987 2.70000000,32.80000000,21.101 2.80000000,32.80000000,25.177 2.90000000,32.80000000,80.067 3.00000000,32.80000000,368.107 3.10000000,32.80000000,904.368 3.20000000,32.80000000,1714.867 3.30000000,32.80000000,2763.595 3.40000000,32.80000000,3949.021 3.50000000,32.80000000,5122.265 3.60000000,32.80000000,6120.908 3.70000000,32.80000000,6806.938 3.80000000,32.80000000,7096.743 3.90000000,32.80000000,6974.978 4.00000000,32.80000000,6490.408 4.10000000,32.80000000,5737.637 4.20000000,32.80000000,4832.042 4.30000000,32.80000000,3885.582 4.40000000,32.80000000,2989.068 4.50000000,32.80000000,2203.265 4.60000000,32.80000000,1558.267 4.70000000,32.80000000,1058.695 4.80000000,32.80000000,691.663 4.90000000,32.80000000,434.908 5.00000000,32.80000000,263.400 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.80000000,243.697 0.10000000,32.80000000,403.551 0.20000000,32.80000000,643.189 0.30000000,32.80000000,985.908 0.40000000,32.80000000,1452.120 0.50000000,32.80000000,2052.940 0.60000000,32.80000000,2782.361 0.70000000,32.80000000,3609.644 0.80000000,32.80000000,4474.524 0.90000000,32.80000000,5288.180 1.00000000,32.80000000,5942.350 1.10000000,32.80000000,6327.074 1.20000000,32.80000000,6354.600 1.30000000,32.80000000,5983.864 1.40000000,32.80000000,5237.902 1.50000000,32.80000000,4206.962 1.60000000,32.80000000,3033.566 1.70000000,32.80000000,1881.609 1.80000000,32.80000000,897.831 1.90000000,32.80000000,177.893 2.00000000,32.80000000,251.358 2.10000000,32.80000000,427.456 2.20000000,32.80000000,428.363 2.30000000,32.80000000,339.552 2.40000000,32.80000000,226.249 2.50000000,32.80000000,122.035 2.60000000,32.80000000,36.987 2.70000000,32.80000000,21.101 2.80000000,32.80000000,25.177 2.90000000,32.80000000,80.067 3.00000000,32.80000000,368.107 3.10000000,32.80000000,904.368 3.20000000,32.80000000,1714.867 3.30000000,32.80000000,2763.595 3.40000000,32.80000000,3949.021 3.50000000,32.80000000,5122.265 3.60000000,32.80000000,6120.908 3.70000000,32.80000000,6806.938 3.80000000,32.80000000,7096.743 3.90000000,32.80000000,6974.978 4.00000000,32.80000000,6490.408 4.10000000,32.80000000,5737.637 4.20000000,32.80000000,4832.042 4.30000000,32.80000000,3885.582 4.40000000,32.80000000,2989.068 4.50000000,32.80000000,2203.265 4.60000000,32.80000000,1558.267 4.70000000,32.80000000,1058.695 4.80000000,32.80000000,691.663 4.90000000,32.80000000,434.908 5.00000000,32.80000000,263.400 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style19</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.90000000,226.364 0.10000000,32.90000000,374.451 0.20000000,32.90000000,596.332 0.30000000,32.90000000,913.588 0.40000000,32.90000000,1345.218 0.50000000,32.90000000,1901.778 0.60000000,32.90000000,2578.202 0.70000000,32.90000000,3346.808 0.80000000,32.90000000,4152.831 0.90000000,32.90000000,4915.184 1.00000000,32.90000000,5534.627 1.10000000,32.90000000,5909.806 1.20000000,32.90000000,5958.955 1.30000000,32.90000000,5642.231 1.40000000,32.90000000,4977.734 1.50000000,32.90000000,4044.687 1.60000000,32.90000000,2970.291 1.70000000,32.90000000,1902.099 1.80000000,32.90000000,973.402 1.90000000,32.90000000,272.596 2.00000000,32.90000000,172.975 2.10000000,32.90000000,393.326 2.20000000,32.90000000,454.601 2.30000000,32.90000000,429.823 2.40000000,32.90000000,374.278 2.50000000,32.90000000,315.614 2.60000000,32.90000000,261.448 2.70000000,32.90000000,218.623 2.80000000,32.90000000,212.576 2.90000000,32.90000000,295.227 3.00000000,32.90000000,535.516 3.10000000,32.90000000,995.331 3.20000000,32.90000000,1700.827 3.30000000,32.90000000,2621.711 3.40000000,32.90000000,3667.929 3.50000000,32.90000000,4706.033 3.60000000,32.90000000,5589.782 3.70000000,32.90000000,6194.537 3.80000000,32.90000000,6444.502 3.90000000,32.90000000,6325.384 4.00000000,32.90000000,5880.755 4.10000000,32.90000000,5195.614 4.20000000,32.90000000,4373.784 4.30000000,32.90000000,3516.074 4.40000000,32.90000000,2704.259 4.50000000,32.90000000,1993.030 4.60000000,32.90000000,1409.421 4.70000000,32.90000000,957.488 4.80000000,32.90000000,625.503 4.90000000,32.90000000,393.288 5.00000000,32.90000000,238.184 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,32.90000000,226.364 0.10000000,32.90000000,374.451 0.20000000,32.90000000,596.332 0.30000000,32.90000000,913.588 0.40000000,32.90000000,1345.218 0.50000000,32.90000000,1901.778 0.60000000,32.90000000,2578.202 0.70000000,32.90000000,3346.808 0.80000000,32.90000000,4152.831 0.90000000,32.90000000,4915.184 1.00000000,32.90000000,5534.627 1.10000000,32.90000000,5909.806 1.20000000,32.90000000,5958.955 1.30000000,32.90000000,5642.231 1.40000000,32.90000000,4977.734 1.50000000,32.90000000,4044.687 1.60000000,32.90000000,2970.291 1.70000000,32.90000000,1902.099 1.80000000,32.90000000,973.402 1.90000000,32.90000000,272.596 2.00000000,32.90000000,172.975 2.10000000,32.90000000,393.326 2.20000000,32.90000000,454.601 2.30000000,32.90000000,429.823 2.40000000,32.90000000,374.278 2.50000000,32.90000000,315.614 2.60000000,32.90000000,261.448 2.70000000,32.90000000,218.623 2.80000000,32.90000000,212.576 2.90000000,32.90000000,295.227 3.00000000,32.90000000,535.516 3.10000000,32.90000000,995.331 3.20000000,32.90000000,1700.827 3.30000000,32.90000000,2621.711 3.40000000,32.90000000,3667.929 3.50000000,32.90000000,4706.033 3.60000000,32.90000000,5589.782 3.70000000,32.90000000,6194.537 3.80000000,32.90000000,6444.502 3.90000000,32.90000000,6325.384 4.00000000,32.90000000,5880.755 4.10000000,32.90000000,5195.614 4.20000000,32.90000000,4373.784 4.30000000,32.90000000,3516.074 4.40000000,32.90000000,2704.259 4.50000000,32.90000000,1993.030 4.60000000,32.90000000,1409.421 4.70000000,32.90000000,957.488 4.80000000,32.90000000,625.503 4.90000000,32.90000000,393.288 5.00000000,32.90000000,238.184 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style6</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.00000000,203.010 0.10000000,33.00000000,335.534 0.20000000,33.00000000,533.998 0.30000000,33.00000000,817.690 0.40000000,33.00000000,1203.626 0.50000000,33.00000000,1701.347 0.60000000,33.00000000,2306.531 0.70000000,33.00000000,2994.747 0.80000000,33.00000000,3717.427 0.90000000,33.00000000,4402.437 1.00000000,33.00000000,4961.199 1.10000000,33.00000000,5302.782 1.20000000,33.00000000,5353.058 1.30000000,33.00000000,5074.508 1.40000000,33.00000000,4480.580 1.50000000,33.00000000,3638.830 1.60000000,33.00000000,2659.748 1.70000000,33.00000000,1672.830 1.80000000,33.00000000,796.392 1.90000000,33.00000000,110.738 2.00000000,33.00000000,356.176 2.10000000,33.00000000,625.829 2.20000000,33.00000000,750.998 2.30000000,33.00000000,790.662 2.40000000,33.00000000,788.998 2.50000000,33.00000000,767.198 2.60000000,33.00000000,730.490 2.70000000,33.00000000,685.165 2.80000000,33.00000000,655.456 2.90000000,33.00000000,690.128 3.00000000,33.00000000,853.691 3.10000000,33.00000000,1204.722 3.20000000,33.00000000,1770.182 3.30000000,33.00000000,2526.839 3.40000000,33.00000000,3398.117 3.50000000,33.00000000,4268.395 3.60000000,33.00000000,5009.938 3.70000000,33.00000000,5513.262 3.80000000,33.00000000,5711.257 3.90000000,33.00000000,5590.526 4.00000000,33.00000000,5188.357 4.10000000,33.00000000,4578.434 4.20000000,33.00000000,3851.073 4.30000000,33.00000000,3094.086 4.40000000,33.00000000,2378.720 4.50000000,33.00000000,1752.580 4.60000000,33.00000000,1239.104 4.70000000,33.00000000,841.642 4.80000000,33.00000000,549.754 4.90000000,33.00000000,345.626 5.00000000,33.00000000,209.303 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.00000000,203.010 0.10000000,33.00000000,335.534 0.20000000,33.00000000,533.998 0.30000000,33.00000000,817.690 0.40000000,33.00000000,1203.626 0.50000000,33.00000000,1701.347 0.60000000,33.00000000,2306.531 0.70000000,33.00000000,2994.747 0.80000000,33.00000000,3717.427 0.90000000,33.00000000,4402.437 1.00000000,33.00000000,4961.199 1.10000000,33.00000000,5302.782 1.20000000,33.00000000,5353.058 1.30000000,33.00000000,5074.508 1.40000000,33.00000000,4480.580 1.50000000,33.00000000,3638.830 1.60000000,33.00000000,2659.748 1.70000000,33.00000000,1672.830 1.80000000,33.00000000,796.392 1.90000000,33.00000000,110.738 2.00000000,33.00000000,356.176 2.10000000,33.00000000,625.829 2.20000000,33.00000000,750.998 2.30000000,33.00000000,790.662 2.40000000,33.00000000,788.998 2.50000000,33.00000000,767.198 2.60000000,33.00000000,730.490 2.70000000,33.00000000,685.165 2.80000000,33.00000000,655.456 2.90000000,33.00000000,690.128 3.00000000,33.00000000,853.691 3.10000000,33.00000000,1204.722 3.20000000,33.00000000,1770.182 3.30000000,33.00000000,2526.839 3.40000000,33.00000000,3398.117 3.50000000,33.00000000,4268.395 3.60000000,33.00000000,5009.938 3.70000000,33.00000000,5513.262 3.80000000,33.00000000,5711.257 3.90000000,33.00000000,5590.526 4.00000000,33.00000000,5188.357 4.10000000,33.00000000,4578.434 4.20000000,33.00000000,3851.073 4.30000000,33.00000000,3094.086 4.40000000,33.00000000,2378.720 4.50000000,33.00000000,1752.580 4.60000000,33.00000000,1239.104 4.70000000,33.00000000,841.642 4.80000000,33.00000000,549.754 4.90000000,33.00000000,345.626 5.00000000,33.00000000,209.303 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style20</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.10000000,175.842 0.10000000,33.10000000,290.434 0.20000000,33.10000000,461.962 0.30000000,33.10000000,707.054 0.40000000,33.10000000,1040.375 0.50000000,33.10000000,1470.132 0.60000000,33.10000000,1992.555 0.70000000,33.10000000,2586.485 0.80000000,33.10000000,3209.842 0.90000000,33.10000000,3800.043 1.00000000,33.10000000,4280.031 1.10000000,33.10000000,4570.311 1.20000000,33.10000000,4605.398 1.30000000,33.10000000,4350.896 1.40000000,33.10000000,3816.040 1.50000000,33.10000000,3056.724 1.60000000,33.10000000,2166.347 1.70000000,33.10000000,1255.744 1.80000000,33.10000000,427.680 1.90000000,33.10000000,245.979 2.00000000,33.10000000,736.629 2.10000000,33.10000000,1056.818 2.20000000,33.10000000,1245.333 2.30000000,33.10000000,1346.497 2.40000000,33.10000000,1392.956 2.50000000,33.10000000,1399.332 2.60000000,33.10000000,1368.635 2.70000000,33.10000000,1306.941 2.80000000,33.10000000,1237.638 2.90000000,33.10000000,1206.624 3.00000000,33.10000000,1274.213 3.10000000,33.10000000,1495.950 3.20000000,33.10000000,1900.065 3.30000000,33.10000000,2471.118 3.40000000,33.10000000,3147.007 3.50000000,33.10000000,3831.061 3.60000000,33.10000000,4415.109 3.70000000,33.10000000,4805.589 3.80000000,33.10000000,4944.412 3.90000000,33.10000000,4818.910 4.00000000,33.10000000,4459.507 4.10000000,33.10000000,3927.706 4.20000000,33.10000000,3299.346 4.30000000,33.10000000,2648.335 4.40000000,33.10000000,2034.664 4.50000000,33.10000000,1498.356 4.60000000,33.10000000,1058.979 4.70000000,33.10000000,719.099 4.80000000,33.10000000,469.612 4.90000000,33.10000000,295.194 5.00000000,33.10000000,178.740 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style2</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.10000000,175.842 0.10000000,33.10000000,290.434 0.20000000,33.10000000,461.962 0.30000000,33.10000000,707.054 0.40000000,33.10000000,1040.375 0.50000000,33.10000000,1470.132 0.60000000,33.10000000,1992.555 0.70000000,33.10000000,2586.485 0.80000000,33.10000000,3209.842 0.90000000,33.10000000,3800.043 1.00000000,33.10000000,4280.031 1.10000000,33.10000000,4570.311 1.20000000,33.10000000,4605.398 1.30000000,33.10000000,4350.896 1.40000000,33.10000000,3816.040 1.50000000,33.10000000,3056.724 1.60000000,33.10000000,2166.347 1.70000000,33.10000000,1255.744 1.80000000,33.10000000,427.680 1.90000000,33.10000000,245.979 2.00000000,33.10000000,736.629 2.10000000,33.10000000,1056.818 2.20000000,33.10000000,1245.333 2.30000000,33.10000000,1346.497 2.40000000,33.10000000,1392.956 2.50000000,33.10000000,1399.332 2.60000000,33.10000000,1368.635 2.70000000,33.10000000,1306.941 2.80000000,33.10000000,1237.638 2.90000000,33.10000000,1206.624 3.00000000,33.10000000,1274.213 3.10000000,33.10000000,1495.950 3.20000000,33.10000000,1900.065 3.30000000,33.10000000,2471.118 3.40000000,33.10000000,3147.007 3.50000000,33.10000000,3831.061 3.60000000,33.10000000,4415.109 3.70000000,33.10000000,4805.589 3.80000000,33.10000000,4944.412 3.90000000,33.10000000,4818.910 4.00000000,33.10000000,4459.507 4.10000000,33.10000000,3927.706 4.20000000,33.10000000,3299.346 4.30000000,33.10000000,2648.335 4.40000000,33.10000000,2034.664 4.50000000,33.10000000,1498.356 4.60000000,33.10000000,1058.979 4.70000000,33.10000000,719.099 4.80000000,33.10000000,469.612 4.90000000,33.10000000,295.194 5.00000000,33.10000000,178.740 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style37</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.20000000,147.135 0.10000000,33.20000000,242.891 0.20000000,33.20000000,386.151 0.30000000,33.20000000,590.746 0.40000000,33.20000000,868.830 0.50000000,33.20000000,1227.115 0.60000000,33.20000000,1662.229 0.70000000,33.20000000,2156.167 0.80000000,33.20000000,2673.283 0.90000000,33.20000000,3160.578 1.00000000,33.20000000,3552.659 1.10000000,33.20000000,3781.743 1.20000000,33.20000000,3791.383 1.30000000,33.20000000,3550.814 1.40000000,33.20000000,3065.625 1.50000000,33.20000000,2380.622 1.60000000,33.20000000,1572.629 1.70000000,33.20000000,734.208 1.80000000,33.20000000,47.224 1.90000000,33.20000000,708.228 2.00000000,33.20000000,1219.739 2.10000000,33.20000000,1585.705 2.20000000,33.20000000,1831.349 2.30000000,33.20000000,1986.771 2.40000000,33.20000000,2073.493 2.50000000,33.20000000,2099.906 2.60000000,33.20000000,2067.071 2.70000000,33.20000000,1981.060 2.80000000,33.20000000,1864.595 2.90000000,33.20000000,1760.873 3.00000000,33.20000000,1726.152 3.10000000,33.20000000,1813.063 3.20000000,33.20000000,2051.166 3.30000000,33.20000000,2432.813 3.40000000,33.20000000,2910.305 3.50000000,33.20000000,3405.800 3.60000000,33.20000000,3830.532 3.70000000,33.20000000,4106.705 3.80000000,33.20000000,4185.115 3.90000000,33.20000000,4053.731 4.00000000,33.20000000,3736.060 4.10000000,33.20000000,3281.410 4.20000000,33.20000000,2751.155 4.30000000,33.20000000,2205.316 4.40000000,33.20000000,1692.650 4.50000000,33.20000000,1245.603 4.60000000,33.20000000,879.878 4.70000000,33.20000000,597.243 4.80000000,33.20000000,389.915 4.90000000,33.20000000,245.040 5.00000000,33.20000000,148.345 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style3</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.20000000,147.135 0.10000000,33.20000000,242.891 0.20000000,33.20000000,386.151 0.30000000,33.20000000,590.746 0.40000000,33.20000000,868.830 0.50000000,33.20000000,1227.115 0.60000000,33.20000000,1662.229 0.70000000,33.20000000,2156.167 0.80000000,33.20000000,2673.283 0.90000000,33.20000000,3160.578 1.00000000,33.20000000,3552.659 1.10000000,33.20000000,3781.743 1.20000000,33.20000000,3791.383 1.30000000,33.20000000,3550.814 1.40000000,33.20000000,3065.625 1.50000000,33.20000000,2380.622 1.60000000,33.20000000,1572.629 1.70000000,33.20000000,734.208 1.80000000,33.20000000,47.224 1.90000000,33.20000000,708.228 2.00000000,33.20000000,1219.739 2.10000000,33.20000000,1585.705 2.20000000,33.20000000,1831.349 2.30000000,33.20000000,1986.771 2.40000000,33.20000000,2073.493 2.50000000,33.20000000,2099.906 2.60000000,33.20000000,2067.071 2.70000000,33.20000000,1981.060 2.80000000,33.20000000,1864.595 2.90000000,33.20000000,1760.873 3.00000000,33.20000000,1726.152 3.10000000,33.20000000,1813.063 3.20000000,33.20000000,2051.166 3.30000000,33.20000000,2432.813 3.40000000,33.20000000,2910.305 3.50000000,33.20000000,3405.800 3.60000000,33.20000000,3830.532 3.70000000,33.20000000,4106.705 3.80000000,33.20000000,4185.115 3.90000000,33.20000000,4053.731 4.00000000,33.20000000,3736.060 4.10000000,33.20000000,3281.410 4.20000000,33.20000000,2751.155 4.30000000,33.20000000,2205.316 4.40000000,33.20000000,1692.650 4.50000000,33.20000000,1245.603 4.60000000,33.20000000,879.878 4.70000000,33.20000000,597.243 4.80000000,33.20000000,389.915 4.90000000,33.20000000,245.040 5.00000000,33.20000000,148.345 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style49</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.30000000,118.945 0.10000000,33.30000000,196.275 0.20000000,33.30000000,311.903 0.30000000,33.30000000,476.926 0.40000000,33.30000000,701.024 0.50000000,33.30000000,989.398 0.60000000,33.30000000,1338.979 0.70000000,33.30000000,1734.702 0.80000000,33.30000000,2147.023 0.90000000,33.30000000,2532.102 1.00000000,33.30000000,2835.766 1.10000000,33.30000000,3001.596 1.20000000,33.30000000,2982.067 1.30000000,33.30000000,2750.290 1.40000000,33.30000000,2308.866 1.50000000,33.30000000,1692.544 1.60000000,33.30000000,962.798 1.70000000,33.30000000,195.085 1.80000000,33.30000000,537.711 1.90000000,33.30000000,1180.355 2.00000000,33.30000000,1703.766 2.10000000,33.30000000,2104.332 2.20000000,33.30000000,2395.088 2.30000000,33.30000000,2593.324 2.40000000,33.30000000,2710.597 2.50000000,33.30000000,2749.821 2.60000000,33.30000000,2710.457 2.70000000,33.30000000,2598.644 2.80000000,33.30000000,2436.388 2.90000000,33.30000000,2264.126 3.00000000,33.30000000,2133.998 3.10000000,33.30000000,2095.559 3.20000000,33.30000000,2179.311 3.30000000,33.30000000,2384.682 3.40000000,33.30000000,2677.346 3.50000000,33.30000000,2997.079 3.60000000,33.30000000,3273.338 3.70000000,33.30000000,3443.174 3.80000000,33.30000000,3465.774 3.90000000,33.30000000,3329.742 4.00000000,33.30000000,3052.106 4.10000000,33.30000000,2670.718 4.20000000,33.30000000,2233.348 4.30000000,33.30000000,1786.957 4.40000000,33.30000000,1369.731 4.50000000,33.30000000,1006.993 4.60000000,33.30000000,710.814 4.70000000,33.30000000,482.224 4.80000000,33.30000000,314.693 4.90000000,33.30000000,197.704 5.00000000,33.30000000,119.658 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style5</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.30000000,118.945 0.10000000,33.30000000,196.275 0.20000000,33.30000000,311.903 0.30000000,33.30000000,476.926 0.40000000,33.30000000,701.024 0.50000000,33.30000000,989.398 0.60000000,33.30000000,1338.979 0.70000000,33.30000000,1734.702 0.80000000,33.30000000,2147.023 0.90000000,33.30000000,2532.102 1.00000000,33.30000000,2835.766 1.10000000,33.30000000,3001.596 1.20000000,33.30000000,2982.067 1.30000000,33.30000000,2750.290 1.40000000,33.30000000,2308.866 1.50000000,33.30000000,1692.544 1.60000000,33.30000000,962.798 1.70000000,33.30000000,195.085 1.80000000,33.30000000,537.711 1.90000000,33.30000000,1180.355 2.00000000,33.30000000,1703.766 2.10000000,33.30000000,2104.332 2.20000000,33.30000000,2395.088 2.30000000,33.30000000,2593.324 2.40000000,33.30000000,2710.597 2.50000000,33.30000000,2749.821 2.60000000,33.30000000,2710.457 2.70000000,33.30000000,2598.644 2.80000000,33.30000000,2436.388 2.90000000,33.30000000,2264.126 3.00000000,33.30000000,2133.998 3.10000000,33.30000000,2095.559 3.20000000,33.30000000,2179.311 3.30000000,33.30000000,2384.682 3.40000000,33.30000000,2677.346 3.50000000,33.30000000,2997.079 3.60000000,33.30000000,3273.338 3.70000000,33.30000000,3443.174 3.80000000,33.30000000,3465.774 3.90000000,33.30000000,3329.742 4.00000000,33.30000000,3052.106 4.10000000,33.30000000,2670.718 4.20000000,33.30000000,2233.348 4.30000000,33.30000000,1786.957 4.40000000,33.30000000,1369.731 4.50000000,33.30000000,1006.993 4.60000000,33.30000000,710.814 4.70000000,33.30000000,482.224 4.80000000,33.30000000,314.693 4.90000000,33.30000000,197.704 5.00000000,33.30000000,119.658 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style38</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.40000000,92.900 0.10000000,33.40000000,153.251 0.20000000,33.40000000,243.436 0.30000000,33.40000000,372.033 0.40000000,33.40000000,546.449 0.50000000,33.40000000,770.481 0.60000000,33.40000000,1041.316 0.70000000,33.40000000,1346.560 0.80000000,33.40000000,1662.246 0.90000000,33.40000000,1952.931 1.00000000,33.40000000,2174.783 1.10000000,33.40000000,2281.929 1.20000000,33.40000000,2235.262 1.30000000,33.40000000,2011.793 1.40000000,33.40000000,1611.837 1.50000000,33.40000000,1061.415 1.60000000,33.40000000,408.378 1.70000000,33.40000000,287.210 1.80000000,33.40000000,965.772 1.90000000,33.40000000,1579.908 2.00000000,33.40000000,2101.197 2.10000000,33.40000000,2520.041 2.20000000,33.40000000,2839.404 2.30000000,33.40000000,3065.909 2.40000000,33.40000000,3202.879 2.50000000,33.40000000,3248.815 2.60000000,33.40000000,3201.981 2.70000000,33.40000000,3068.520 2.80000000,33.40000000,2869.464 2.90000000,33.40000000,2642.217 3.00000000,33.40000000,2434.534 3.10000000,33.40000000,2292.472 3.20000000,33.40000000,2246.696 3.30000000,33.40000000,2302.428 3.40000000,33.40000000,2436.951 3.50000000,33.40000000,2605.634 3.60000000,33.40000000,2754.225 3.70000000,33.40000000,2833.145 3.80000000,33.40000000,2809.230 3.90000000,33.40000000,2671.807 4.00000000,33.40000000,2432.239 4.10000000,33.40000000,2118.231 4.20000000,33.40000000,1765.456 4.30000000,33.40000000,1409.242 4.40000000,33.40000000,1078.356 4.50000000,33.40000000,791.784 4.60000000,33.40000000,558.380 4.70000000,33.40000000,378.543 4.80000000,33.40000000,246.899 4.90000000,33.40000000,155.049 5.00000000,33.40000000,93.811 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style4</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.40000000,92.900 0.10000000,33.40000000,153.251 0.20000000,33.40000000,243.436 0.30000000,33.40000000,372.033 0.40000000,33.40000000,546.449 0.50000000,33.40000000,770.481 0.60000000,33.40000000,1041.316 0.70000000,33.40000000,1346.560 0.80000000,33.40000000,1662.246 0.90000000,33.40000000,1952.931 1.00000000,33.40000000,2174.783 1.10000000,33.40000000,2281.929 1.20000000,33.40000000,2235.262 1.30000000,33.40000000,2011.793 1.40000000,33.40000000,1611.837 1.50000000,33.40000000,1061.415 1.60000000,33.40000000,408.378 1.70000000,33.40000000,287.210 1.80000000,33.40000000,965.772 1.90000000,33.40000000,1579.908 2.00000000,33.40000000,2101.197 2.10000000,33.40000000,2520.041 2.20000000,33.40000000,2839.404 2.30000000,33.40000000,3065.909 2.40000000,33.40000000,3202.879 2.50000000,33.40000000,3248.815 2.60000000,33.40000000,3201.981 2.70000000,33.40000000,3068.520 2.80000000,33.40000000,2869.464 2.90000000,33.40000000,2642.217 3.00000000,33.40000000,2434.534 3.10000000,33.40000000,2292.472 3.20000000,33.40000000,2246.696 3.30000000,33.40000000,2302.428 3.40000000,33.40000000,2436.951 3.50000000,33.40000000,2605.634 3.60000000,33.40000000,2754.225 3.70000000,33.40000000,2833.145 3.80000000,33.40000000,2809.230 3.90000000,33.40000000,2671.807 4.00000000,33.40000000,2432.239 4.10000000,33.40000000,2118.231 4.20000000,33.40000000,1765.456 4.30000000,33.40000000,1409.242 4.40000000,33.40000000,1078.356 4.50000000,33.40000000,791.784 4.60000000,33.40000000,558.380 4.70000000,33.40000000,378.543 4.80000000,33.40000000,246.899 4.90000000,33.40000000,155.049 5.00000000,33.40000000,93.811 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style21</styleUrl>
<LineString>
<tessellate>1</tessellate>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.50000000,70.096 0.10000000,33.50000000,115.609 0.20000000,33.50000000,183.570 0.30000000,33.50000000,280.370 0.40000000,33.50000000,411.440 0.50000000,33.50000000,579.373 0.60000000,33.50000000,781.603 0.70000000,33.50000000,1008.108 0.80000000,33.50000000,1239.853 0.90000000,33.50000000,1448.826 1.00000000,33.50000000,1600.373 1.10000000,33.50000000,1658.042 1.20000000,33.50000000,1590.367 1.30000000,33.50000000,1378.123 1.40000000,33.50000000,1020.022 1.50000000,33.50000000,534.835 1.60000000,33.50000000,41.209 1.70000000,33.50000000,661.418 1.80000000,33.50000000,1278.040 1.90000000,33.50000000,1851.062 2.00000000,33.50000000,2353.500 2.10000000,33.50000000,2771.651 2.20000000,33.50000000,3100.927 2.30000000,33.50000000,3339.843 2.40000000,33.50000000,3485.532 2.50000000,33.50000000,3533.309 2.60000000,33.50000000,3480.652 2.70000000,33.50000000,3333.557 2.80000000,33.50000000,3111.693 2.90000000,33.50000000,2849.030 3.00000000,33.50000000,2588.543 3.10000000,33.50000000,2372.222 3.20000000,33.50000000,2229.887 3.30000000,33.50000000,2170.934 3.40000000,33.50000000,2182.055 3.50000000,33.50000000,2231.698 3.60000000,33.50000000,2279.516 3.70000000,33.50000000,2287.496 3.80000000,33.50000000,2229.237 3.90000000,33.50000000,2094.928 4.00000000,33.50000000,1891.312 4.10000000,33.50000000,1637.608 4.20000000,33.50000000,1359.286 4.30000000,33.50000000,1081.838 4.40000000,33.50000000,826.057 4.50000000,33.50000000,605.579 4.60000000,33.50000000,426.563 4.70000000,33.50000000,288.924 4.80000000,33.50000000,188.319 4.90000000,33.50000000,118.199 5.00000000,33.50000000,71.486 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#fill_style1</styleUrl>
<LineString>
<extrude>1</extrude>\n<altitudeMode>absolute</altitudeMode>\n<coordinates>
0.00000000,33.50000000,70.096 0.10000000,33.50000000,115.609 0.20000000,33.50000000,183.570 0.30000000,33.50000000,280.370 0.40000000,33.50000000,411.440 0.50000000,33.50000000,579.373 0.60000000,33.50000000,781.603 0.70000000,33.50000000,1008.108 0.80000000,33.50000000,1239.853 0.90000000,33.50000000,1448.826 1.00000000,33.50000000,1600.373 1.10000000,33.50000000,1658.042 1.20000000,33.50000000,1590.367 1.30000000,33.50000000,1378.123 1.40000000,33.50000000,1020.022 1.50000000,33.50000000,534.835 1.60000000,33.50000000,41.209 1.70000000,33.50000000,661.418 1.80000000,33.50000000,1278.040 1.90000000,33.50000000,1851.062 2.00000000,33.50000000,2353.500 2.10000000,33.50000000,2771.651 2.20000000,33.50000000,3100.927 2.30000000,33.50000000,3339.843 2.40000000,33.50000000,3485.532 2.50000000,33.50000000,3533.309 2.60000000,33.50000000,3480.652 2.70000000,33.50000000,3333.557 2.80000000,33.50000000,3111.693 2.90000000,33.50000000,2849.030 3.00000000,33.50000000,2588.543 3.10000000,33.50000000,2372.222 3.20000000,33.50000000,2229.887 3.30000000,33.50000000,2170.934 3.40000000,33.50000000,2182.055 3.50000000,33.50000000,2231.698 3.60000000,33.50000000,2279.516 3.70000000,33.50000000,2287.496 3.80000000,33.50000000,2229.237 3.90000000,33.50000000,2094.928 4.00000000,33.50000000,1891.312 4.10000000,33.50000000,1637.608 4.20000000,33.50000000,1359.286 4.30000000,33.50000000,1081.838 4.40000000,33.50000000,826.057 4.50000000,33.50000000,605.579 4.60000000,33.50000000,426.563 4.70000000,33.50000000,288.924 4.80000000,33.50000000,188.319 4.90000000,33.50000000,118.199 5.00000000,33.50000000,71.486 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name></name>
<styleUrl>#line_style7</styleUrl>
<LineString>
...

Notice how there are only five distinct fill styles, but 51 unique line styles.