Browse Source

element object

VladyCoder 5 years ago
parent
commit
2a30b6d838

+ 18 - 0
package-lock.json

@@ -11075,6 +11075,11 @@
       "resolved": "https://registry.npmjs.org/leaflet-gpx/-/leaflet-gpx-1.5.0.tgz",
       "integrity": "sha512-x6bubTA3/ySOF8K6VOGONWEED5/yOtRBkb2zJUp4rhdN4HIEKW9S+AWMAj626VxjwrqJY2kq/wn2Ev6ifu3RVA=="
     },
+    "leaflet-play": {
+      "version": "0.4.4",
+      "resolved": "https://registry.npmjs.org/leaflet-play/-/leaflet-play-0.4.4.tgz",
+      "integrity": "sha512-ancp6aAoN4/sMQzMZvZgqFw3gIY8bV0b9BY3CFXGqtv+o6SKCLs/8tpFSfy/0kXY9+NFBKI9PCRYVTYLiEbsXA=="
+    },
     "leaflet-routing-machine": {
       "version": "3.2.12",
       "resolved": "https://registry.npmjs.org/leaflet-routing-machine/-/leaflet-routing-machine-3.2.12.tgz",
@@ -11090,6 +11095,14 @@
       "resolved": "https://registry.npmjs.org/leaflet-sidebar-v2/-/leaflet-sidebar-v2-3.2.2.tgz",
       "integrity": "sha512-LwDiEvC3TAybIxHt+ud2rkdvJxQFMFpS9Xk02nvC8h2YRx5/+cYySFgM76Z8fEHPOl02htLWECmGitSwGVf/+A=="
     },
+    "leaflet-spin": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/leaflet-spin/-/leaflet-spin-1.1.2.tgz",
+      "integrity": "sha512-OLpeDrrAv1YY8NVSnOP0YfICFFm+IFauL77erXH87ZiTIXl3aPwUJXOd336DrQCe4aFsY+F3oG/1+aXyjqKV2w==",
+      "requires": {
+        "spin.js": "^2.3.1"
+      }
+    },
     "leaflet.fullscreen": {
       "version": "1.6.0",
       "resolved": "https://registry.npmjs.org/leaflet.fullscreen/-/leaflet.fullscreen-1.6.0.tgz",
@@ -16543,6 +16556,11 @@
         "wbuf": "^1.7.3"
       }
     },
+    "spin.js": {
+      "version": "2.3.2",
+      "resolved": "https://registry.npmjs.org/spin.js/-/spin.js-2.3.2.tgz",
+      "integrity": "sha1-bKpW1SBnNFD9XPvGlx5tB3LDeho="
+    },
     "spinkit": {
       "version": "1.2.5",
       "resolved": "https://registry.npmjs.org/spinkit/-/spinkit-1.2.5.tgz",

+ 2 - 0
package.json

@@ -50,8 +50,10 @@
     "leaflet-control-geocoder": "^1.13.0",
     "leaflet-defaulticon-compatibility": "^0.1.1",
     "leaflet-gpx": "^1.5.0",
+    "leaflet-play": "^0.4.4",
     "leaflet-routing-machine": "^3.2.12",
     "leaflet-sidebar-v2": "^3.2.2",
+    "leaflet-spin": "^1.1.2",
     "leaflet.fullscreen": "^1.6.0",
     "leaflet.gridlayer.googlemutant": "^0.9.0",
     "leaflet.heightgraph": "^0.4.1",

+ 4 - 0
public/index.html

@@ -30,6 +30,7 @@
       work correctly both with client-side routing and a non-root public URL.
       Learn how to configure a non-root public URL by running `npm run build`.
     -->
+    <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" type="text/css" />  
   </head>
 
   <!-- BODY options, add following classes to body to change options
@@ -75,6 +76,9 @@
       To begin the development, run `npm start` or `yarn start`.
       To create a production bundle, use `npm run build` or `yarn build`.
     -->
+    <script src="http://code.jquery.com/jquery-1.11.0.js"></script>
+    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
+    <script src="http://jdewit.github.io/bootstrap-timepicker/js/bootstrap-timepicker.js"></script>  
     <script src="http://d3js.org/d3.v5.min.js" charset="utf-8"></script>
     <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAWtwvYDkFXjhl0PCxBlAQQ004cPqROjMw" async defer></script>
   </body>

+ 242 - 0
src/components/LeafletMap/LElement.js

@@ -0,0 +1,242 @@
+import L from 'leaflet';
+import { streetView, fontAwesomeIcon } from './Utils';
+import {t} from './languages';
+
+class LElement {
+    constructor(data, parent){
+        this._parent = parent;
+        this._data = data;
+        this._initialize();
+    }
+
+    _initialize(){
+        this._status = this._data.status;
+        this.setPosition(this._data.cord);
+
+        if(this._track) this._track.remove();
+        this._track = null;
+        this._trackStatus = false;
+        this._updateTrack();
+
+        if(this._marker) this._marker.remove();
+        this._marker = null;
+        this._marker = this._createMarker();
+
+        if(this._status == 'enabled') this._addToMap();
+    }
+
+    _updateData(){
+        if(this._status == 'enabled') {
+           this._addToMap();
+        }else {
+           this._removeFromMap();
+        }
+
+        this._data = {
+            ...this.data,
+            status: this._status,
+        }
+    }
+
+    getStatus(){
+        return this._status;
+    }
+
+    setStatus(status){
+        this._status = status;
+        this._updateData();
+    }
+
+    getPosition(){
+        return this._curPosition;
+    }
+
+    setPosition(latlng){
+        if(typeof latlng == 'string'){
+            let _ln = latlng.split(',');
+            this._curPosition = {lat: _ln[0] || 0, lng: _ln[1] || 0};
+        }else{
+            this._curPosition = latlng;
+        } 
+    }
+
+    getIcon(){
+        return this._data.icon;
+    }
+
+    setIcon(icon){
+        if(!icon || typeof icon != 'object') return;
+        this._data.icon = icon;
+        this._marker.setIcon(fontAwesomeIcon(this._data.icon.icon, this._data.icon.color));
+    }
+
+    getColor(){
+        return this._data.icon.color;
+    }
+
+    setColor(color){
+        this._data.icon.color = color;
+        this._marker.setIcon(fontAwesomeIcon(this._data.icon.icon, this._data.icon.color));
+    }
+
+    showTrack(){
+        if(!this._track) return;
+        this._track.addTo(this._parent.map);
+        this._trackStatus = true;
+    }
+
+    hideTrack(){
+        if(!this._track) return;
+        this._track.remove();
+        this._trackStatus = false;
+    }
+
+    getTrack(){
+        return this._data.data;
+    }
+
+    setTrack(track){
+        if(typeof track != 'object') return;
+        this._data.data = track;
+        this._updateTrack();
+    }
+
+    addTrack(track){
+        if(typeof track != 'object') return;
+
+        if(!this._data.data || !this._data.data.length) this._data.data = [];
+        if(track.length){
+            this._data.data = this._data.data.concat(track);
+        }else{
+            this._data.data.push(track);
+        }
+        this._updateTrack();
+    }
+
+    _updateTrack(){
+        if(!this._data.data || typeof this._data.data != 'object') return;
+
+        if(this._track) {
+            this._track.remove();
+            this._track = null;
+        }
+
+        if(this._data.data.length) {
+            let _lns = [];
+            for(var i = 0; i < this._data.data.length; i++){
+                let _ln = this._data.data[i].cord;
+                _lns.push(_ln.split(','));
+            }
+            this._track = L.polyline(_lns);
+
+            if(this._trackStatus) this._track.addTo(this._parent.map);
+        }
+    }
+
+    getProperties(){
+        return this._data.prop;
+    }
+
+    setProperties(props){
+        this._data.prop = props;
+    }
+
+    addProperty(prop){
+        this._data.prop = {...this._data.prop, ...prop};
+    }
+
+    getAllData(){
+        return this._data;
+    }
+
+    refreshElement(){
+        this._initialize();
+    }
+
+    goto(){
+        this._parent.map.panTo(this._curPosition);
+    }
+
+    _createMarker(){
+        let _icon = this._data.icon;
+
+        let marker = L.marker(this._curPosition, {
+            name: this._data.name,
+            icon: fontAwesomeIcon(_icon.icon, _icon.color),
+            ...this._createMarkerContextMenu()
+        });
+
+        marker.bindPopup("<b>"+this._data.name+"</b><br>"+this._data.cord).openPopup();
+        // marker.on('click', this._markerClickHandler, this);
+
+        return marker;
+    }
+
+    _createMarkerContextMenu(){
+        let _this = this;
+        let _contextItems = [
+            {
+                text: t('Street View'),
+                callback: function(e){
+                    streetView(e.relatedTarget._latlng);
+                }
+            },{
+                text: t('Center map here'),
+                callback: function(e){
+                    _this.goto();
+                }
+            },'-',{
+                text: t('Show track'),
+                callback: function(e){
+                    _this.showTrack();
+                }
+            },{
+                text: t('Hide track'),
+                callback: function(e){
+                    _this.hideTrack();
+                }
+            },'-',{
+                text: t('Zoom in'),
+                callback: function(e){
+                    _this._parent.map.zoomIn();
+                }
+            },{
+                text: t('Zoom out'),
+                callback: function(e){
+                    _this._parent.map.zoomOut();
+                }
+            }
+        ];
+
+        return {
+            contextmenu: true,
+            contextmenuInheritItems	: false,
+            contextmenuItems: _contextItems
+        }
+    }
+
+    // _markerClickHandler(e){
+    //     this.dispatchEvent(e);
+    // }
+
+    _addToMap(){
+        let pOptions = this._parent.options;
+        if(pOptions.clustering) this._parent.clusterGroup.addLayer(this._marker);
+        else this._marker.addTo(this._parent.map);
+
+        if(this._trackStatus) this.showTrack();
+    }
+
+    _removeFromMap(){
+        this._marker.remove();
+    }
+
+    on(event, callback, target){
+        if(!this._marker) return false;
+        this._marker.on(event, callback, target);
+    }
+}
+
+export default function createElement(data, parent){
+    return new LElement(data, parent);
+} 

+ 163 - 87
src/components/LeafletMap/LMap.js

@@ -1,14 +1,15 @@
-import L, { latLng } from 'leaflet';
+import L from 'leaflet';
+import './leaflet-map.css';
 import './vendor';
 import {t, setLanguage} from './languages';
-import './leaflet-map.css';
 
 import maps from './maps.js';
-import { MapMenu, MarkerMenu } from './contextMenus';
 import lmapSidebar from './sidebar';
+import createElement from './LElement';
+import { getDirections } from './Utils';
 
-
-import {geojson} from './example_data';
+// import {geojson} from './example_data';
+// import { demoTracks, blueMountain } from './demo-tracks';
 
 export var MapTypes = {
     _TRACKING_: 'TRACKING_MAP',
@@ -23,12 +24,14 @@ const fullScreenOptions = {
     }
 }
 
+const mapbox_token = "pk.eyJ1IjoiaHVkYWxpbmciLCJhIjoiY2thN2xobWU1MDQ5ZTMwbWt3dHdzZzNiNSJ9.h8fncaoyA-IUhfWcjFZWiw";
+
 export class LMap {
     constructor(id, type = MapTypes._TRACKING_, options, ){
         this.map = L.map(id, {
             ...options,
             ...fullScreenOptions,
-            ...MapMenu
+            ...this._createGlobalMenu()
         });
 
         this.mapType = type;
@@ -42,7 +45,15 @@ export class LMap {
     }
 
     _initialize(){
+        let _this = this;
+        this.map.spin(true);
+        setTimeout(function(){
+            _this.map.spin(false);
+        }, 1000);
+
+        this.setLanguage(this.options.language);
         this.map.on('click', this.mapClickHandler, this);
+
         if(this.options.sidebar){
             this.Sidebar = lmapSidebar(this.domID);
             L.control.sidebar({
@@ -57,23 +68,19 @@ export class LMap {
         if(this.options.geosearch) this.addGeoSearching();
         if(this.options.routing) this.addRouting();
 
-        if(this.options.language) setLanguage(this.options.language);
-        this.setLanguage("RU");
-        console.log(t('leaflet'));
+        this.addPlayBackControl();
     }
-    
+
     setView(options){
         this.map.setView(options);
     }
 
     setLanguage(ln){
-        setLanguage(ln);
+        if(!ln) setLanguage('EN');
+        else setLanguage(ln);
     }
 
-    setType(type = MapTypes._TRACKING_){
-        this.mapType = type;
-    }
-    getType(){
+    getMapType(){
         return this.mapType;
     }
 
@@ -106,23 +113,14 @@ export class LMap {
         }
     }
 
-    drawPath(latlngs, options){
-        if(!latlngs || !latlngs.length) return;
-        L.polyline(latlngs, options).addTo(this.map);
-    }
-
+    //_________________ Element functions ______________
     addElements(elements){
         if(!elements.length) return;
 
-        elements.forEach(el => {
-            let marker = this._createMarker(el);
-            this.mapElements.push({
-                element: el,
-                marker: marker
-            });
-
-            if(this.options.clustering) this.clusterGroup.addLayer(marker);
-            else marker.addTo(this.map);
+        elements.forEach(data => {
+            let _el = createElement(data, this);
+            _el.on('click', this.elementClickHandler, this);
+            this.mapElements.push(_el);
         });
 
         if(this.options.clustering)
@@ -131,87 +129,66 @@ export class LMap {
             this.Sidebar.setData(elements);
     }
 
-    removeElement(id){
-        let _num = this._getElementIndex(id);
-        let _el = this.mapElements.splice(_num, 1);
-
-        if(this.options.clustering) this.clusterGroup.removeLayer(_el.marker);
-        else this.map.removeLayer(_el.marker);
-
+    getElementByID(id){
+        for( let i = 0; i < this.mapElements.length; i++){
+            let el = this.mapElements[i];
+            if( el._data.id === id) return el;
+        }
+        return null;
     }
 
     getAllElements(){
-        var _els = [];
-        this.mapElements.forEach( el => {
-            _els.push(el.element);
-        })
-
-        return _els;
+        return this.mapElements;
     }
 
-    getElementByID(id){
-        let _num = this._getElementIndex(id);
-        
-        if(_num > -1) return this.mapElements[_num];
-        return null;
+    removeElement(id){
+        let _el = this._popElement(id);
+        _el._removeFromMap();
+        _el = null;
     }
 
-    _createMarker(el){
-        let _this = this;
-        let _icon = el.icon;
-        let _latlng = el.cord.split(',');
-
-        let marker = L.marker(_latlng, {
-            name: el.name,
-            icon: this._getFontIcon(_icon.icon, _icon.color),
-            ...MarkerMenu(el.name)
-        });
-
-        marker.bindPopup("<b>"+el.name+"</b><br>"+el.cord).openPopup();
-        marker.on('click', this.markerClickHandler, this);
+    removeAllElements(){
+        for( let i = 0; i < this.mapElements.length; i++){
+            let el = this.mapElements[i];
+            el._removeFromMap();
+            el = null;
+        }
 
-        return marker;
+        this.mapElements = [];
     }
 
-    _getElementIndex(id){
+    _popElement(id){
         for( let i = 0; i < this.mapElements.length; i++){
             let el = this.mapElements[i];
-            if( el.element.id === id) return i;
+            if( el._data.id === id) return this.mapElements.splice(i, 1);
         }
-        return -1;
-    }
-
-    _getFontIcon(name, color, size = 'md'){
-        var _html = '<i class="' + name;
-        if(size == 'sm') _html += ' fa-1x"';
-        else if(size == 'lg') _html += ' fa-3x"';
-        else _html += ' fa-2x"';
-
-        _html += ' style="position: absolute; bottom: 0; left: -50%; color: ' + (color || 'black') + '"></i>';
-
-        return L.divIcon({
-            html: _html,
-            className: 'fontAwesomeIcon'
-        });
+        return null;
     }
+    // ________________________________________________________
 
     addElevation(){
         var hg = L.control.heightgraph({
             position: 'bottomright',
             width: 800,
             height: 280,
-            expand: false
+            expand: false,
+            translation: {
+                distance: t("Distance"),
+                elevation: t("Elevation"),
+                segment_length: t("Segment length"),
+                type: t("Type"),
+                legend: t("Legend")
+            }
         });
         hg.addTo(this.map);
-        hg.addData(geojson);
-        L.geoJson(geojson).addTo(this.map);
-        console.log(hg);
+        // hg.addData(geojson);
+        // L.geoJson(geojson).addTo(this.map);
     }
 
     addGeoSearching(){
         L.Control.geocoder({
             position: 'topleft',
-            geocoder: L.Control.Geocoder.mapbox('pk.eyJ1IjoiaHVkYWxpbmciLCJhIjoiY2thN2xobWU1MDQ5ZTMwbWt3dHdzZzNiNSJ9.h8fncaoyA-IUhfWcjFZWiw', 
+            geocoder: L.Control.Geocoder.mapbox(mapbox_token, 
                 {
                     serviceUrl: "https://api.mapbox.com/geocoding/v5/mapbox.places/"
                 }
@@ -248,14 +225,13 @@ export class LMap {
         }).addTo(this.map);
         
         this.routingControlPan = L.Routing.control({
-            router: L.Routing.mapbox('pk.eyJ1IjoiaHVkYWxpbmciLCJhIjoiY2thN2xobWU1MDQ5ZTMwbWt3dHdzZzNiNSJ9.h8fncaoyA-IUhfWcjFZWiw'),
-            geocoder: L.Control.Geocoder.mapbox('pk.eyJ1IjoiaHVkYWxpbmciLCJhIjoiY2thN2xobWU1MDQ5ZTMwbWt3dHdzZzNiNSJ9.h8fncaoyA-IUhfWcjFZWiw', 
+            router: L.Routing.mapbox(mapbox_token),
+            geocoder: L.Control.Geocoder.mapbox(mapbox_token, 
                 {
                     serviceUrl: "https://api.mapbox.com/geocoding/v5/mapbox.places/"
                 }
             )
         });
-        console.log(this.routingControlPan);
     }
 
     enableRoutingContainer(){
@@ -267,11 +243,40 @@ export class LMap {
         this.routingControlPan.remove();
     }
 
+    addPlayBackControl(){
+        // var playbackOptions = {        
+        //     layer: {
+        //         pointToLayer : function(featureData, latlng){
+        //             var result = {};
+                    
+        //             if (featureData && featureData.properties && featureData.properties.path_options){
+        //                 result = featureData.properties.path_options;
+        //             }
+                    
+        //             if (!result.radius){
+        //                 result.radius = 5;
+        //             }
+                    
+        //             return new L.CircleMarker(latlng, result);
+        //         }
+        //     }
+        // };
+
+        // this.playback = new L.Playback(this.map, demoTracks, null, playbackOptions);
+
+        // var control = new L.Playback.Control(this.playback);
+        // control.addTo(this.map);
+
+        // this.playback.addData(blueMountain);
+        
+        // this.map.spin(true);
+    }
+
     mapClickHandler(e){
         console.log('map', e);
     }
 
-    markerClickHandler(e){
+    elementClickHandler(e){
         var latlng = e.target._latlng;
         var name = e.target.options.name;
         this._addRoutingPoint(latlng, name);
@@ -301,4 +306,75 @@ export class LMap {
         this.routingControlPan.setWaypoints(curPoints);
 
     }
+
+    _showStreetView(e){
+        var latlng = e.relatedTarget._latlng;
+        window.open("https://www.google.com/maps/@?api=1&map_action=pano&viewpoint="+latlng.lat + "," +latlng.lng, '_blank');
+    }
+
+    showAllTracks(){
+        for( let i = 0; i < this.mapElements.length; i++){
+            let el = this.mapElements[i];
+            el.showTrack();
+        }
+    }
+
+    hideAllTracks(){
+        for( let i = 0; i < this.mapElements.length; i++){
+            let el = this.mapElements[i];
+            el.hideTrack();
+        }
+    }
+
+    refreshMap(){
+        let _this = this;
+        this.map.spin(true);
+        setTimeout(function(){
+            _this.map.spin(false);
+        }, 1000);
+
+        for( let i = 0; i < this.mapElements.length; i++){
+            let el = this.mapElements[i];
+            el.refreshElement();
+        }
+    }
+
+    _createGlobalMenu(){
+        let _this = this;
+        return {
+            contextmenu: true,
+            contextmenuWidth: 140,
+            contextmenuItems: [{
+                text: t('Show all tracks'),
+                callback: function(e){
+                    _this.showAllTracks();
+                } 
+            },{
+                text: t('Hide all tracks'),
+                callback: function(e){
+                    _this.hideAllTracks();
+                } 
+            },{
+                text: t('Refresh Map'),
+                callback: function(e){
+                    _this.refreshMap();
+                }
+            }, '-',{
+                text: t('Remove all elements'),
+                callback: function(){
+                    _this.removeAllElements();
+                }
+            }, '-', {
+                text: t('Zoom in'),
+                callback: function(e){
+                    _this.map.zoomIn();
+                }
+            }, {
+                text: t('Zoom out'),
+                callback: function(e){
+                    _this.map.zoomOut();
+                }
+            }]
+        };
+    }
 }

+ 1072 - 0
src/components/LeafletMap/LPlayback/LeafletPlayback.js

@@ -0,0 +1,1072 @@
+// UMD initialization to work with CommonJS, AMD and basic browser script include
+
+(function (factory) {
+	var L;
+    if (typeof window.L === 'undefined')
+        throw 'Leaflet must be loaded first';
+    factory(window.L);
+}(function (L) {
+
+L.Playback = L.Playback || {};
+
+L.Playback.Util = L.Class.extend({
+  statics: {
+
+    DateStr: function(time) {
+      return new Date(time).toDateString();
+    },
+
+    TimeStr: function(time) {
+      var d = new Date(time);
+      var h = d.getHours();
+      var m = d.getMinutes();
+      var s = d.getSeconds();
+      var tms = time / 1000;
+      var dec = (tms - Math.floor(tms)).toFixed(2).slice(1);
+      var mer = 'AM';
+      if (h > 11) {
+        h %= 12;
+        mer = 'PM';
+      }
+      if (h === 0) h = 12;
+      if (m < 10) m = '0' + m;
+      if (s < 10) s = '0' + s;
+      return h + ':' + m + ':' + s + dec + ' ' + mer;
+    },
+
+    ParseGPX: function(gpx) {
+        return null;
+	//   var geojsonRoot = {
+    //     type: 'FeatureCollection',
+	// 	features : []
+    //   };
+
+
+
+    //   var xml = $.parseXML(gpx);
+
+    //   var trks = $(xml).find('trk');
+    //   for (var trackIdx=0, numberOfTracks=trks.length; trackIdx<numberOfTracks; trackIdx++) {
+
+    //     var track = trks[trackIdx];
+    //     var geojson = {
+    //       type: 'Feature',
+    //       geometry: {
+    //         type: 'MultiPoint',
+    //         coordinates: []
+    //       },
+    //       properties: {
+    //         trk : {},
+    //         time: [],
+    //         speed: [],
+    //         altitude: [],
+    //         bbox: []
+    //       }
+    //     };
+
+    //     geojson.properties.trk.name = $(track).find('name').text();
+    //     geojson.properties.trk.desc = $(track).find('desc').text();
+    //     geojson.properties.trk.type = $(track).find('type').text();
+    //     geojson.properties.trk.src = $(track).find('src').text();
+
+    //     var pts = $(track).find('trkpt');
+    //     for (var i=0, len=pts.length; i<len; i++) {
+    //       var p = pts[i];
+    //       var lat = parseFloat(p.getAttribute('lat'));
+    //       var lng = parseFloat(p.getAttribute('lon'));
+    //       var timeStr = $(p).find('time').text();
+    //       var eleStr = $(p).find('ele').text();
+    //       var t = new Date(timeStr).getTime();
+    //       var ele = parseFloat(eleStr);
+
+    //       var coords = geojson.geometry.coordinates;
+    //       var props = geojson.properties;
+
+    //       var time = props.time;
+    //       var altitude = geojson.properties.altitude;
+
+    //       coords.push([lng,lat]);
+    //       time.push(t);
+    //       altitude.push(ele);
+    //     }
+    //     geojsonRoot.features.push(geojson);
+    //   }
+
+    //   return geojsonRoot;
+
+    }
+  }
+
+});
+
+L.Playback = L.Playback || {};
+
+L.Playback.MoveableMarker = L.Marker.extend({    
+    initialize: function (startLatLng, options, feature) {    
+        var marker_options = options.marker || {};
+
+        // if (jQuery.isFunction(marker_options)){        
+        //     marker_options = marker_options(feature);
+        // }
+        
+        if(typeof marker_options == "function"){
+            marker_options = marker_options(feature);
+        }
+        L.Marker.prototype.initialize.call(this, startLatLng, marker_options);
+        
+        this.popupContent = '';
+        this.feature = feature;
+		
+        if (marker_options.getPopup){
+            this.popupContent = marker_options.getPopup(feature);            
+        }
+        
+        if(options.popups)
+        {
+            this.bindPopup(this.getPopupContent() + startLatLng.toString());
+        }
+        	
+        if(options.labels)
+        {
+            if(this.bindLabel)
+            {
+                this.bindLabel(this.getPopupContent());
+            }
+            else
+            {
+                console.log("Label binding requires leaflet-label (https://github.com/Leaflet/Leaflet.label)");
+            }
+        }
+    },
+    
+    getPopupContent: function() {
+        if (this.popupContent !== ''){
+            return '<b>' + this.popupContent + '</b><br/>';
+        }
+        
+        return '';
+    },
+
+    move: function (latLng, transitionTime) {
+        // Only if CSS3 transitions are supported
+        if (L.DomUtil.TRANSITION) {
+            if (this._icon) { 
+                this._icon.style[L.DomUtil.TRANSITION] = 'all ' + transitionTime + 'ms linear'; 
+                if (this._popup && this._popup._wrapper)
+                    this._popup._wrapper.style[L.DomUtil.TRANSITION] = 'all ' + transitionTime + 'ms linear'; 
+            }
+            if (this._shadow) { 
+                this._shadow.style[L.DomUtil.TRANSITION] = 'all ' + transitionTime + 'ms linear'; 
+            }
+        }
+        this.setLatLng(latLng);
+        if (this._popup) {
+            this._popup.setContent(this.getPopupContent() + this._latlng.toString());
+        }    
+    },
+    
+    // modify leaflet markers to add our roration code
+    /*
+     * Based on comments by @runanet and @coomsie 
+     * https://github.com/CloudMade/Leaflet/issues/386
+     *
+     * Wrapping function is needed to preserve L.Marker.update function
+     */
+    _old__setPos:L.Marker.prototype._setPos,
+    
+    _updateImg: function (i, a, s) {
+        a = L.point(s).divideBy(2)._subtract(L.point(a));
+        var transform = '';
+        transform += ' translate(' + -a.x + 'px, ' + -a.y + 'px)';
+        transform += ' rotate(' + this.options.iconAngle + 'deg)';
+        transform += ' translate(' + a.x + 'px, ' + a.y + 'px)';
+        if(typeof this.options.transformOrigin !== 'undefined' 
+            && this.options.transformOrigin)
+        {
+            i.style['transform-origin'] += this.options.transformOrigin
+        }
+        i.style[L.DomUtil.TRANSFORM] += transform;
+    },
+    setIconAngle: function (iconAngle) {
+        this.options.iconAngle = iconAngle;
+        if (this._map)
+            this.update();
+    },
+    _setPos: function (pos) {
+        if (this._icon) {
+            this._icon.style[L.DomUtil.TRANSFORM] = "";
+        }
+        if (this._shadow) {
+            this._shadow.style[L.DomUtil.TRANSFORM] = "";
+        }
+
+        this._old__setPos.apply(this, [pos]);
+        if (this.options.iconAngle) {
+            var a = this.options.icon.options.iconAnchor;
+            var s = this.options.icon.options.iconSize;
+            var i;
+            if (this._icon) {
+                i = this._icon;
+                this._updateImg(i, a, s);
+            }
+
+            if (this._shadow) {
+                // Rotate around the icons anchor.
+                s = this.options.icon.options.shadowSize;
+                i = this._shadow;
+                this._updateImg(i, a, s);
+            }
+
+        }
+    }
+});
+
+L.Playback = L.Playback || {};
+
+
+        
+L.Playback.Track = L.Class.extend({
+
+        initialize : function (geoJSON, options) {
+            options = options || {};
+            var tickLen = options.tickLen || 250;
+            this._staleTime = options.staleTime || 60*60*1000;
+            this._fadeMarkersWhenStale = options.fadeMarkersWhenStale || false;
+            
+            this._geoJSON = geoJSON;
+            this._tickLen = tickLen;
+            this._ticks = [];
+            this._marker = null;
+			this._orientations = [];
+			
+            var sampleTimes = geoJSON.properties.time;
+            var sampleOrientations = geoJSON.properties.hasOwnProperty('orientations') ? geoJSON.properties.orientations : []
+
+			
+            this._orientIcon = options.orientIcons;
+            this._orientReal = options.orientReal;
+            var previousOrientation;
+			
+            var samples = geoJSON.geometry.coordinates;
+            var currSample = samples[0];
+            var nextSample = samples[1];
+
+            var currentOrientation = sampleOrientations[0];
+            var nextOrientation = sampleOrientations[1];
+			
+            var currSampleTime = sampleTimes[0];
+            var t = currSampleTime;  // t is used to iterate through tick times
+            var nextSampleTime = sampleTimes[1];
+            var tmod = t % tickLen; // ms past a tick time
+            var rem,
+            ratio;
+
+            // handle edge case of only one t sample
+            if (sampleTimes.length === 1) {
+                if (tmod !== 0)
+                    t += tickLen - tmod;
+                this._ticks[t] = samples[0];
+				this._orientations[t] = sampleOrientations.length ? currentOrientation : 0;
+                this._startTime = t;
+                this._endTime = t;
+                return;
+            }
+
+            // interpolate first tick if t not a tick time
+            if (tmod !== 0) {
+                rem = tickLen - tmod;
+                ratio = rem / (nextSampleTime - currSampleTime);
+                t += rem;
+                this._ticks[t] = this._interpolatePoint(currSample, nextSample, ratio);
+				this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                previousOrientation = this._orientations[t];
+            } else {
+		rem = tickLen - tmod;
+                ratio = rem / (nextSampleTime - currSampleTime);
+                t += rem;
+                this._ticks[t] = currSample;
+				this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                previousOrientation = this._orientations[t];
+            }
+
+            this._startTime = t;
+            t += tickLen;
+            while (t < nextSampleTime) {
+                ratio = (t - currSampleTime) / (nextSampleTime - currSampleTime);
+                this._ticks[t] = this._interpolatePoint(currSample, nextSample, ratio);
+				this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                previousOrientation = this._orientations[t];
+                t += tickLen;
+            }
+
+            // iterating through the rest of the samples
+            for (var i = 1, len = samples.length; i < len; i++) {
+                currSample = samples[i];
+                nextSample = samples[i + 1];
+                currentOrientation = sampleOrientations[i];
+                nextOrientation = sampleOrientations[i + 1];
+
+                t = currSampleTime = sampleTimes[i];
+                nextSampleTime = sampleTimes[i + 1];
+
+                tmod = t % tickLen;
+                if (tmod !== 0 && nextSampleTime) {
+                    rem = tickLen - tmod;
+                    ratio = rem / (nextSampleTime - currSampleTime);
+                    t += rem;
+                    this._ticks[t] = this._interpolatePoint(currSample, nextSample, ratio);
+					if(nextSample){
+                        this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                        previousOrientation = this._orientations[t];
+                    } else {
+                        this._orientations[t] = previousOrientation;    
+                    }
+                } else {
+                    this._ticks[t] = currSample;
+                    if(nextSample){
+                        this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                        previousOrientation = this._orientations[t];
+                    } else {
+                        this._orientations[t] = previousOrientation;    
+                    }
+                }
+
+                t += tickLen;
+                while (t < nextSampleTime) {
+                    ratio = (t - currSampleTime) / (nextSampleTime - currSampleTime);                    
+                    
+                    if (nextSampleTime - currSampleTime > options.maxInterpolationTime){
+                        this._ticks[t] = currSample;
+                        
+						if(nextSample){
+                            this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                            previousOrientation = this._orientations[t];
+                        } else {
+                            this._orientations[t] = previousOrientation;    
+                        }
+                    }
+                    else {
+                        this._ticks[t] = this._interpolatePoint(currSample, nextSample, ratio);
+						if(nextSample) {
+                            this._orientations[t] = this._orientReal ? this._directionOfRealPoint(currentOrientation, nextOrientation, ratio) : this._directionOfPoint(currSample,nextSample);
+                            previousOrientation = this._orientations[t];
+                        } else {
+                            this._orientations[t] = previousOrientation;    
+                        }
+                    }                    
+                    
+                    t += tickLen;
+                }
+            }
+
+            // the last t in the while would be past bounds
+            this._endTime = t - tickLen;
+            this._lastTick = this._ticks[this._endTime];
+
+        },
+
+        _interpolatePoint : function (start, end, ratio) {
+            try {
+                var delta = [end[0] - start[0], end[1] - start[1]];
+                var offset = [delta[0] * ratio, delta[1] * ratio];
+                return [start[0] + offset[0], start[1] + offset[1]];
+            } catch (e) {
+                console.log('err: cant interpolate a point');
+                console.log(['start', start]);
+                console.log(['end', end]);
+                console.log(['ratio', ratio]);
+            }
+        },
+        
+        _directionOfRealPoint: function(start, end, ratio){            
+
+            return ((end - start) * this._round(ratio, 1) ) + start            
+        },
+        
+        _directionOfPoint:function(start,end){
+            return this._getBearing(start[1],start[0],end[1],end[0]);
+        },
+        
+        _getBearing:function(startLat,startLong,endLat,endLong){
+              startLat = this._radians(startLat);
+              startLong = this._radians(startLong);
+              endLat = this._radians(endLat);
+              endLong = this._radians(endLong);
+
+              var dLong = endLong - startLong;
+
+              var dPhi = Math.log(Math.tan(endLat/2.0+Math.PI/4.0)/Math.tan(startLat/2.0+Math.PI/4.0));
+              if (Math.abs(dLong) > Math.PI){
+                if (dLong > 0.0)
+                   dLong = -(2.0 * Math.PI - dLong);
+                else
+                   dLong = (2.0 * Math.PI + dLong);
+              }
+
+              return (this._degrees(Math.atan2(dLong, dPhi)) + 360.0) % 360.0;
+        },
+
+        _round:function(value, precision) {
+            var multiplier = Math.pow(10, precision || 0);
+            return Math.round(value * multiplier) / multiplier;
+        },
+        
+        _radians:function(n) {
+          return n * (Math.PI / 180);
+        },
+        _degrees:function(n) {
+          return n * (180 / Math.PI);
+        },
+
+        getFirstTick : function () {
+            return this._ticks[this._startTime];
+        },
+
+        getLastTick : function () {
+            return this._ticks[this._endTime];
+        },
+
+        getStartTime : function () {
+            return this._startTime;
+        },
+
+        getEndTime : function () {
+            return this._endTime;
+        },
+
+        getTickMultiPoint : function () {
+            var t = this.getStartTime();
+            var endT = this.getEndTime();
+            var coordinates = [];
+            var time = [];
+            while (t <= endT) {
+                time.push(t);
+                coordinates.push(this.tick(t));
+                t += this._tickLen;
+            }
+
+            return {
+                type : 'Feature',
+                geometry : {
+                    type : 'MultiPoint',
+                    coordinates : coordinates
+                },
+                properties : {
+                    time : time
+                }
+            };
+        },
+		
+        trackPresentAtTick : function(timestamp)
+        {
+            return (timestamp >= this._startTime);
+        },
+        
+        trackStaleAtTick : function(timestamp)
+        {
+            return ((this._endTime + this._staleTime) <= timestamp);
+        },
+
+        tick : function (timestamp) {
+            if (timestamp > this._endTime)
+                timestamp = this._endTime;
+            if (timestamp < this._startTime)
+                timestamp = this._startTime;
+            return this._ticks[timestamp];
+        },
+		
+        courseAtTime: function(timestamp)
+        {
+            //return 90;
+            if (timestamp > this._endTime)
+               timestamp = this._endTime;
+            if (timestamp < this._startTime)
+                timestamp = this._startTime;
+            return this._orientations[timestamp];
+        },
+        
+        setMarker : function(timestamp, options){
+            var lngLat = null;
+            
+            // if time stamp is not set, then get first tick
+            if (timestamp) {
+                lngLat = this.tick(timestamp);
+            }
+            else {
+                lngLat = this.getFirstTick();
+            }        
+        
+            if (lngLat) {
+                var latLng = new L.LatLng(lngLat[1], lngLat[0]);
+                this._marker = new L.Playback.MoveableMarker(latLng, options, this._geoJSON);     
+				if(options.mouseOverCallback) {
+                    this._marker.on('mouseover',options.mouseOverCallback);
+                }
+				if(options.clickCallback) {
+                    this._marker.on('click',options.clickCallback);
+                }
+				
+				//hide the marker if its not present yet and fadeMarkersWhenStale is true
+				if(this._fadeMarkersWhenStale && !this.trackPresentAtTick(timestamp))
+				{
+					this._marker.setOpacity(0);
+				}
+            }
+            
+            return this._marker;
+        },
+        
+        moveMarker : function(latLng, transitionTime,timestamp) {
+            if (this._marker) {
+                if(this._fadeMarkersWhenStale) {
+                    //show the marker if its now present
+                    if(this.trackPresentAtTick(timestamp)) {
+                        this._marker.setOpacity(1);
+                    } else {
+                        this._marker.setOpacity(0);
+                    }
+                    
+                    if(this.trackStaleAtTick(timestamp)) {
+                        this._marker.setOpacity(0.25);
+                    }
+                }
+				
+                if(this._orientIcon){
+                    this._marker.setIconAngle(this.courseAtTime(timestamp));
+                }
+				
+                this._marker.move(latLng, transitionTime);
+            }
+        },
+        
+        getMarker : function() {
+            return this._marker;
+        }
+
+    });
+
+L.Playback = L.Playback || {};
+
+L.Playback.TrackController = L.Class.extend({
+
+    initialize : function (map, tracks, options) {
+        this.options = options || {};
+    
+        this._map = map;
+
+        this._tracks = [];
+
+        // initialize tick points
+        this.setTracks(tracks);
+    },
+    
+    clearTracks: function(){
+        while (this._tracks.length > 0) {
+            var track = this._tracks.pop();
+            var marker = track.getMarker();
+            
+            if (marker){
+                this._map.removeLayer(marker);
+            }
+        }            
+    },
+
+    setTracks : function (tracks) {
+        // reset current tracks
+        this.clearTracks();
+        
+        this.addTracks(tracks);
+    },
+    
+    addTracks : function (tracks) {
+        // return if nothing is set
+        if (!tracks) {
+            return;
+        }
+        
+        if (tracks instanceof Array) {            
+            for (var i = 0, len = tracks.length; i < len; i++) {
+                this.addTrack(tracks[i]);
+            }
+        } else {
+            this.addTrack(tracks);
+        }            
+    },
+    
+    // add single track
+    addTrack : function (track, timestamp) {
+        // return if nothing is set
+        if (!track) {
+            return;
+        }
+
+        var marker = track.setMarker(timestamp, this.options);
+
+        if (marker) {
+            marker.addTo(this._map);
+            
+            this._tracks.push(track);
+        }            
+    },
+
+    tock : function (timestamp, transitionTime) {
+        for (var i = 0, len = this._tracks.length; i < len; i++) {
+            var lngLat = this._tracks[i].tick(timestamp);
+            var latLng = new L.LatLng(lngLat[1], lngLat[0]);
+            this._tracks[i].moveMarker(latLng, transitionTime,timestamp);
+        }
+    },
+
+    getStartTime : function () {
+        var earliestTime = 0;
+
+        if (this._tracks.length > 0) {
+            earliestTime = this._tracks[0].getStartTime();
+            for (var i = 1, len = this._tracks.length; i < len; i++) {
+                var t = this._tracks[i].getStartTime();
+                if (t < earliestTime) {
+                    earliestTime = t;
+                }
+            }
+        }
+        
+        return earliestTime;
+    },
+
+    getEndTime : function () {
+        var latestTime = 0;
+    
+        if (this._tracks.length > 0){
+            latestTime = this._tracks[0].getEndTime();
+            for (var i = 1, len = this._tracks.length; i < len; i++) {
+                var t = this._tracks[i].getEndTime();
+                if (t > latestTime) {
+                    latestTime = t;
+                }
+            }
+        }
+    
+        return latestTime;
+    },
+
+    getTracks : function () {
+        return this._tracks;
+    }
+});
+L.Playback = L.Playback || {};
+
+L.Playback.Clock = L.Class.extend({
+
+  initialize: function (trackController, callback, options) {
+    this._trackController = trackController;
+    this._callbacksArry = [];
+    if (callback) this.addCallback(callback);
+    L.setOptions(this, options);
+    this._speed = this.options.speed;
+    this._tickLen = this.options.tickLen;
+    this._cursor = trackController.getStartTime();
+    this._transitionTime = this._tickLen / this._speed;
+  },
+
+  _tick: function (self) {
+    if (self._cursor > self._trackController.getEndTime()) {
+      clearInterval(self._intervalID);
+      return;
+    }
+    self._trackController.tock(self._cursor, self._transitionTime);
+    self._callbacks(self._cursor);
+    self._cursor += self._tickLen;
+  },
+
+  _callbacks: function(cursor) {
+    var arry = this._callbacksArry;
+    for (var i=0, len=arry.length; i<len; i++) {
+      arry[i](cursor);
+    }
+  },
+
+  addCallback: function(fn) {
+    this._callbacksArry.push(fn);
+  },
+
+  start: function () {
+    if (this._intervalID) return;
+    this._intervalID = window.setInterval(
+      this._tick, 
+      this._transitionTime, 
+      this);
+  },
+
+  stop: function () {
+    if (!this._intervalID) return;
+    clearInterval(this._intervalID);
+    this._intervalID = null;
+  },
+
+  getSpeed: function() {
+    return this._speed;
+  },
+
+  isPlaying: function() {
+    return this._intervalID ? true : false;
+  },
+
+  setSpeed: function (speed) {
+    this._speed = speed;
+    this._transitionTime = this._tickLen / speed;
+    if (this._intervalID) {
+      this.stop();
+      this.start();
+    }
+  },
+
+  setCursor: function (ms) {
+    var time = parseInt(ms);
+    if (!time) return;
+    var mod = time % this._tickLen;
+    if (mod !== 0) {
+      time += this._tickLen - mod;
+    }
+    this._cursor = time;
+    this._trackController.tock(this._cursor, 0);
+    this._callbacks(this._cursor);
+  },
+
+  getTime: function() {
+    return this._cursor;
+  },
+
+  getStartTime: function() {
+    return this._trackController.getStartTime();
+  },
+
+  getEndTime: function() {
+    return this._trackController.getEndTime();
+  },
+
+  getTickLen: function() {
+    return this._tickLen;
+  }
+
+});
+
+// Simply shows all of the track points as circles.
+// TODO: Associate circle color with the marker color.
+
+L.Playback = L.Playback || {};
+
+L.Playback.TracksLayer = L.Class.extend({
+    initialize : function (map, options) {
+        var layer_options = options.layer || {};
+        
+        // if (jQuery.isFunction(layer_options)){
+        //     layer_options = layer_options(feature);
+        // }
+        
+        if (!layer_options.pointToLayer) {
+            layer_options.pointToLayer = function (featureData, latlng) {
+                return new L.CircleMarker(latlng, { radius : 5 });
+            };
+        }
+    
+        this.layer = new L.GeoJSON(null, layer_options);
+
+        var overlayControl = {
+            'GPS Tracks' : this.layer
+        };
+
+        L.control.layers(null, overlayControl, {
+            collapsed : false
+        }).addTo(map);
+    },
+
+    // clear all geoJSON layers
+    clearLayer : function(){
+        for (var i in this.layer._layers) {
+            this.layer.removeLayer(this.layer._layers[i]);            
+        }
+    },
+
+    // add new geoJSON layer
+    addLayer : function(geoJSON) {
+        this.layer.addData(geoJSON);
+    }
+});
+L.Playback = L.Playback || {};
+
+L.Playback.DateControl = L.Control.extend({
+    options : {
+        position : 'bottomleft',
+        dateFormatFn: L.Playback.Util.DateStr,
+        timeFormatFn: L.Playback.Util.TimeStr
+    },
+
+    initialize : function (playback, options) {
+        L.setOptions(this, options);
+        this.playback = playback;
+    },
+
+    onAdd : function (map) {
+        this._container = L.DomUtil.create('div', 'leaflet-control-layers leaflet-control-layers-expanded');
+
+        var self = this;
+        var playback = this.playback;
+        var time = playback.getTime();
+
+        var datetime = L.DomUtil.create('div', 'datetimeControl', this._container);
+
+        // date time
+        this._date = L.DomUtil.create('p', '', datetime);
+        this._time = L.DomUtil.create('p', '', datetime);
+
+        this._date.innerHTML = this.options.dateFormatFn(time);
+        this._time.innerHTML = this.options.timeFormatFn(time);
+
+        // setup callback
+        playback.addCallback(function (ms) {
+            self._date.innerHTML = self.options.dateFormatFn(ms);
+            self._time.innerHTML = self.options.timeFormatFn(ms);
+        });
+
+        return this._container;
+    }
+});
+    
+L.Playback.PlayControl = L.Control.extend({
+    options : {
+        position : 'bottomright'
+    },
+
+    initialize : function (playback) {
+        this.playback = playback;
+    },
+
+    onAdd : function (map) {
+        this._container = L.DomUtil.create('div', 'leaflet-control-layers leaflet-control-layers-expanded');
+
+        var self = this;
+        var playback = this.playback;
+        playback.setSpeed(100);
+
+        var playControl = L.DomUtil.create('div', 'playControl', this._container);
+
+
+        this._button = L.DomUtil.create('button', '', playControl);
+        this._button.innerHTML = 'Play';
+
+
+        var stop = L.DomEvent.stopPropagation;
+
+        L.DomEvent
+        .on(this._button, 'click', stop)
+        .on(this._button, 'mousedown', stop)
+        .on(this._button, 'dblclick', stop)
+        .on(this._button, 'click', L.DomEvent.preventDefault)
+        .on(this._button, 'click', play, this);
+        
+        function play(){
+            if (playback.isPlaying()) {
+                playback.stop();
+                self._button.innerHTML = 'Play';
+            }
+            else {
+                playback.start();
+                self._button.innerHTML = 'Stop';
+            }                
+        }
+
+        return this._container;
+    }
+});    
+    
+L.Playback.SliderControl = L.Control.extend({
+    options : {
+        position : 'bottomleft'
+    },
+
+    initialize : function (playback) {
+        this.playback = playback;
+    },
+
+    onAdd : function (map) {
+        this._container = L.DomUtil.create('div', 'leaflet-control-layers leaflet-control-layers-expanded');
+
+        var self = this;
+        var playback = this.playback;
+
+        // slider
+        this._slider = L.DomUtil.create('input', 'slider', this._container);
+        this._slider.type = 'range';
+        this._slider.min = playback.getStartTime();
+        this._slider.max = playback.getEndTime();
+        this._slider.value = playback.getTime();
+
+        var stop = L.DomEvent.stopPropagation;
+
+        L.DomEvent
+        .on(this._slider, 'click', stop)
+        .on(this._slider, 'mousedown', stop)
+        .on(this._slider, 'dblclick', stop)
+        .on(this._slider, 'click', L.DomEvent.preventDefault)
+        //.on(this._slider, 'mousemove', L.DomEvent.preventDefault)
+        .on(this._slider, 'change', onSliderChange, this)
+        .on(this._slider, 'mousemove', onSliderChange, this);           
+
+
+        function onSliderChange(e) {
+            var val = Number(e.target.value);
+            playback.setCursor(val);
+        }
+
+        playback.addCallback(function (ms) {
+            self._slider.value = ms;
+        });
+        
+        
+        map.on('playback:add_tracks', function() {
+            self._slider.min = playback.getStartTime();
+            self._slider.max = playback.getEndTime();
+            self._slider.value = playback.getTime();
+        });
+
+        return this._container;
+    }
+});      
+
+L.Playback = L.Playback.Clock.extend({
+        statics : {
+            MoveableMarker : L.Playback.MoveableMarker,
+            Track : L.Playback.Track,
+            TrackController : L.Playback.TrackController,
+            Clock : L.Playback.Clock,
+            Util : L.Playback.Util,
+
+            TracksLayer : L.Playback.TracksLayer,
+            PlayControl : L.Playback.PlayControl,
+            DateControl : L.Playback.DateControl,
+            SliderControl : L.Playback.SliderControl
+        },
+
+        options : {
+            tickLen: 250,
+            speed: 1,
+            maxInterpolationTime: 5*60*1000, // 5 minutes
+
+            tracksLayer : true,
+
+            playControl: false,
+            dateControl: false,
+            sliderControl: false,
+
+            // options
+            layer: {
+                // pointToLayer(featureData, latlng)
+            },
+
+            marker : {
+                // getPopup(feature)
+            }
+        },
+
+        initialize : function (map, geoJSON, callback, options) {
+            L.setOptions(this, options);
+
+            this._map = map;
+            this._trackController = new L.Playback.TrackController(map, null, this.options);
+            L.Playback.Clock.prototype.initialize.call(this, this._trackController, callback, this.options);
+
+            if (this.options.tracksLayer) {
+                this._tracksLayer = new L.Playback.TracksLayer(map, options);
+            }
+
+            this.setData(geoJSON);
+
+
+            if (this.options.playControl) {
+                this.playControl = new L.Playback.PlayControl(this);
+                this.playControl.addTo(map);
+            }
+
+            if (this.options.sliderControl) {
+                this.sliderControl = new L.Playback.SliderControl(this);
+                this.sliderControl.addTo(map);
+            }
+
+            if (this.options.dateControl) {
+                this.dateControl = new L.Playback.DateControl(this, options);
+                this.dateControl.addTo(map);
+            }
+
+        },
+
+        clearData : function(){
+            this._trackController.clearTracks();
+
+            if (this._tracksLayer) {
+                this._tracksLayer.clearLayer();
+            }
+        },
+
+        setData : function (geoJSON) {
+            this.clearData();
+
+            this.addData(geoJSON, this.getTime());
+
+            this.setCursor(this.getStartTime());
+        },
+
+        // bad implementation
+        addData : function (geoJSON, ms) {
+            // return if data not set
+            if (!geoJSON) {
+                return;
+            }
+
+            if (geoJSON instanceof Array) {
+              for (var i = 0, len = geoJSON.length; i < len; i++) {
+                this._trackController.addTrack(new L.Playback.Track(geoJSON[i], this.options), ms);
+              }
+            } else {
+              if (geoJSON.type == "FeatureCollection") {
+                for (var i = 0, len = geoJSON.features.length; i < len; i++) {
+                  this._trackController.addTrack(new L.Playback.Track(geoJSON.features[i], this.options), ms);
+                }
+              } else {
+                this._trackController.addTrack(new L.Playback.Track(geoJSON, this.options), ms);
+              }
+            }
+
+            this._map.fire('playback:set:data');
+
+            if (this.options.tracksLayer) {
+                this._tracksLayer.addLayer(geoJSON);
+            }
+        },
+
+        destroy: function() {
+            this.clearData();
+            if (this.playControl) {
+                this._map.removeControl(this.playControl);
+            }
+            if (this.sliderControl) {
+                this._map.removeControl(this.sliderControl);
+            }
+            if (this.dateControl) {
+                this._map.removeControl(this.dateControl);
+            }
+        }
+    });
+
+L.Map.addInitHook(function () {
+    if (this.options.playback) {
+        this.playback = new L.Playback(this);
+    }
+});
+
+L.playback = function (map, geoJSON, callback, options) {
+    return new L.Playback(map, geoJSON, callback, options);
+};
+
+return L.Playback;
+
+}));

+ 1177 - 0
src/components/LeafletMap/LPlayback/bootstrap-timepicker.js

@@ -0,0 +1,1177 @@
+/*!
+ * Timepicker Component for Twitter Bootstrap
+ *
+ * Copyright 2013 Joris de Wit and bootstrap-timepicker contributors
+ *
+ * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+(function($, window, document) {
+  'use strict';
+
+  // TIMEPICKER PUBLIC CLASS DEFINITION
+  var Timepicker = function(element, options) {
+    this.widget = '';
+    this.$element = $(element);
+    this.defaultTime = options.defaultTime;
+    this.disableFocus = options.disableFocus;
+    this.disableMousewheel = options.disableMousewheel;
+    this.isOpen = options.isOpen;
+    this.minuteStep = options.minuteStep;
+    this.modalBackdrop = options.modalBackdrop;
+    this.orientation = options.orientation;
+    this.secondStep = options.secondStep;
+    this.snapToStep = options.snapToStep;
+    this.showInputs = options.showInputs;
+    this.showMeridian = options.showMeridian;
+    this.showSeconds = options.showSeconds;
+    this.template = options.template;
+    this.appendWidgetTo = options.appendWidgetTo;
+    this.showWidgetOnAddonClick = options.showWidgetOnAddonClick;
+    this.icons = options.icons;
+    this.maxHours = options.maxHours;
+    this.explicitMode = options.explicitMode; // If true 123 = 1:23, 12345 = 1:23:45, else invalid.
+
+    this.handleDocumentClick = function (e) {
+      var self = e.data.scope;
+      // This condition was inspired by bootstrap-datepicker.
+      // The element the timepicker is invoked on is the input but it has a sibling for addon/button.
+      if (!(self.$element.parent().find(e.target).length ||
+          self.$widget.is(e.target) ||
+          self.$widget.find(e.target).length)) {
+        self.hideWidget();
+      }
+    };
+
+    this._init();
+  };
+
+  Timepicker.prototype = {
+
+    constructor: Timepicker,
+    _init: function() {
+      var self = this;
+
+      if (this.showWidgetOnAddonClick && (this.$element.parent().hasClass('input-group') && this.$element.parent().hasClass('bootstrap-timepicker'))) {
+        this.$element.parent('.input-group.bootstrap-timepicker').find('.input-group-addon').on({
+          'click.timepicker': $.proxy(this.showWidget, this)
+        });
+        this.$element.on({
+          'focus.timepicker': $.proxy(this.highlightUnit, this),
+          'click.timepicker': $.proxy(this.highlightUnit, this),
+          'keydown.timepicker': $.proxy(this.elementKeydown, this),
+          'blur.timepicker': $.proxy(this.blurElement, this),
+          'mousewheel.timepicker DOMMouseScroll.timepicker': $.proxy(this.mousewheel, this)
+        });
+      } else {
+        if (this.template) {
+          this.$element.on({
+            'focus.timepicker': $.proxy(this.showWidget, this),
+            'click.timepicker': $.proxy(this.showWidget, this),
+            'blur.timepicker': $.proxy(this.blurElement, this),
+            'mousewheel.timepicker DOMMouseScroll.timepicker': $.proxy(this.mousewheel, this)
+          });
+        } else {
+          this.$element.on({
+            'focus.timepicker': $.proxy(this.highlightUnit, this),
+            'click.timepicker': $.proxy(this.highlightUnit, this),
+            'keydown.timepicker': $.proxy(this.elementKeydown, this),
+            'blur.timepicker': $.proxy(this.blurElement, this),
+            'mousewheel.timepicker DOMMouseScroll.timepicker': $.proxy(this.mousewheel, this)
+          });
+        }
+      }
+
+      if (this.template !== false) {
+        this.$widget = $(this.getTemplate()).on('click', $.proxy(this.widgetClick, this));
+      } else {
+        this.$widget = false;
+      }
+
+      if (this.showInputs && this.$widget !== false) {
+        this.$widget.find('input').each(function() {
+          $(this).on({
+            'click.timepicker': function() { $(this).select(); },
+            'keydown.timepicker': $.proxy(self.widgetKeydown, self),
+            'keyup.timepicker': $.proxy(self.widgetKeyup, self)
+          });
+        });
+      }
+
+      this.setDefaultTime(this.defaultTime);
+    },
+
+    blurElement: function() {
+      this.highlightedUnit = null;
+      this.updateFromElementVal();
+    },
+
+    clear: function() {
+      this.hour = '';
+      this.minute = '';
+      this.second = '';
+      this.meridian = '';
+
+      this.$element.val('');
+    },
+
+    decrementHour: function() {
+      if (this.showMeridian) {
+        if (this.hour === 1) {
+          this.hour = 12;
+        } else if (this.hour === 12) {
+          this.hour--;
+
+          return this.toggleMeridian();
+        } else if (this.hour === 0) {
+          this.hour = 11;
+
+          return this.toggleMeridian();
+        } else {
+          this.hour--;
+        }
+      } else {
+        if (this.hour <= 0) {
+          this.hour = this.maxHours - 1;
+        } else {
+          this.hour--;
+        }
+      }
+    },
+
+    decrementMinute: function(step) {
+      var newVal;
+
+      if (step) {
+        newVal = this.minute - step;
+      } else {
+        newVal = this.minute - this.minuteStep;
+      }
+
+      if (newVal < 0) {
+        this.decrementHour();
+        this.minute = newVal + 60;
+      } else {
+        this.minute = newVal;
+      }
+    },
+
+    decrementSecond: function() {
+      var newVal = this.second - this.secondStep;
+
+      if (newVal < 0) {
+        this.decrementMinute(true);
+        this.second = newVal + 60;
+      } else {
+        this.second = newVal;
+      }
+    },
+
+    elementKeydown: function(e) {
+      switch (e.which) {
+      case 9: //tab
+        if (e.shiftKey) {
+          if (this.highlightedUnit === 'hour') {
+            this.hideWidget();
+            break;
+          }
+          this.highlightPrevUnit();
+        } else if ((this.showMeridian && this.highlightedUnit === 'meridian') || (this.showSeconds && this.highlightedUnit === 'second') || (!this.showMeridian && !this.showSeconds && this.highlightedUnit ==='minute')) {
+          this.hideWidget();
+          break;
+        } else {
+          this.highlightNextUnit();
+        }
+        e.preventDefault();
+        this.updateFromElementVal();
+        break;
+      case 27: // escape
+        this.updateFromElementVal();
+        break;
+      case 37: // left arrow
+        e.preventDefault();
+        this.highlightPrevUnit();
+        this.updateFromElementVal();
+        break;
+      case 38: // up arrow
+        e.preventDefault();
+        switch (this.highlightedUnit) {
+        case 'hour':
+          this.incrementHour();
+          this.highlightHour();
+          break;
+        case 'minute':
+          this.incrementMinute();
+          this.highlightMinute();
+          break;
+        case 'second':
+          this.incrementSecond();
+          this.highlightSecond();
+          break;
+        case 'meridian':
+          this.toggleMeridian();
+          this.highlightMeridian();
+          break;
+        }
+        this.update();
+        break;
+      case 39: // right arrow
+        e.preventDefault();
+        this.highlightNextUnit();
+        this.updateFromElementVal();
+        break;
+      case 40: // down arrow
+        e.preventDefault();
+        switch (this.highlightedUnit) {
+        case 'hour':
+          this.decrementHour();
+          this.highlightHour();
+          break;
+        case 'minute':
+          this.decrementMinute();
+          this.highlightMinute();
+          break;
+        case 'second':
+          this.decrementSecond();
+          this.highlightSecond();
+          break;
+        case 'meridian':
+          this.toggleMeridian();
+          this.highlightMeridian();
+          break;
+        }
+
+        this.update();
+        break;
+      }
+    },
+
+    getCursorPosition: function() {
+      var input = this.$element.get(0);
+
+      if ('selectionStart' in input) {// Standard-compliant browsers
+
+        return input.selectionStart;
+      } else if (document.selection) {// IE fix
+        input.focus();
+        var sel = document.selection.createRange(),
+          selLen = document.selection.createRange().text.length;
+
+        sel.moveStart('character', - input.value.length);
+
+        return sel.text.length - selLen;
+      }
+    },
+
+    getTemplate: function() {
+      var template,
+        hourTemplate,
+        minuteTemplate,
+        secondTemplate,
+        meridianTemplate,
+        templateContent;
+
+      if (this.showInputs) {
+        hourTemplate = '<input type="text" class="bootstrap-timepicker-hour" maxlength="2"/>';
+        minuteTemplate = '<input type="text" class="bootstrap-timepicker-minute" maxlength="2"/>';
+        secondTemplate = '<input type="text" class="bootstrap-timepicker-second" maxlength="2"/>';
+        meridianTemplate = '<input type="text" class="bootstrap-timepicker-meridian" maxlength="2"/>';
+      } else {
+        hourTemplate = '<span class="bootstrap-timepicker-hour"></span>';
+        minuteTemplate = '<span class="bootstrap-timepicker-minute"></span>';
+        secondTemplate = '<span class="bootstrap-timepicker-second"></span>';
+        meridianTemplate = '<span class="bootstrap-timepicker-meridian"></span>';
+      }
+
+      templateContent = '<table>'+
+         '<tr>'+
+           '<td><a href="#" data-action="incrementHour"><span class="'+ this.icons.up +'"></span></a></td>'+
+           '<td class="separator">&nbsp;</td>'+
+           '<td><a href="#" data-action="incrementMinute"><span class="'+ this.icons.up +'"></span></a></td>'+
+           (this.showSeconds ?
+             '<td class="separator">&nbsp;</td>'+
+             '<td><a href="#" data-action="incrementSecond"><span class="'+ this.icons.up +'"></span></a></td>'
+           : '') +
+           (this.showMeridian ?
+             '<td class="separator">&nbsp;</td>'+
+             '<td class="meridian-column"><a href="#" data-action="toggleMeridian"><span class="'+ this.icons.up +'"></span></a></td>'
+           : '') +
+         '</tr>'+
+         '<tr>'+
+           '<td>'+ hourTemplate +'</td> '+
+           '<td class="separator">:</td>'+
+           '<td>'+ minuteTemplate +'</td> '+
+           (this.showSeconds ?
+            '<td class="separator">:</td>'+
+            '<td>'+ secondTemplate +'</td>'
+           : '') +
+           (this.showMeridian ?
+            '<td class="separator">&nbsp;</td>'+
+            '<td>'+ meridianTemplate +'</td>'
+           : '') +
+         '</tr>'+
+         '<tr>'+
+           '<td><a href="#" data-action="decrementHour"><span class="'+ this.icons.down +'"></span></a></td>'+
+           '<td class="separator"></td>'+
+           '<td><a href="#" data-action="decrementMinute"><span class="'+ this.icons.down +'"></span></a></td>'+
+           (this.showSeconds ?
+            '<td class="separator">&nbsp;</td>'+
+            '<td><a href="#" data-action="decrementSecond"><span class="'+ this.icons.down +'"></span></a></td>'
+           : '') +
+           (this.showMeridian ?
+            '<td class="separator">&nbsp;</td>'+
+            '<td><a href="#" data-action="toggleMeridian"><span class="'+ this.icons.down +'"></span></a></td>'
+           : '') +
+         '</tr>'+
+       '</table>';
+
+      switch(this.template) {
+      case 'modal':
+        template = '<div class="bootstrap-timepicker-widget modal hide fade in" data-backdrop="'+ (this.modalBackdrop ? 'true' : 'false') +'">'+
+          '<div class="modal-header">'+
+            '<a href="#" class="close" data-dismiss="modal">&times;</a>'+
+            '<h3>Pick a Time</h3>'+
+          '</div>'+
+          '<div class="modal-content">'+
+            templateContent +
+          '</div>'+
+          '<div class="modal-footer">'+
+            '<a href="#" class="btn btn-primary" data-dismiss="modal">OK</a>'+
+          '</div>'+
+        '</div>';
+        break;
+      case 'dropdown':
+        template = '<div class="bootstrap-timepicker-widget dropdown-menu">'+ templateContent +'</div>';
+        break;
+      }
+
+      return template;
+    },
+
+    getTime: function() {
+      if (this.hour === '') {
+        return '';
+      }
+
+      return this.hour + ':' + (this.minute.toString().length === 1 ? '0' + this.minute : this.minute) + (this.showSeconds ? ':' + (this.second.toString().length === 1 ? '0' + this.second : this.second) : '') + (this.showMeridian ? ' ' + this.meridian : '');
+    },
+
+    hideWidget: function() {
+      if (this.isOpen === false) {
+        return;
+      }
+
+      this.$element.trigger({
+        'type': 'hide.timepicker',
+        'time': {
+          'value': this.getTime(),
+          'hours': this.hour,
+          'minutes': this.minute,
+          'seconds': this.second,
+          'meridian': this.meridian
+        }
+      });
+
+      if (this.template === 'modal' && this.$widget.modal) {
+        this.$widget.modal('hide');
+      } else {
+        this.$widget.removeClass('open');
+      }
+
+      $(document).off('mousedown.timepicker, touchend.timepicker', this.handleDocumentClick);
+
+      this.isOpen = false;
+      // show/hide approach taken by datepicker
+      this.$widget.detach();
+    },
+
+    highlightUnit: function() {
+      this.position = this.getCursorPosition();
+      if (this.position >= 0 && this.position <= 2) {
+        this.highlightHour();
+      } else if (this.position >= 3 && this.position <= 5) {
+        this.highlightMinute();
+      } else if (this.position >= 6 && this.position <= 8) {
+        if (this.showSeconds) {
+          this.highlightSecond();
+        } else {
+          this.highlightMeridian();
+        }
+      } else if (this.position >= 9 && this.position <= 11) {
+        this.highlightMeridian();
+      }
+    },
+
+    highlightNextUnit: function() {
+      switch (this.highlightedUnit) {
+      case 'hour':
+        this.highlightMinute();
+        break;
+      case 'minute':
+        if (this.showSeconds) {
+          this.highlightSecond();
+        } else if (this.showMeridian){
+          this.highlightMeridian();
+        } else {
+          this.highlightHour();
+        }
+        break;
+      case 'second':
+        if (this.showMeridian) {
+          this.highlightMeridian();
+        } else {
+          this.highlightHour();
+        }
+        break;
+      case 'meridian':
+        this.highlightHour();
+        break;
+      }
+    },
+
+    highlightPrevUnit: function() {
+      switch (this.highlightedUnit) {
+      case 'hour':
+        if(this.showMeridian){
+          this.highlightMeridian();
+        } else if (this.showSeconds) {
+          this.highlightSecond();
+        } else {
+          this.highlightMinute();
+        }
+        break;
+      case 'minute':
+        this.highlightHour();
+        break;
+      case 'second':
+        this.highlightMinute();
+        break;
+      case 'meridian':
+        if (this.showSeconds) {
+          this.highlightSecond();
+        } else {
+          this.highlightMinute();
+        }
+        break;
+      }
+    },
+
+    highlightHour: function() {
+      var $element = this.$element.get(0),
+          self = this;
+
+      this.highlightedUnit = 'hour';
+
+      if ($element.setSelectionRange) {
+        setTimeout(function() {
+          if (self.hour < 10) {
+            $element.setSelectionRange(0,1);
+          } else {
+            $element.setSelectionRange(0,2);
+          }
+        }, 0);
+      }
+    },
+
+    highlightMinute: function() {
+      var $element = this.$element.get(0),
+          self = this;
+
+      this.highlightedUnit = 'minute';
+
+      if ($element.setSelectionRange) {
+        setTimeout(function() {
+          if (self.hour < 10) {
+            $element.setSelectionRange(2,4);
+          } else {
+            $element.setSelectionRange(3,5);
+          }
+        }, 0);
+      }
+    },
+
+    highlightSecond: function() {
+      var $element = this.$element.get(0),
+          self = this;
+
+      this.highlightedUnit = 'second';
+
+      if ($element.setSelectionRange) {
+        setTimeout(function() {
+          if (self.hour < 10) {
+            $element.setSelectionRange(5,7);
+          } else {
+            $element.setSelectionRange(6,8);
+          }
+        }, 0);
+      }
+    },
+
+    highlightMeridian: function() {
+      var $element = this.$element.get(0),
+          self = this;
+
+      this.highlightedUnit = 'meridian';
+
+      if ($element.setSelectionRange) {
+        if (this.showSeconds) {
+          setTimeout(function() {
+            if (self.hour < 10) {
+              $element.setSelectionRange(8,10);
+            } else {
+              $element.setSelectionRange(9,11);
+            }
+          }, 0);
+        } else {
+          setTimeout(function() {
+            if (self.hour < 10) {
+              $element.setSelectionRange(5,7);
+            } else {
+              $element.setSelectionRange(6,8);
+            }
+          }, 0);
+        }
+      }
+    },
+
+    incrementHour: function() {
+      if (this.showMeridian) {
+        if (this.hour === 11) {
+          this.hour++;
+          return this.toggleMeridian();
+        } else if (this.hour === 12) {
+          this.hour = 0;
+        }
+      }
+      if (this.hour === this.maxHours - 1) {
+        this.hour = 0;
+
+        return;
+      }
+      this.hour++;
+    },
+
+    incrementMinute: function(step) {
+      var newVal;
+
+      if (step) {
+        newVal = this.minute + step;
+      } else {
+        newVal = this.minute + this.minuteStep - (this.minute % this.minuteStep);
+      }
+
+      if (newVal > 59) {
+        this.incrementHour();
+        this.minute = newVal - 60;
+      } else {
+        this.minute = newVal;
+      }
+    },
+
+    incrementSecond: function() {
+      var newVal = this.second + this.secondStep - (this.second % this.secondStep);
+
+      if (newVal > 59) {
+        this.incrementMinute(true);
+        this.second = newVal - 60;
+      } else {
+        this.second = newVal;
+      }
+    },
+
+    mousewheel: function(e) {
+      if (this.disableMousewheel) {
+        return;
+      }
+
+      e.preventDefault();
+      e.stopPropagation();
+
+      var delta = e.originalEvent.wheelDelta || -e.originalEvent.detail,
+          scrollTo = null;
+
+      if (e.type === 'mousewheel') {
+        scrollTo = (e.originalEvent.wheelDelta * -1);
+      }
+      else if (e.type === 'DOMMouseScroll') {
+        scrollTo = 40 * e.originalEvent.detail;
+      }
+
+      if (scrollTo) {
+        e.preventDefault();
+        $(this).scrollTop(scrollTo + $(this).scrollTop());
+      }
+
+      switch (this.highlightedUnit) {
+      case 'minute':
+        if (delta > 0) {
+          this.incrementMinute();
+        } else {
+          this.decrementMinute();
+        }
+        this.highlightMinute();
+        break;
+      case 'second':
+        if (delta > 0) {
+          this.incrementSecond();
+        } else {
+          this.decrementSecond();
+        }
+        this.highlightSecond();
+        break;
+      case 'meridian':
+        this.toggleMeridian();
+        this.highlightMeridian();
+        break;
+      default:
+        if (delta > 0) {
+          this.incrementHour();
+        } else {
+          this.decrementHour();
+        }
+        this.highlightHour();
+        break;
+      }
+
+      return false;
+    },
+
+    /**
+     * Given a segment value like 43, will round and snap the segment
+     * to the nearest "step", like 45 if step is 15. Segment will
+     * "overflow" to 0 if it's larger than 59 or would otherwise
+     * round up to 60.
+     */
+    changeToNearestStep: function (segment, step) {
+      if (segment % step === 0) {
+        return segment;
+      }
+      if (Math.round((segment % step) / step)) {
+        return (segment + (step - segment % step)) % 60;
+      } else {
+        return segment - segment % step;
+      }
+    },
+
+    // This method was adapted from bootstrap-datepicker.
+    place : function() {
+      if (this.isInline) {
+        return;
+      }
+      var widgetWidth = this.$widget.outerWidth(), widgetHeight = this.$widget.outerHeight(), visualPadding = 10, windowWidth =
+        $(window).width(), windowHeight = $(window).height(), scrollTop = $(window).scrollTop();
+
+      var zIndex = parseInt(this.$element.parents().filter(function() { return $(this).css('z-index') !== 'auto'; }).first().css('z-index'), 10) + 10;
+      var offset = this.component ? this.component.parent().offset() : this.$element.offset();
+      var height = this.component ? this.component.outerHeight(true) : this.$element.outerHeight(false);
+      var width = this.component ? this.component.outerWidth(true) : this.$element.outerWidth(false);
+      var left = offset.left, top = offset.top;
+
+      this.$widget.removeClass('timepicker-orient-top timepicker-orient-bottom timepicker-orient-right timepicker-orient-left');
+
+      if (this.orientation.x !== 'auto') {
+        this.$widget.addClass('timepicker-orient-' + this.orientation.x);
+        if (this.orientation.x === 'right') {
+          left -= widgetWidth - width;
+        }
+      } else{
+        // auto x orientation is best-placement: if it crosses a window edge, fudge it sideways
+        // Default to left
+        this.$widget.addClass('timepicker-orient-left');
+        if (offset.left < 0) {
+          left -= offset.left - visualPadding;
+        } else if (offset.left + widgetWidth > windowWidth) {
+          left = windowWidth - widgetWidth - visualPadding;
+        }
+      }
+      // auto y orientation is best-situation: top or bottom, no fudging, decision based on which shows more of the widget
+      var yorient = this.orientation.y, topOverflow, bottomOverflow;
+      if (yorient === 'auto') {
+        topOverflow = -scrollTop + offset.top - widgetHeight;
+        bottomOverflow = scrollTop + windowHeight - (offset.top + height + widgetHeight);
+        if (Math.max(topOverflow, bottomOverflow) === bottomOverflow) {
+          yorient = 'top';
+        } else {
+          yorient = 'bottom';
+        }
+      }
+      this.$widget.addClass('timepicker-orient-' + yorient);
+      if (yorient === 'top'){
+        top += height;
+      } else{
+        top -= widgetHeight + parseInt(this.$widget.css('padding-top'), 10);
+      }
+
+      this.$widget.css({
+        top : top,
+        left : left,
+        zIndex : zIndex
+      });
+    },
+
+    remove: function() {
+      $('document').off('.timepicker');
+      if (this.$widget) {
+        this.$widget.remove();
+      }
+      delete this.$element.data().timepicker;
+    },
+
+    setDefaultTime: function(defaultTime) {
+      if (!this.$element.val()) {
+        if (defaultTime === 'current') {
+          var dTime = new Date(),
+            hours = dTime.getHours(),
+            minutes = dTime.getMinutes(),
+            seconds = dTime.getSeconds(),
+            meridian = 'AM';
+
+          if (seconds !== 0) {
+            seconds = Math.ceil(dTime.getSeconds() / this.secondStep) * this.secondStep;
+            if (seconds === 60) {
+              minutes += 1;
+              seconds = 0;
+            }
+          }
+
+          if (minutes !== 0) {
+            minutes = Math.ceil(dTime.getMinutes() / this.minuteStep) * this.minuteStep;
+            if (minutes === 60) {
+              hours += 1;
+              minutes = 0;
+            }
+          }
+
+          if (this.showMeridian) {
+            if (hours === 0) {
+              hours = 12;
+            } else if (hours >= 12) {
+              if (hours > 12) {
+                hours = hours - 12;
+              }
+              meridian = 'PM';
+            } else {
+              meridian = 'AM';
+            }
+          }
+
+          this.hour = hours;
+          this.minute = minutes;
+          this.second = seconds;
+          this.meridian = meridian;
+
+          this.update();
+
+        } else if (defaultTime === false) {
+          this.hour = 0;
+          this.minute = 0;
+          this.second = 0;
+          this.meridian = 'AM';
+        } else {
+          this.setTime(defaultTime);
+        }
+      } else {
+        this.updateFromElementVal();
+      }
+    },
+
+    setTime: function(time, ignoreWidget) {
+      if (!time) {
+        this.clear();
+        return;
+      }
+
+      var timeMode,
+          timeArray,
+          hour,
+          minute,
+          second,
+          meridian;
+
+      if (typeof time === 'object' && time.getMonth){
+        // this is a date object
+        hour    = time.getHours();
+        minute  = time.getMinutes();
+        second  = time.getSeconds();
+
+        if (this.showMeridian){
+          meridian = 'AM';
+          if (hour > 12){
+            meridian = 'PM';
+            hour = hour % 12;
+          }
+
+          if (hour === 12){
+            meridian = 'PM';
+          }
+        }
+      } else {
+        timeMode = ((/a/i).test(time) ? 1 : 0) + ((/p/i).test(time) ? 2 : 0); // 0 = none, 1 = AM, 2 = PM, 3 = BOTH.
+        if (timeMode > 2) { // If both are present, fail.
+          this.clear();
+          return;
+        }
+
+        timeArray = time.replace(/[^0-9\:]/g, '').split(':');
+
+        hour = timeArray[0] ? timeArray[0].toString() : timeArray.toString();
+
+        if(this.explicitMode && hour.length > 2 && (hour.length % 2) !== 0 ) {
+          this.clear();
+          return;
+        }
+
+        minute = timeArray[1] ? timeArray[1].toString() : '';
+        second = timeArray[2] ? timeArray[2].toString() : '';
+
+        // adaptive time parsing
+        if (hour.length > 4) {
+          second = hour.slice(-2);
+          hour = hour.slice(0, -2);
+        }
+
+        if (hour.length > 2) {
+          minute = hour.slice(-2);
+          hour = hour.slice(0, -2);
+        }
+
+        if (minute.length > 2) {
+          second = minute.slice(-2);
+          minute = minute.slice(0, -2);
+        }
+
+        hour = parseInt(hour, 10);
+        minute = parseInt(minute, 10);
+        second = parseInt(second, 10);
+
+        if (isNaN(hour)) {
+          hour = 0;
+        }
+        if (isNaN(minute)) {
+          minute = 0;
+        }
+        if (isNaN(second)) {
+          second = 0;
+        }
+
+        // Adjust the time based upon unit boundary.
+        // NOTE: Negatives will never occur due to time.replace() above.
+        if (second > 59) {
+          second = 59;
+        }
+
+        if (minute > 59) {
+          minute = 59;
+        }
+
+        if (hour >= this.maxHours) {
+          // No day/date handling.
+          hour = this.maxHours - 1;
+        }
+
+        if (this.showMeridian) {
+          if (hour > 12) {
+            // Force PM.
+            timeMode = 2;
+            hour -= 12;
+          }
+          if (!timeMode) {
+            timeMode = 1;
+          }
+          if (hour === 0) {
+            hour = 12; // AM or PM, reset to 12.  0 AM = 12 AM.  0 PM = 12 PM, etc.
+          }
+          meridian = timeMode === 1 ? 'AM' : 'PM';
+        } else if (hour < 12 && timeMode === 2) {
+          hour += 12;
+        } else {
+          if (hour >= this.maxHours) {
+            hour = this.maxHours - 1;
+          } else if ((hour < 0) || (hour === 12 && timeMode === 1)){
+            hour = 0;
+          }
+        }
+      }
+
+      this.hour = hour;
+      if (this.snapToStep) {
+        this.minute = this.changeToNearestStep(minute, this.minuteStep);
+        this.second = this.changeToNearestStep(second, this.secondStep);
+      } else {
+        this.minute = minute;
+        this.second = second;
+      }
+      this.meridian = meridian;
+
+      this.update(ignoreWidget);
+    },
+
+    showWidget: function() {
+      if (this.isOpen) {
+        return;
+      }
+
+      if (this.$element.is(':disabled')) {
+        return;
+      }
+
+      // show/hide approach taken by datepicker
+      this.$widget.appendTo(this.appendWidgetTo);
+      $(document).on('mousedown.timepicker, touchend.timepicker', {scope: this}, this.handleDocumentClick);
+
+      this.$element.trigger({
+        'type': 'show.timepicker',
+        'time': {
+          'value': this.getTime(),
+          'hours': this.hour,
+          'minutes': this.minute,
+          'seconds': this.second,
+          'meridian': this.meridian
+        }
+      });
+
+      this.place();
+      if (this.disableFocus) {
+        this.$element.blur();
+      }
+
+      // widget shouldn't be empty on open
+      if (this.hour === '') {
+        if (this.defaultTime) {
+          this.setDefaultTime(this.defaultTime);
+        } else {
+          this.setTime('0:0:0');
+        }
+      }
+
+      if (this.template === 'modal' && this.$widget.modal) {
+        this.$widget.modal('show').on('hidden', $.proxy(this.hideWidget, this));
+      } else {
+        if (this.isOpen === false) {
+          this.$widget.addClass('open');
+        }
+      }
+
+      this.isOpen = true;
+    },
+
+    toggleMeridian: function() {
+      this.meridian = this.meridian === 'AM' ? 'PM' : 'AM';
+    },
+
+    update: function(ignoreWidget) {
+      this.updateElement();
+      if (!ignoreWidget) {
+        this.updateWidget();
+      }
+
+      this.$element.trigger({
+        'type': 'changeTime.timepicker',
+        'time': {
+          'value': this.getTime(),
+          'hours': this.hour,
+          'minutes': this.minute,
+          'seconds': this.second,
+          'meridian': this.meridian
+        }
+      });
+    },
+
+    updateElement: function() {
+      this.$element.val(this.getTime()).change();
+    },
+
+    updateFromElementVal: function() {
+      this.setTime(this.$element.val());
+    },
+
+    updateWidget: function() {
+      if (this.$widget === false) {
+        return;
+      }
+
+      var hour = this.hour,
+          minute = this.minute.toString().length === 1 ? '0' + this.minute : this.minute,
+          second = this.second.toString().length === 1 ? '0' + this.second : this.second;
+
+      if (this.showInputs) {
+        this.$widget.find('input.bootstrap-timepicker-hour').val(hour);
+        this.$widget.find('input.bootstrap-timepicker-minute').val(minute);
+
+        if (this.showSeconds) {
+          this.$widget.find('input.bootstrap-timepicker-second').val(second);
+        }
+        if (this.showMeridian) {
+          this.$widget.find('input.bootstrap-timepicker-meridian').val(this.meridian);
+        }
+      } else {
+        this.$widget.find('span.bootstrap-timepicker-hour').text(hour);
+        this.$widget.find('span.bootstrap-timepicker-minute').text(minute);
+
+        if (this.showSeconds) {
+          this.$widget.find('span.bootstrap-timepicker-second').text(second);
+        }
+        if (this.showMeridian) {
+          this.$widget.find('span.bootstrap-timepicker-meridian').text(this.meridian);
+        }
+      }
+    },
+
+    updateFromWidgetInputs: function() {
+      if (this.$widget === false) {
+        return;
+      }
+
+      var t = this.$widget.find('input.bootstrap-timepicker-hour').val() + ':' +
+              this.$widget.find('input.bootstrap-timepicker-minute').val() +
+              (this.showSeconds ? ':' + this.$widget.find('input.bootstrap-timepicker-second').val() : '') +
+              (this.showMeridian ? this.$widget.find('input.bootstrap-timepicker-meridian').val() : '')
+      ;
+
+      this.setTime(t, true);
+    },
+
+    widgetClick: function(e) {
+      e.stopPropagation();
+      e.preventDefault();
+
+      var $input = $(e.target),
+          action = $input.closest('a').data('action');
+
+      if (action) {
+        this[action]();
+      }
+      this.update();
+
+      if ($input.is('input')) {
+        $input.get(0).setSelectionRange(0,2);
+      }
+    },
+
+    widgetKeydown: function(e) {
+      var $input = $(e.target),
+          name = $input.attr('class').replace('bootstrap-timepicker-', '');
+
+      switch (e.which) {
+      case 9: //tab
+        if (e.shiftKey) {
+          if (name === 'hour') {
+            return this.hideWidget();
+          }
+        } else if ((this.showMeridian && name === 'meridian') || (this.showSeconds && name === 'second') || (!this.showMeridian && !this.showSeconds && name === 'minute')) {
+          return this.hideWidget();
+        }
+        break;
+      case 27: // escape
+        this.hideWidget();
+        break;
+      case 38: // up arrow
+        e.preventDefault();
+        switch (name) {
+        case 'hour':
+          this.incrementHour();
+          break;
+        case 'minute':
+          this.incrementMinute();
+          break;
+        case 'second':
+          this.incrementSecond();
+          break;
+        case 'meridian':
+          this.toggleMeridian();
+          break;
+        }
+        this.setTime(this.getTime());
+        $input.get(0).setSelectionRange(0,2);
+        break;
+      case 40: // down arrow
+        e.preventDefault();
+        switch (name) {
+        case 'hour':
+          this.decrementHour();
+          break;
+        case 'minute':
+          this.decrementMinute();
+          break;
+        case 'second':
+          this.decrementSecond();
+          break;
+        case 'meridian':
+          this.toggleMeridian();
+          break;
+        }
+        this.setTime(this.getTime());
+        $input.get(0).setSelectionRange(0,2);
+        break;
+      }
+    },
+
+    widgetKeyup: function(e) {
+      if ((e.which === 65) || (e.which === 77) || (e.which === 80) || (e.which === 46) || (e.which === 8) || (e.which >= 48 && e.which <= 57) || (e.which >= 96 && e.which <= 105)) {
+        this.updateFromWidgetInputs();
+      }
+    }
+  };
+
+  //TIMEPICKER PLUGIN DEFINITION
+  $.fn.timepicker = function(option) {
+    var args = Array.apply(null, arguments);
+    args.shift();
+    return this.each(function() {
+      var $this = $(this),
+        data = $this.data('timepicker'),
+        options = typeof option === 'object' && option;
+
+      if (!data) {
+        $this.data('timepicker', (data = new Timepicker(this, $.extend({}, $.fn.timepicker.defaults, options, $(this).data()))));
+      }
+
+      if (typeof option === 'string') {
+        data[option].apply(data, args);
+      }
+    });
+  };
+
+  $.fn.timepicker.defaults = {
+    defaultTime: 'current',
+    disableFocus: false,
+    disableMousewheel: false,
+    isOpen: false,
+    minuteStep: 15,
+    modalBackdrop: false,
+    orientation: { x: 'auto', y: 'auto'},
+    secondStep: 15,
+    snapToStep: false,
+    showSeconds: false,
+    showInputs: true,
+    showMeridian: true,
+    template: 'dropdown',
+    appendWidgetTo: 'body',
+    showWidgetOnAddonClick: true,
+    icons: {
+      up: 'glyphicon glyphicon-chevron-up',
+      down: 'glyphicon glyphicon-chevron-down'
+    },
+    maxHours: 24,
+    explicitMode: false
+  };
+
+  $.fn.timepicker.Constructor = Timepicker;
+
+  $(document).on(
+    'focus.timepicker.data-api click.timepicker.data-api',
+    '[data-provide="timepicker"]',
+    function(e){
+      var $this = $(this);
+      if ($this.data('timepicker')) {
+        return;
+      }
+      e.preventDefault();
+      // component click requires us to explicitly show it
+      $this.timepicker();
+    }
+  );
+
+})(jQuery, window, document);

+ 308 - 0
src/components/LeafletMap/LPlayback/example_2.css

@@ -0,0 +1,308 @@
+.lp .nav {
+  margin-left: 0;
+  margin-bottom: 20px;
+  list-style: none;
+}
+.lp ul, ol {
+  padding: 0;
+  margin: 0 0 10px 25px;
+}
+
+.lp .navbar .nav {
+  position: relative;
+  left: 0;
+  display: block;
+  float: left;
+  margin: 0 10px 0 0;
+}
+
+.lp .navbar .nav>li{
+  float: left;
+}
+
+.lp .dropup,
+.lp .dropdown{
+  position: relative;
+}
+li {
+  line-height: 20px;
+}
+
+.lp .navbar .nav>li>a{
+  float: none;
+  padding: 10px 15px 10px;
+  color: #777777;
+  text-decoration: none;
+  text-shadow: 0 1px 0 #ffffff;
+}
+
+.lp .nav>li>a {
+  display: block;
+}
+
+.lp .dropup .dropdown-menu,
+.lp .navbar-fixed-bottom .dropdown .dropdown-menu {
+  top: auto;
+  bottom: 100%;
+  margin-bottom: 1px;
+}
+
+.lp .dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: 1000;
+  display: none;
+  float: left;
+  min-width: 160px;
+  padding: 5px 0;
+  margin: 2px 0 0;
+  list-style: none;
+  background-color: #ffffff;
+  border: 1px solid #ccc;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  *border-right-width: 2px;
+  *border-bottom-width: 2px;
+  -webkit-border-radius: 6px;
+  -moz-border-radius: 6px;
+  border-radius: 6px;
+  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+  -webkit-background-clip: padding-box;
+  -moz-background-clip: padding;
+  background-clip: padding-box;
+}
+
+.lp .navbar .nav.pull-right {
+  float: right;
+  margin-right: 0;
+}
+
+/* from jquery UI */
+  
+
+.leaflet-playback-control{
+  position: absolute;
+  width: 100%;
+  bottom: 0;
+  z-index: 700;
+}
+
+footer.lp {
+  position: fixed;
+  right: 0;
+  left: 0;
+  bottom: 10px;
+}
+
+.lp .transport {
+  margin: 0 auto;
+  width:768px;
+}
+
+.lp .navbar {
+  margin-bottom: 0;
+  overflow: visible;
+  justify-content: center;
+}
+
+.lp .navbar-inner {
+  min-height: 40px;
+  padding-right: 0;
+  padding-left: 0;
+  background-color: #fafafa;
+  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
+    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
+    background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
+    background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
+    background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
+  background-repeat: repeat-x;
+  border: 1px solid #d4d4d4;
+  -webkit-border-radius: 4px;
+  -moz-border-radius: 4px;
+  border-radius: 4px;
+  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
+  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
+  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
+}
+
+.lp .navbar-inner .nav{
+  margin: 0;
+  padding: 0;
+  position: relative;
+  left: 0;
+  display: block;
+  float: left;
+  list-style: none;
+}
+
+.lp #play-pause {
+  /* width: 18px; */
+}
+
+.lp #speed-btn {
+  width: 65px;
+}
+
+.lp .ui-slider {
+  margin: 13px;
+}
+
+.lp #time-slider {
+  border-bottom-right-radius: 4px;
+
+  border-bottom-left-radius: 4px;
+  border-top-right-radius: 4px;
+  border-top-left-radius: 4px;
+  border: 1px solid #aaaaaa;
+  background: #ffffff 50% 50% repeat-x;
+  color: #222222;
+  font-family: Verdana,Arial,sans-serif;
+  font-size: 1.1em;
+  height: .8em;
+  position: relative;
+  text-align: left;
+  width:370px;
+  margin: 13px;
+}
+
+.lp .time-slider-handle{
+  border: 1px solid #d3d3d3;
+  background: #e6e6e6 50% 50% repeat-x;
+  font-weight: normal;
+  color: #555555;
+
+  top: -.3em;
+  margin-left: -.6em;
+  position: absolute;
+  z-index: 2;
+  width: 1.2em;
+  height: 1.2em;
+  cursor: default;
+  color: #222222;
+  border-bottom-right-radius: 4px;
+  border-bottom-left-radius: 4px;
+  border-top-right-radius: 4px;
+  border-top-left-radius: 4px;
+}
+
+.lp #calendar {
+  margin: 5px;
+}
+
+.leaflet-control-layers-list {
+  margin-bottom: 0;
+}
+
+.lp .speed-menu {
+  min-width: 60px;
+}
+
+.lp .dropdown-menu {
+  padding: 5px;
+  text-align: center;
+}
+
+.lp #speed-slider {
+  margin-left: auto;
+  margin-right: auto;
+}
+
+.lp .navbar .btn,
+.lp .navbar .btn-group {
+  margin-top: 0;
+  padding: 0;
+}
+
+.lp .navbar .nav > li > a.clock {
+  padding: 0 3px 0 3px;
+  text-align: center;
+  margin-left:4px;
+  margin-right:4px;
+}
+
+.lp li.ctrl {
+  background-color: #f5f5f5;
+  *background-color: #e6e6e6;
+  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
+  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
+  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
+  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
+  background-image: linear-gradient(top, #ffffff, #e6e6e6);
+  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
+  background-repeat: repeat-x;
+  border-right: 1px solid #d4d4d4;
+
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.lp .pull-right li.ctrl {
+  border-right: 0;
+  border-left: 1px solid #d4d4d4;
+}
+
+.lp li.ctrl:hover {
+  color: #333333;
+  text-decoration: none;
+  background-color: #e6e6e6;
+  *background-color: #d9d9d9;
+  /* Buttons in IE7 don't get borders, so darken on hover */
+
+  background-position: 0 -15px;
+  -webkit-transition: background-position 0.1s linear;
+     -moz-transition: background-position 0.1s linear;
+      -ms-transition: background-position 0.1s linear;
+       -o-transition: background-position 0.1s linear;
+          transition: background-position 0.1s linear;
+}
+
+/*.lp li.ctrl:hover a {
+  color: #a9ff00;
+}*/
+
+.lp li.ctrl:active {
+  background-color: #e6e6e6;
+  background-color: #d9d9d9 \9;
+  background-image: none;
+  outline: 0;
+  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+/*Bootstrap interfering with leaflet*/
+input {
+  vertical-align: baseline;
+}
+
+.lp label {
+  display: block;
+  margin-bottom: 5px;
+  font-size: 14px;
+  line-height: 20px;
+  font-weight: bold;
+  cursor: pointer;
+}
+
+
+
+
+.navbar .nav > li > .dropdown-menu:before,
+.bootstrap-timepicker-widget.dropdown-menu:before {
+  top: auto;
+  bottom: -7px;
+  border-top: 7px solid #ccc;
+  border-bottom: 0;
+  border-top-color: rgba(0, 0, 0, 0.2);
+}
+
+.navbar .nav > li > .dropdown-menu:after,
+.bootstrap-timepicker-widget.dropdown-menu:after {
+  top: auto;
+  bottom: -6px;
+  border-top: 6px solid #ffffff;
+  border-bottom: 0;
+}

+ 10337 - 0
src/components/LeafletMap/LPlayback/jquery-1.11.0.js

@@ -0,0 +1,10337 @@
+/*!
+ * jQuery JavaScript Library v1.11.0
+ * http://jquery.com/
+ *
+ * Includes Sizzle.js
+ * http://sizzlejs.com/
+ *
+ * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
+ * Released under the MIT license
+ * http://jquery.org/license
+ *
+ * Date: 2014-01-23T21:02Z
+ */
+
+(function( global, factory ) {
+
+	if ( typeof module === "object" && typeof module.exports === "object" ) {
+		// For CommonJS and CommonJS-like environments where a proper window is present,
+		// execute the factory and get jQuery
+		// For environments that do not inherently posses a window with a document
+		// (such as Node.js), expose a jQuery-making factory as module.exports
+		// This accentuates the need for the creation of a real window
+		// e.g. var jQuery = require("jquery")(window);
+		// See ticket #14549 for more info
+		module.exports = global.document ?
+			factory( global, true ) :
+			function( w ) {
+				if ( !w.document ) {
+					throw new Error( "jQuery requires a window with a document" );
+				}
+				return factory( w );
+			};
+	} else {
+		factory( global );
+	}
+
+// Pass this if window is not defined yet
+}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Can't do this because several apps including ASP.NET trace
+// the stack via arguments.caller.callee and Firefox dies if
+// you try to trace through "use strict" call chains. (#13335)
+// Support: Firefox 18+
+//
+
+var deletedIds = [];
+
+var slice = deletedIds.slice;
+
+var concat = deletedIds.concat;
+
+var push = deletedIds.push;
+
+var indexOf = deletedIds.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var trim = "".trim;
+
+var support = {};
+
+
+
+var
+	version = "1.11.0",
+
+	// Define a local copy of jQuery
+	jQuery = function( selector, context ) {
+		// The jQuery object is actually just the init constructor 'enhanced'
+		// Need init if jQuery is called (just allow error to be thrown if not included)
+		return new jQuery.fn.init( selector, context );
+	},
+
+	// Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)
+	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
+
+	// Matches dashed string for camelizing
+	rmsPrefix = /^-ms-/,
+	rdashAlpha = /-([\da-z])/gi,
+
+	// Used by jQuery.camelCase as callback to replace()
+	fcamelCase = function( all, letter ) {
+		return letter.toUpperCase();
+	};
+
+jQuery.fn = jQuery.prototype = {
+	// The current version of jQuery being used
+	jquery: version,
+
+	constructor: jQuery,
+
+	// Start with an empty selector
+	selector: "",
+
+	// The default length of a jQuery object is 0
+	length: 0,
+
+	toArray: function() {
+		return slice.call( this );
+	},
+
+	// Get the Nth element in the matched element set OR
+	// Get the whole matched element set as a clean array
+	get: function( num ) {
+		return num != null ?
+
+			// Return a 'clean' array
+			( num < 0 ? this[ num + this.length ] : this[ num ] ) :
+
+			// Return just the object
+			slice.call( this );
+	},
+
+	// Take an array of elements and push it onto the stack
+	// (returning the new matched element set)
+	pushStack: function( elems ) {
+
+		// Build a new jQuery matched element set
+		var ret = jQuery.merge( this.constructor(), elems );
+
+		// Add the old object onto the stack (as a reference)
+		ret.prevObject = this;
+		ret.context = this.context;
+
+		// Return the newly-formed element set
+		return ret;
+	},
+
+	// Execute a callback for every element in the matched set.
+	// (You can seed the arguments with an array of args, but this is
+	// only used internally.)
+	each: function( callback, args ) {
+		return jQuery.each( this, callback, args );
+	},
+
+	map: function( callback ) {
+		return this.pushStack( jQuery.map(this, function( elem, i ) {
+			return callback.call( elem, i, elem );
+		}));
+	},
+
+	slice: function() {
+		return this.pushStack( slice.apply( this, arguments ) );
+	},
+
+	first: function() {
+		return this.eq( 0 );
+	},
+
+	last: function() {
+		return this.eq( -1 );
+	},
+
+	eq: function( i ) {
+		var len = this.length,
+			j = +i + ( i < 0 ? len : 0 );
+		return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
+	},
+
+	end: function() {
+		return this.prevObject || this.constructor(null);
+	},
+
+	// For internal use only.
+	// Behaves like an Array's method, not like a jQuery method.
+	push: push,
+	sort: deletedIds.sort,
+	splice: deletedIds.splice
+};
+
+jQuery.extend = jQuery.fn.extend = function() {
+	var src, copyIsArray, copy, name, options, clone,
+		target = arguments[0] || {},
+		i = 1,
+		length = arguments.length,
+		deep = false;
+
+	// Handle a deep copy situation
+	if ( typeof target === "boolean" ) {
+		deep = target;
+
+		// skip the boolean and the target
+		target = arguments[ i ] || {};
+		i++;
+	}
+
+	// Handle case when target is a string or something (possible in deep copy)
+	if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
+		target = {};
+	}
+
+	// extend jQuery itself if only one argument is passed
+	if ( i === length ) {
+		target = this;
+		i--;
+	}
+
+	for ( ; i < length; i++ ) {
+		// Only deal with non-null/undefined values
+		if ( (options = arguments[ i ]) != null ) {
+			// Extend the base object
+			for ( name in options ) {
+				src = target[ name ];
+				copy = options[ name ];
+
+				// Prevent never-ending loop
+				if ( target === copy ) {
+					continue;
+				}
+
+				// Recurse if we're merging plain objects or arrays
+				if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
+					if ( copyIsArray ) {
+						copyIsArray = false;
+						clone = src && jQuery.isArray(src) ? src : [];
+
+					} else {
+						clone = src && jQuery.isPlainObject(src) ? src : {};
+					}
+
+					// Never move original objects, clone them
+					target[ name ] = jQuery.extend( deep, clone, copy );
+
+				// Don't bring in undefined values
+				} else if ( copy !== undefined ) {
+					target[ name ] = copy;
+				}
+			}
+		}
+	}
+
+	// Return the modified object
+	return target;
+};
+
+jQuery.extend({
+	// Unique for each copy of jQuery on the page
+	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
+
+	// Assume jQuery is ready without the ready module
+	isReady: true,
+
+	error: function( msg ) {
+		throw new Error( msg );
+	},
+
+	noop: function() {},
+
+	// See test/unit/core.js for details concerning isFunction.
+	// Since version 1.3, DOM methods and functions like alert
+	// aren't supported. They return false on IE (#2968).
+	isFunction: function( obj ) {
+		return jQuery.type(obj) === "function";
+	},
+
+	isArray: Array.isArray || function( obj ) {
+		return jQuery.type(obj) === "array";
+	},
+
+	isWindow: function( obj ) {
+		/* jshint eqeqeq: false */
+		return obj != null && obj == obj.window;
+	},
+
+	isNumeric: function( obj ) {
+		// parseFloat NaNs numeric-cast false positives (null|true|false|"")
+		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
+		// subtraction forces infinities to NaN
+		return obj - parseFloat( obj ) >= 0;
+	},
+
+	isEmptyObject: function( obj ) {
+		var name;
+		for ( name in obj ) {
+			return false;
+		}
+		return true;
+	},
+
+	isPlainObject: function( obj ) {
+		var key;
+
+		// Must be an Object.
+		// Because of IE, we also have to check the presence of the constructor property.
+		// Make sure that DOM nodes and window objects don't pass through, as well
+		if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
+			return false;
+		}
+
+		try {
+			// Not own constructor property must be Object
+			if ( obj.constructor &&
+				!hasOwn.call(obj, "constructor") &&
+				!hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
+				return false;
+			}
+		} catch ( e ) {
+			// IE8,9 Will throw exceptions on certain host objects #9897
+			return false;
+		}
+
+		// Support: IE<9
+		// Handle iteration over inherited properties before own properties.
+		if ( support.ownLast ) {
+			for ( key in obj ) {
+				return hasOwn.call( obj, key );
+			}
+		}
+
+		// Own properties are enumerated firstly, so to speed up,
+		// if last one is own, then all properties are own.
+		for ( key in obj ) {}
+
+		return key === undefined || hasOwn.call( obj, key );
+	},
+
+	type: function( obj ) {
+		if ( obj == null ) {
+			return obj + "";
+		}
+		return typeof obj === "object" || typeof obj === "function" ?
+			class2type[ toString.call(obj) ] || "object" :
+			typeof obj;
+	},
+
+	// Evaluates a script in a global context
+	// Workarounds based on findings by Jim Driscoll
+	// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
+	globalEval: function( data ) {
+		if ( data && jQuery.trim( data ) ) {
+			// We use execScript on Internet Explorer
+			// We use an anonymous function so that context is window
+			// rather than jQuery in Firefox
+			( window.execScript || function( data ) {
+				window[ "eval" ].call( window, data );
+			} )( data );
+		}
+	},
+
+	// Convert dashed to camelCase; used by the css and data modules
+	// Microsoft forgot to hump their vendor prefix (#9572)
+	camelCase: function( string ) {
+		return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
+	},
+
+	nodeName: function( elem, name ) {
+		return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
+	},
+
+	// args is for internal usage only
+	each: function( obj, callback, args ) {
+		var value,
+			i = 0,
+			length = obj.length,
+			isArray = isArraylike( obj );
+
+		if ( args ) {
+			if ( isArray ) {
+				for ( ; i < length; i++ ) {
+					value = callback.apply( obj[ i ], args );
+
+					if ( value === false ) {
+						break;
+					}
+				}
+			} else {
+				for ( i in obj ) {
+					value = callback.apply( obj[ i ], args );
+
+					if ( value === false ) {
+						break;
+					}
+				}
+			}
+
+		// A special, fast, case for the most common use of each
+		} else {
+			if ( isArray ) {
+				for ( ; i < length; i++ ) {
+					value = callback.call( obj[ i ], i, obj[ i ] );
+
+					if ( value === false ) {
+						break;
+					}
+				}
+			} else {
+				for ( i in obj ) {
+					value = callback.call( obj[ i ], i, obj[ i ] );
+
+					if ( value === false ) {
+						break;
+					}
+				}
+			}
+		}
+
+		return obj;
+	},
+
+	// Use native String.trim function wherever possible
+	trim: trim && !trim.call("\uFEFF\xA0") ?
+		function( text ) {
+			return text == null ?
+				"" :
+				trim.call( text );
+		} :
+
+		// Otherwise use our own trimming functionality
+		function( text ) {
+			return text == null ?
+				"" :
+				( text + "" ).replace( rtrim, "" );
+		},
+
+	// results is for internal usage only
+	makeArray: function( arr, results ) {
+		var ret = results || [];
+
+		if ( arr != null ) {
+			if ( isArraylike( Object(arr) ) ) {
+				jQuery.merge( ret,
+					typeof arr === "string" ?
+					[ arr ] : arr
+				);
+			} else {
+				push.call( ret, arr );
+			}
+		}
+
+		return ret;
+	},
+
+	inArray: function( elem, arr, i ) {
+		var len;
+
+		if ( arr ) {
+			if ( indexOf ) {
+				return indexOf.call( arr, elem, i );
+			}
+
+			len = arr.length;
+			i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
+
+			for ( ; i < len; i++ ) {
+				// Skip accessing in sparse arrays
+				if ( i in arr && arr[ i ] === elem ) {
+					return i;
+				}
+			}
+		}
+
+		return -1;
+	},
+
+	merge: function( first, second ) {
+		var len = +second.length,
+			j = 0,
+			i = first.length;
+
+		while ( j < len ) {
+			first[ i++ ] = second[ j++ ];
+		}
+
+		// Support: IE<9
+		// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)
+		if ( len !== len ) {
+			while ( second[j] !== undefined ) {
+				first[ i++ ] = second[ j++ ];
+			}
+		}
+
+		first.length = i;
+
+		return first;
+	},
+
+	grep: function( elems, callback, invert ) {
+		var callbackInverse,
+			matches = [],
+			i = 0,
+			length = elems.length,
+			callbackExpect = !invert;
+
+		// Go through the array, only saving the items
+		// that pass the validator function
+		for ( ; i < length; i++ ) {
+			callbackInverse = !callback( elems[ i ], i );
+			if ( callbackInverse !== callbackExpect ) {
+				matches.push( elems[ i ] );
+			}
+		}
+
+		return matches;
+	},
+
+	// arg is for internal usage only
+	map: function( elems, callback, arg ) {
+		var value,
+			i = 0,
+			length = elems.length,
+			isArray = isArraylike( elems ),
+			ret = [];
+
+		// Go through the array, translating each of the items to their new values
+		if ( isArray ) {
+			for ( ; i < length; i++ ) {
+				value = callback( elems[ i ], i, arg );
+
+				if ( value != null ) {
+					ret.push( value );
+				}
+			}
+
+		// Go through every key on the object,
+		} else {
+			for ( i in elems ) {
+				value = callback( elems[ i ], i, arg );
+
+				if ( value != null ) {
+					ret.push( value );
+				}
+			}
+		}
+
+		// Flatten any nested arrays
+		return concat.apply( [], ret );
+	},
+
+	// A global GUID counter for objects
+	guid: 1,
+
+	// Bind a function to a context, optionally partially applying any
+	// arguments.
+	proxy: function( fn, context ) {
+		var args, proxy, tmp;
+
+		if ( typeof context === "string" ) {
+			tmp = fn[ context ];
+			context = fn;
+			fn = tmp;
+		}
+
+		// Quick check to determine if target is callable, in the spec
+		// this throws a TypeError, but we will just return undefined.
+		if ( !jQuery.isFunction( fn ) ) {
+			return undefined;
+		}
+
+		// Simulated bind
+		args = slice.call( arguments, 2 );
+		proxy = function() {
+			return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
+		};
+
+		// Set the guid of unique handler to the same of original handler, so it can be removed
+		proxy.guid = fn.guid = fn.guid || jQuery.guid++;
+
+		return proxy;
+	},
+
+	now: function() {
+		return +( new Date() );
+	},
+
+	// jQuery.support is not used in Core but other projects attach their
+	// properties to it so it needs to exist.
+	support: support
+});
+
+// Populate the class2type map
+jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) {
+	class2type[ "[object " + name + "]" ] = name.toLowerCase();
+});
+
+function isArraylike( obj ) {
+	var length = obj.length,
+		type = jQuery.type( obj );
+
+	if ( type === "function" || jQuery.isWindow( obj ) ) {
+		return false;
+	}
+
+	if ( obj.nodeType === 1 && length ) {
+		return true;
+	}
+
+	return type === "array" || length === 0 ||
+		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
+}
+var Sizzle =
+/*!
+ * Sizzle CSS Selector Engine v1.10.16
+ * http://sizzlejs.com/
+ *
+ * Copyright 2013 jQuery Foundation, Inc. and other contributors
+ * Released under the MIT license
+ * http://jquery.org/license
+ *
+ * Date: 2014-01-13
+ */
+(function( window ) {
+
+var i,
+	support,
+	Expr,
+	getText,
+	isXML,
+	compile,
+	outermostContext,
+	sortInput,
+	hasDuplicate,
+
+	// Local document vars
+	setDocument,
+	document,
+	docElem,
+	documentIsHTML,
+	rbuggyQSA,
+	rbuggyMatches,
+	matches,
+	contains,
+
+	// Instance-specific data
+	expando = "sizzle" + -(new Date()),
+	preferredDoc = window.document,
+	dirruns = 0,
+	done = 0,
+	classCache = createCache(),
+	tokenCache = createCache(),
+	compilerCache = createCache(),
+	sortOrder = function( a, b ) {
+		if ( a === b ) {
+			hasDuplicate = true;
+		}
+		return 0;
+	},
+
+	// General-purpose constants
+	strundefined = typeof undefined,
+	MAX_NEGATIVE = 1 << 31,
+
+	// Instance methods
+	hasOwn = ({}).hasOwnProperty,
+	arr = [],
+	pop = arr.pop,
+	push_native = arr.push,
+	push = arr.push,
+	slice = arr.slice,
+	// Use a stripped-down indexOf if we can't use a native one
+	indexOf = arr.indexOf || function( elem ) {
+		var i = 0,
+			len = this.length;
+		for ( ; i < len; i++ ) {
+			if ( this[i] === elem ) {
+				return i;
+			}
+		}
+		return -1;
+	},
+
+	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
+
+	// Regular expressions
+
+	// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
+	whitespace = "[\\x20\\t\\r\\n\\f]",
+	// http://www.w3.org/TR/css3-syntax/#characters
+	characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",
+
+	// Loosely modeled on CSS identifier characters
+	// An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors
+	// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
+	identifier = characterEncoding.replace( "w", "w#" ),
+
+	// Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
+	attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
+		"*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",
+
+	// Prefer arguments quoted,
+	//   then not containing pseudos/brackets,
+	//   then attribute selectors/non-parenthetical expressions,
+	//   then anything else
+	// These preferences are here to reduce the number of selectors
+	//   needing tokenize in the PSEUDO preFilter
+	pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)",
+
+	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
+	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
+
+	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
+	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
+
+	rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ),
+
+	rpseudo = new RegExp( pseudos ),
+	ridentifier = new RegExp( "^" + identifier + "$" ),
+
+	matchExpr = {
+		"ID": new RegExp( "^#(" + characterEncoding + ")" ),
+		"CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
+		"TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
+		"ATTR": new RegExp( "^" + attributes ),
+		"PSEUDO": new RegExp( "^" + pseudos ),
+		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
+			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
+			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
+		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
+		// For use in libraries implementing .is()
+		// We use this for POS matching in `select`
+		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
+			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
+	},
+
+	rinputs = /^(?:input|select|textarea|button)$/i,
+	rheader = /^h\d$/i,
+
+	rnative = /^[^{]+\{\s*\[native \w/,
+
+	// Easily-parseable/retrievable ID or TAG or CLASS selectors
+	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
+
+	rsibling = /[+~]/,
+	rescape = /'|\\/g,
+
+	// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
+	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
+	funescape = function( _, escaped, escapedWhitespace ) {
+		var high = "0x" + escaped - 0x10000;
+		// NaN means non-codepoint
+		// Support: Firefox
+		// Workaround erroneous numeric interpretation of +"0x"
+		return high !== high || escapedWhitespace ?
+			escaped :
+			high < 0 ?
+				// BMP codepoint
+				String.fromCharCode( high + 0x10000 ) :
+				// Supplemental Plane codepoint (surrogate pair)
+				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
+	};
+
+// Optimize for push.apply( _, NodeList )
+try {
+	push.apply(
+		(arr = slice.call( preferredDoc.childNodes )),
+		preferredDoc.childNodes
+	);
+	// Support: Android<4.0
+	// Detect silently failing push.apply
+	arr[ preferredDoc.childNodes.length ].nodeType;
+} catch ( e ) {
+	push = { apply: arr.length ?
+
+		// Leverage slice if possible
+		function( target, els ) {
+			push_native.apply( target, slice.call(els) );
+		} :
+
+		// Support: IE<9
+		// Otherwise append directly
+		function( target, els ) {
+			var j = target.length,
+				i = 0;
+			// Can't trust NodeList.length
+			while ( (target[j++] = els[i++]) ) {}
+			target.length = j - 1;
+		}
+	};
+}
+
+function Sizzle( selector, context, results, seed ) {
+	var match, elem, m, nodeType,
+		// QSA vars
+		i, groups, old, nid, newContext, newSelector;
+
+	if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
+		setDocument( context );
+	}
+
+	context = context || document;
+	results = results || [];
+
+	if ( !selector || typeof selector !== "string" ) {
+		return results;
+	}
+
+	if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) {
+		return [];
+	}
+
+	if ( documentIsHTML && !seed ) {
+
+		// Shortcuts
+		if ( (match = rquickExpr.exec( selector )) ) {
+			// Speed-up: Sizzle("#ID")
+			if ( (m = match[1]) ) {
+				if ( nodeType === 9 ) {
+					elem = context.getElementById( m );
+					// Check parentNode to catch when Blackberry 4.6 returns
+					// nodes that are no longer in the document (jQuery #6963)
+					if ( elem && elem.parentNode ) {
+						// Handle the case where IE, Opera, and Webkit return items
+						// by name instead of ID
+						if ( elem.id === m ) {
+							results.push( elem );
+							return results;
+						}
+					} else {
+						return results;
+					}
+				} else {
+					// Context is not a document
+					if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
+						contains( context, elem ) && elem.id === m ) {
+						results.push( elem );
+						return results;
+					}
+				}
+
+			// Speed-up: Sizzle("TAG")
+			} else if ( match[2] ) {
+				push.apply( results, context.getElementsByTagName( selector ) );
+				return results;
+
+			// Speed-up: Sizzle(".CLASS")
+			} else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) {
+				push.apply( results, context.getElementsByClassName( m ) );
+				return results;
+			}
+		}
+
+		// QSA path
+		if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
+			nid = old = expando;
+			newContext = context;
+			newSelector = nodeType === 9 && selector;
+
+			// qSA works strangely on Element-rooted queries
+			// We can work around this by specifying an extra ID on the root
+			// and working up from there (Thanks to Andrew Dupont for the technique)
+			// IE 8 doesn't work on object elements
+			if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
+				groups = tokenize( selector );
+
+				if ( (old = context.getAttribute("id")) ) {
+					nid = old.replace( rescape, "\\$&" );
+				} else {
+					context.setAttribute( "id", nid );
+				}
+				nid = "[id='" + nid + "'] ";
+
+				i = groups.length;
+				while ( i-- ) {
+					groups[i] = nid + toSelector( groups[i] );
+				}
+				newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context;
+				newSelector = groups.join(",");
+			}
+
+			if ( newSelector ) {
+				try {
+					push.apply( results,
+						newContext.querySelectorAll( newSelector )
+					);
+					return results;
+				} catch(qsaError) {
+				} finally {
+					if ( !old ) {
+						context.removeAttribute("id");
+					}
+				}
+			}
+		}
+	}
+
+	// All others
+	return select( selector.replace( rtrim, "$1" ), context, results, seed );
+}
+
+/**
+ * Create key-value caches of limited size
+ * @returns {Function(string, Object)} Returns the Object data after storing it on itself with
+ *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
+ *	deleting the oldest entry
+ */
+function createCache() {
+	var keys = [];
+
+	function cache( key, value ) {
+		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
+		if ( keys.push( key + " " ) > Expr.cacheLength ) {
+			// Only keep the most recent entries
+			delete cache[ keys.shift() ];
+		}
+		return (cache[ key + " " ] = value);
+	}
+	return cache;
+}
+
+/**
+ * Mark a function for special use by Sizzle
+ * @param {Function} fn The function to mark
+ */
+function markFunction( fn ) {
+	fn[ expando ] = true;
+	return fn;
+}
+
+/**
+ * Support testing using an element
+ * @param {Function} fn Passed the created div and expects a boolean result
+ */
+function assert( fn ) {
+	var div = document.createElement("div");
+
+	try {
+		return !!fn( div );
+	} catch (e) {
+		return false;
+	} finally {
+		// Remove from its parent by default
+		if ( div.parentNode ) {
+			div.parentNode.removeChild( div );
+		}
+		// release memory in IE
+		div = null;
+	}
+}
+
+/**
+ * Adds the same handler for all of the specified attrs
+ * @param {String} attrs Pipe-separated list of attributes
+ * @param {Function} handler The method that will be applied
+ */
+function addHandle( attrs, handler ) {
+	var arr = attrs.split("|"),
+		i = attrs.length;
+
+	while ( i-- ) {
+		Expr.attrHandle[ arr[i] ] = handler;
+	}
+}
+
+/**
+ * Checks document order of two siblings
+ * @param {Element} a
+ * @param {Element} b
+ * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
+ */
+function siblingCheck( a, b ) {
+	var cur = b && a,
+		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
+			( ~b.sourceIndex || MAX_NEGATIVE ) -
+			( ~a.sourceIndex || MAX_NEGATIVE );
+
+	// Use IE sourceIndex if available on both nodes
+	if ( diff ) {
+		return diff;
+	}
+
+	// Check if b follows a
+	if ( cur ) {
+		while ( (cur = cur.nextSibling) ) {
+			if ( cur === b ) {
+				return -1;
+			}
+		}
+	}
+
+	return a ? 1 : -1;
+}
+
+/**
+ * Returns a function to use in pseudos for input types
+ * @param {String} type
+ */
+function createInputPseudo( type ) {
+	return function( elem ) {
+		var name = elem.nodeName.toLowerCase();
+		return name === "input" && elem.type === type;
+	};
+}
+
+/**
+ * Returns a function to use in pseudos for buttons
+ * @param {String} type
+ */
+function createButtonPseudo( type ) {
+	return function( elem ) {
+		var name = elem.nodeName.toLowerCase();
+		return (name === "input" || name === "button") && elem.type === type;
+	};
+}
+
+/**
+ * Returns a function to use in pseudos for positionals
+ * @param {Function} fn
+ */
+function createPositionalPseudo( fn ) {
+	return markFunction(function( argument ) {
+		argument = +argument;
+		return markFunction(function( seed, matches ) {
+			var j,
+				matchIndexes = fn( [], seed.length, argument ),
+				i = matchIndexes.length;
+
+			// Match elements found at the specified indexes
+			while ( i-- ) {
+				if ( seed[ (j = matchIndexes[i]) ] ) {
+					seed[j] = !(matches[j] = seed[j]);
+				}
+			}
+		});
+	});
+}
+
+/**
+ * Checks a node for validity as a Sizzle context
+ * @param {Element|Object=} context
+ * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
+ */
+function testContext( context ) {
+	return context && typeof context.getElementsByTagName !== strundefined && context;
+}
+
+// Expose support vars for convenience
+support = Sizzle.support = {};
+
+/**
+ * Detects XML nodes
+ * @param {Element|Object} elem An element or a document
+ * @returns {Boolean} True iff elem is a non-HTML XML node
+ */
+isXML = Sizzle.isXML = function( elem ) {
+	// documentElement is verified for cases where it doesn't yet exist
+	// (such as loading iframes in IE - #4833)
+	var documentElement = elem && (elem.ownerDocument || elem).documentElement;
+	return documentElement ? documentElement.nodeName !== "HTML" : false;
+};
+
+/**
+ * Sets document-related variables once based on the current document
+ * @param {Element|Object} [doc] An element or document object to use to set the document
+ * @returns {Object} Returns the current document
+ */
+setDocument = Sizzle.setDocument = function( node ) {
+	var hasCompare,
+		doc = node ? node.ownerDocument || node : preferredDoc,
+		parent = doc.defaultView;
+
+	// If no document and documentElement is available, return
+	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
+		return document;
+	}
+
+	// Set our document
+	document = doc;
+	docElem = doc.documentElement;
+
+	// Support tests
+	documentIsHTML = !isXML( doc );
+
+	// Support: IE>8
+	// If iframe document is assigned to "document" variable and if iframe has been reloaded,
+	// IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936
+	// IE6-8 do not support the defaultView property so parent will be undefined
+	if ( parent && parent !== parent.top ) {
+		// IE11 does not have attachEvent, so all must suffer
+		if ( parent.addEventListener ) {
+			parent.addEventListener( "unload", function() {
+				setDocument();
+			}, false );
+		} else if ( parent.attachEvent ) {
+			parent.attachEvent( "onunload", function() {
+				setDocument();
+			});
+		}
+	}
+
+	/* Attributes
+	---------------------------------------------------------------------- */
+
+	// Support: IE<8
+	// Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans)
+	support.attributes = assert(function( div ) {
+		div.className = "i";
+		return !div.getAttribute("className");
+	});
+
+	/* getElement(s)By*
+	---------------------------------------------------------------------- */
+
+	// Check if getElementsByTagName("*") returns only elements
+	support.getElementsByTagName = assert(function( div ) {
+		div.appendChild( doc.createComment("") );
+		return !div.getElementsByTagName("*").length;
+	});
+
+	// Check if getElementsByClassName can be trusted
+	support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) {
+		div.innerHTML = "<div class='a'></div><div class='a i'></div>";
+
+		// Support: Safari<4
+		// Catch class over-caching
+		div.firstChild.className = "i";
+		// Support: Opera<10
+		// Catch gEBCN failure to find non-leading classes
+		return div.getElementsByClassName("i").length === 2;
+	});
+
+	// Support: IE<10
+	// Check if getElementById returns elements by name
+	// The broken getElementById methods don't pick up programatically-set names,
+	// so use a roundabout getElementsByName test
+	support.getById = assert(function( div ) {
+		docElem.appendChild( div ).id = expando;
+		return !doc.getElementsByName || !doc.getElementsByName( expando ).length;
+	});
+
+	// ID find and filter
+	if ( support.getById ) {
+		Expr.find["ID"] = function( id, context ) {
+			if ( typeof context.getElementById !== strundefined && documentIsHTML ) {
+				var m = context.getElementById( id );
+				// Check parentNode to catch when Blackberry 4.6 returns
+				// nodes that are no longer in the document #6963
+				return m && m.parentNode ? [m] : [];
+			}
+		};
+		Expr.filter["ID"] = function( id ) {
+			var attrId = id.replace( runescape, funescape );
+			return function( elem ) {
+				return elem.getAttribute("id") === attrId;
+			};
+		};
+	} else {
+		// Support: IE6/7
+		// getElementById is not reliable as a find shortcut
+		delete Expr.find["ID"];
+
+		Expr.filter["ID"] =  function( id ) {
+			var attrId = id.replace( runescape, funescape );
+			return function( elem ) {
+				var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
+				return node && node.value === attrId;
+			};
+		};
+	}
+
+	// Tag
+	Expr.find["TAG"] = support.getElementsByTagName ?
+		function( tag, context ) {
+			if ( typeof context.getElementsByTagName !== strundefined ) {
+				return context.getElementsByTagName( tag );
+			}
+		} :
+		function( tag, context ) {
+			var elem,
+				tmp = [],
+				i = 0,
+				results = context.getElementsByTagName( tag );
+
+			// Filter out possible comments
+			if ( tag === "*" ) {
+				while ( (elem = results[i++]) ) {
+					if ( elem.nodeType === 1 ) {
+						tmp.push( elem );
+					}
+				}
+
+				return tmp;
+			}
+			return results;
+		};
+
+	// Class
+	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
+		if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) {
+			return context.getElementsByClassName( className );
+		}
+	};
+
+	/* QSA/matchesSelector
+	---------------------------------------------------------------------- */
+
+	// QSA and matchesSelector support
+
+	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
+	rbuggyMatches = [];
+
+	// qSa(:focus) reports false when true (Chrome 21)
+	// We allow this because of a bug in IE8/9 that throws an error
+	// whenever `document.activeElement` is accessed on an iframe
+	// So, we allow :focus to pass through QSA all the time to avoid the IE error
+	// See http://bugs.jquery.com/ticket/13378
+	rbuggyQSA = [];
+
+	if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) {
+		// Build QSA regex
+		// Regex strategy adopted from Diego Perini
+		assert(function( div ) {
+			// Select is set to empty string on purpose
+			// This is to test IE's treatment of not explicitly
+			// setting a boolean content attribute,
+			// since its presence should be enough
+			// http://bugs.jquery.com/ticket/12359
+			div.innerHTML = "<select t=''><option selected=''></option></select>";
+
+			// Support: IE8, Opera 10-12
+			// Nothing should be selected when empty strings follow ^= or $= or *=
+			if ( div.querySelectorAll("[t^='']").length ) {
+				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
+			}
+
+			// Support: IE8
+			// Boolean attributes and "value" are not treated correctly
+			if ( !div.querySelectorAll("[selected]").length ) {
+				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
+			}
+
+			// Webkit/Opera - :checked should return selected option elements
+			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+			// IE8 throws error here and will not see later tests
+			if ( !div.querySelectorAll(":checked").length ) {
+				rbuggyQSA.push(":checked");
+			}
+		});
+
+		assert(function( div ) {
+			// Support: Windows 8 Native Apps
+			// The type and name attributes are restricted during .innerHTML assignment
+			var input = doc.createElement("input");
+			input.setAttribute( "type", "hidden" );
+			div.appendChild( input ).setAttribute( "name", "D" );
+
+			// Support: IE8
+			// Enforce case-sensitivity of name attribute
+			if ( div.querySelectorAll("[name=d]").length ) {
+				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
+			}
+
+			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
+			// IE8 throws error here and will not see later tests
+			if ( !div.querySelectorAll(":enabled").length ) {
+				rbuggyQSA.push( ":enabled", ":disabled" );
+			}
+
+			// Opera 10-11 does not throw on post-comma invalid pseudos
+			div.querySelectorAll("*,:x");
+			rbuggyQSA.push(",.*:");
+		});
+	}
+
+	if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector ||
+		docElem.mozMatchesSelector ||
+		docElem.oMatchesSelector ||
+		docElem.msMatchesSelector) )) ) {
+
+		assert(function( div ) {
+			// Check to see if it's possible to do matchesSelector
+			// on a disconnected node (IE 9)
+			support.disconnectedMatch = matches.call( div, "div" );
+
+			// This should fail with an exception
+			// Gecko does not error, returns false instead
+			matches.call( div, "[s!='']:x" );
+			rbuggyMatches.push( "!=", pseudos );
+		});
+	}
+
+	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
+	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
+
+	/* Contains
+	---------------------------------------------------------------------- */
+	hasCompare = rnative.test( docElem.compareDocumentPosition );
+
+	// Element contains another
+	// Purposefully does not implement inclusive descendent
+	// As in, an element does not contain itself
+	contains = hasCompare || rnative.test( docElem.contains ) ?
+		function( a, b ) {
+			var adown = a.nodeType === 9 ? a.documentElement : a,
+				bup = b && b.parentNode;
+			return a === bup || !!( bup && bup.nodeType === 1 && (
+				adown.contains ?
+					adown.contains( bup ) :
+					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
+			));
+		} :
+		function( a, b ) {
+			if ( b ) {
+				while ( (b = b.parentNode) ) {
+					if ( b === a ) {
+						return true;
+					}
+				}
+			}
+			return false;
+		};
+
+	/* Sorting
+	---------------------------------------------------------------------- */
+
+	// Document order sorting
+	sortOrder = hasCompare ?
+	function( a, b ) {
+
+		// Flag for duplicate removal
+		if ( a === b ) {
+			hasDuplicate = true;
+			return 0;
+		}
+
+		// Sort on method existence if only one input has compareDocumentPosition
+		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
+		if ( compare ) {
+			return compare;
+		}
+
+		// Calculate position if both inputs belong to the same document
+		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
+			a.compareDocumentPosition( b ) :
+
+			// Otherwise we know they are disconnected
+			1;
+
+		// Disconnected nodes
+		if ( compare & 1 ||
+			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
+
+			// Choose the first element that is related to our preferred document
+			if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
+				return -1;
+			}
+			if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
+				return 1;
+			}
+
+			// Maintain original order
+			return sortInput ?
+				( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
+				0;
+		}
+
+		return compare & 4 ? -1 : 1;
+	} :
+	function( a, b ) {
+		// Exit early if the nodes are identical
+		if ( a === b ) {
+			hasDuplicate = true;
+			return 0;
+		}
+
+		var cur,
+			i = 0,
+			aup = a.parentNode,
+			bup = b.parentNode,
+			ap = [ a ],
+			bp = [ b ];
+
+		// Parentless nodes are either documents or disconnected
+		if ( !aup || !bup ) {
+			return a === doc ? -1 :
+				b === doc ? 1 :
+				aup ? -1 :
+				bup ? 1 :
+				sortInput ?
+				( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) :
+				0;
+
+		// If the nodes are siblings, we can do a quick check
+		} else if ( aup === bup ) {
+			return siblingCheck( a, b );
+		}
+
+		// Otherwise we need full lists of their ancestors for comparison
+		cur = a;
+		while ( (cur = cur.parentNode) ) {
+			ap.unshift( cur );
+		}
+		cur = b;
+		while ( (cur = cur.parentNode) ) {
+			bp.unshift( cur );
+		}
+
+		// Walk down the tree looking for a discrepancy
+		while ( ap[i] === bp[i] ) {
+			i++;
+		}
+
+		return i ?
+			// Do a sibling check if the nodes have a common ancestor
+			siblingCheck( ap[i], bp[i] ) :
+
+			// Otherwise nodes in our document sort first
+			ap[i] === preferredDoc ? -1 :
+			bp[i] === preferredDoc ? 1 :
+			0;
+	};
+
+	return doc;
+};
+
+Sizzle.matches = function( expr, elements ) {
+	return Sizzle( expr, null, null, elements );
+};
+
+Sizzle.matchesSelector = function( elem, expr ) {
+	// Set document vars if needed
+	if ( ( elem.ownerDocument || elem ) !== document ) {
+		setDocument( elem );
+	}
+
+	// Make sure that attribute selectors are quoted
+	expr = expr.replace( rattributeQuotes, "='$1']" );
+
+	if ( support.matchesSelector && documentIsHTML &&
+		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
+		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
+
+		try {
+			var ret = matches.call( elem, expr );
+
+			// IE 9's matchesSelector returns false on disconnected nodes
+			if ( ret || support.disconnectedMatch ||
+					// As well, disconnected nodes are said to be in a document
+					// fragment in IE 9
+					elem.document && elem.document.nodeType !== 11 ) {
+				return ret;
+			}
+		} catch(e) {}
+	}
+
+	return Sizzle( expr, document, null, [elem] ).length > 0;
+};
+
+Sizzle.contains = function( context, elem ) {
+	// Set document vars if needed
+	if ( ( context.ownerDocument || context ) !== document ) {
+		setDocument( context );
+	}
+	return contains( context, elem );
+};
+
+Sizzle.attr = function( elem, name ) {
+	// Set document vars if needed
+	if ( ( elem.ownerDocument || elem ) !== document ) {
+		setDocument( elem );
+	}
+
+	var fn = Expr.attrHandle[ name.toLowerCase() ],
+		// Don't get fooled by Object.prototype properties (jQuery #13807)
+		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
+			fn( elem, name, !documentIsHTML ) :
+			undefined;
+
+	return val !== undefined ?
+		val :
+		support.attributes || !documentIsHTML ?
+			elem.getAttribute( name ) :
+			(val = elem.getAttributeNode(name)) && val.specified ?
+				val.value :
+				null;
+};
+
+Sizzle.error = function( msg ) {
+	throw new Error( "Syntax error, unrecognized expression: " + msg );
+};
+
+/**
+ * Document sorting and removing duplicates
+ * @param {ArrayLike} results
+ */
+Sizzle.uniqueSort = function( results ) {
+	var elem,
+		duplicates = [],
+		j = 0,
+		i = 0;
+
+	// Unless we *know* we can detect duplicates, assume their presence
+	hasDuplicate = !support.detectDuplicates;
+	sortInput = !support.sortStable && results.slice( 0 );
+	results.sort( sortOrder );
+
+	if ( hasDuplicate ) {
+		while ( (elem = results[i++]) ) {
+			if ( elem === results[ i ] ) {
+				j = duplicates.push( i );
+			}
+		}
+		while ( j-- ) {
+			results.splice( duplicates[ j ], 1 );
+		}
+	}
+
+	// Clear input after sorting to release objects
+	// See https://github.com/jquery/sizzle/pull/225
+	sortInput = null;
+
+	return results;
+};
+
+/**
+ * Utility function for retrieving the text value of an array of DOM nodes
+ * @param {Array|Element} elem
+ */
+getText = Sizzle.getText = function( elem ) {
+	var node,
+		ret = "",
+		i = 0,
+		nodeType = elem.nodeType;
+
+	if ( !nodeType ) {
+		// If no nodeType, this is expected to be an array
+		while ( (node = elem[i++]) ) {
+			// Do not traverse comment nodes
+			ret += getText( node );
+		}
+	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
+		// Use textContent for elements
+		// innerText usage removed for consistency of new lines (jQuery #11153)
+		if ( typeof elem.textContent === "string" ) {
+			return elem.textContent;
+		} else {
+			// Traverse its children
+			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+				ret += getText( elem );
+			}
+		}
+	} else if ( nodeType === 3 || nodeType === 4 ) {
+		return elem.nodeValue;
+	}
+	// Do not include comment or processing instruction nodes
+
+	return ret;
+};
+
+Expr = Sizzle.selectors = {
+
+	// Can be adjusted by the user
+	cacheLength: 50,
+
+	createPseudo: markFunction,
+
+	match: matchExpr,
+
+	attrHandle: {},
+
+	find: {},
+
+	relative: {
+		">": { dir: "parentNode", first: true },
+		" ": { dir: "parentNode" },
+		"+": { dir: "previousSibling", first: true },
+		"~": { dir: "previousSibling" }
+	},
+
+	preFilter: {
+		"ATTR": function( match ) {
+			match[1] = match[1].replace( runescape, funescape );
+
+			// Move the given value to match[3] whether quoted or unquoted
+			match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape );
+
+			if ( match[2] === "~=" ) {
+				match[3] = " " + match[3] + " ";
+			}
+
+			return match.slice( 0, 4 );
+		},
+
+		"CHILD": function( match ) {
+			/* matches from matchExpr["CHILD"]
+				1 type (only|nth|...)
+				2 what (child|of-type)
+				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
+				4 xn-component of xn+y argument ([+-]?\d*n|)
+				5 sign of xn-component
+				6 x of xn-component
+				7 sign of y-component
+				8 y of y-component
+			*/
+			match[1] = match[1].toLowerCase();
+
+			if ( match[1].slice( 0, 3 ) === "nth" ) {
+				// nth-* requires argument
+				if ( !match[3] ) {
+					Sizzle.error( match[0] );
+				}
+
+				// numeric x and y parameters for Expr.filter.CHILD
+				// remember that false/true cast respectively to 0/1
+				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
+				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
+
+			// other types prohibit arguments
+			} else if ( match[3] ) {
+				Sizzle.error( match[0] );
+			}
+
+			return match;
+		},
+
+		"PSEUDO": function( match ) {
+			var excess,
+				unquoted = !match[5] && match[2];
+
+			if ( matchExpr["CHILD"].test( match[0] ) ) {
+				return null;
+			}
+
+			// Accept quoted arguments as-is
+			if ( match[3] && match[4] !== undefined ) {
+				match[2] = match[4];
+
+			// Strip excess characters from unquoted arguments
+			} else if ( unquoted && rpseudo.test( unquoted ) &&
+				// Get excess from tokenize (recursively)
+				(excess = tokenize( unquoted, true )) &&
+				// advance to the next closing parenthesis
+				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
+
+				// excess is a negative index
+				match[0] = match[0].slice( 0, excess );
+				match[2] = unquoted.slice( 0, excess );
+			}
+
+			// Return only captures needed by the pseudo filter method (type and argument)
+			return match.slice( 0, 3 );
+		}
+	},
+
+	filter: {
+
+		"TAG": function( nodeNameSelector ) {
+			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
+			return nodeNameSelector === "*" ?
+				function() { return true; } :
+				function( elem ) {
+					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
+				};
+		},
+
+		"CLASS": function( className ) {
+			var pattern = classCache[ className + " " ];
+
+			return pattern ||
+				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
+				classCache( className, function( elem ) {
+					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" );
+				});
+		},
+
+		"ATTR": function( name, operator, check ) {
+			return function( elem ) {
+				var result = Sizzle.attr( elem, name );
+
+				if ( result == null ) {
+					return operator === "!=";
+				}
+				if ( !operator ) {
+					return true;
+				}
+
+				result += "";
+
+				return operator === "=" ? result === check :
+					operator === "!=" ? result !== check :
+					operator === "^=" ? check && result.indexOf( check ) === 0 :
+					operator === "*=" ? check && result.indexOf( check ) > -1 :
+					operator === "$=" ? check && result.slice( -check.length ) === check :
+					operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
+					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
+					false;
+			};
+		},
+
+		"CHILD": function( type, what, argument, first, last ) {
+			var simple = type.slice( 0, 3 ) !== "nth",
+				forward = type.slice( -4 ) !== "last",
+				ofType = what === "of-type";
+
+			return first === 1 && last === 0 ?
+
+				// Shortcut for :nth-*(n)
+				function( elem ) {
+					return !!elem.parentNode;
+				} :
+
+				function( elem, context, xml ) {
+					var cache, outerCache, node, diff, nodeIndex, start,
+						dir = simple !== forward ? "nextSibling" : "previousSibling",
+						parent = elem.parentNode,
+						name = ofType && elem.nodeName.toLowerCase(),
+						useCache = !xml && !ofType;
+
+					if ( parent ) {
+
+						// :(first|last|only)-(child|of-type)
+						if ( simple ) {
+							while ( dir ) {
+								node = elem;
+								while ( (node = node[ dir ]) ) {
+									if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) {
+										return false;
+									}
+								}
+								// Reverse direction for :only-* (if we haven't yet done so)
+								start = dir = type === "only" && !start && "nextSibling";
+							}
+							return true;
+						}
+
+						start = [ forward ? parent.firstChild : parent.lastChild ];
+
+						// non-xml :nth-child(...) stores cache data on `parent`
+						if ( forward && useCache ) {
+							// Seek `elem` from a previously-cached index
+							outerCache = parent[ expando ] || (parent[ expando ] = {});
+							cache = outerCache[ type ] || [];
+							nodeIndex = cache[0] === dirruns && cache[1];
+							diff = cache[0] === dirruns && cache[2];
+							node = nodeIndex && parent.childNodes[ nodeIndex ];
+
+							while ( (node = ++nodeIndex && node && node[ dir ] ||
+
+								// Fallback to seeking `elem` from the start
+								(diff = nodeIndex = 0) || start.pop()) ) {
+
+								// When found, cache indexes on `parent` and break
+								if ( node.nodeType === 1 && ++diff && node === elem ) {
+									outerCache[ type ] = [ dirruns, nodeIndex, diff ];
+									break;
+								}
+							}
+
+						// Use previously-cached element index if available
+						} else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) {
+							diff = cache[1];
+
+						// xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...)
+						} else {
+							// Use the same loop as above to seek `elem` from the start
+							while ( (node = ++nodeIndex && node && node[ dir ] ||
+								(diff = nodeIndex = 0) || start.pop()) ) {
+
+								if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
+									// Cache the index of each encountered element
+									if ( useCache ) {
+										(node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ];
+									}
+
+									if ( node === elem ) {
+										break;
+									}
+								}
+							}
+						}
+
+						// Incorporate the offset, then check against cycle size
+						diff -= last;
+						return diff === first || ( diff % first === 0 && diff / first >= 0 );
+					}
+				};
+		},
+
+		"PSEUDO": function( pseudo, argument ) {
+			// pseudo-class names are case-insensitive
+			// http://www.w3.org/TR/selectors/#pseudo-classes
+			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
+			// Remember that setFilters inherits from pseudos
+			var args,
+				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
+					Sizzle.error( "unsupported pseudo: " + pseudo );
+
+			// The user may use createPseudo to indicate that
+			// arguments are needed to create the filter function
+			// just as Sizzle does
+			if ( fn[ expando ] ) {
+				return fn( argument );
+			}
+
+			// But maintain support for old signatures
+			if ( fn.length > 1 ) {
+				args = [ pseudo, pseudo, "", argument ];
+				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
+					markFunction(function( seed, matches ) {
+						var idx,
+							matched = fn( seed, argument ),
+							i = matched.length;
+						while ( i-- ) {
+							idx = indexOf.call( seed, matched[i] );
+							seed[ idx ] = !( matches[ idx ] = matched[i] );
+						}
+					}) :
+					function( elem ) {
+						return fn( elem, 0, args );
+					};
+			}
+
+			return fn;
+		}
+	},
+
+	pseudos: {
+		// Potentially complex pseudos
+		"not": markFunction(function( selector ) {
+			// Trim the selector passed to compile
+			// to avoid treating leading and trailing
+			// spaces as combinators
+			var input = [],
+				results = [],
+				matcher = compile( selector.replace( rtrim, "$1" ) );
+
+			return matcher[ expando ] ?
+				markFunction(function( seed, matches, context, xml ) {
+					var elem,
+						unmatched = matcher( seed, null, xml, [] ),
+						i = seed.length;
+
+					// Match elements unmatched by `matcher`
+					while ( i-- ) {
+						if ( (elem = unmatched[i]) ) {
+							seed[i] = !(matches[i] = elem);
+						}
+					}
+				}) :
+				function( elem, context, xml ) {
+					input[0] = elem;
+					matcher( input, null, xml, results );
+					return !results.pop();
+				};
+		}),
+
+		"has": markFunction(function( selector ) {
+			return function( elem ) {
+				return Sizzle( selector, elem ).length > 0;
+			};
+		}),
+
+		"contains": markFunction(function( text ) {
+			return function( elem ) {
+				return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
+			};
+		}),
+
+		// "Whether an element is represented by a :lang() selector
+		// is based solely on the element's language value
+		// being equal to the identifier C,
+		// or beginning with the identifier C immediately followed by "-".
+		// The matching of C against the element's language value is performed case-insensitively.
+		// The identifier C does not have to be a valid language name."
+		// http://www.w3.org/TR/selectors/#lang-pseudo
+		"lang": markFunction( function( lang ) {
+			// lang value must be a valid identifier
+			if ( !ridentifier.test(lang || "") ) {
+				Sizzle.error( "unsupported lang: " + lang );
+			}
+			lang = lang.replace( runescape, funescape ).toLowerCase();
+			return function( elem ) {
+				var elemLang;
+				do {
+					if ( (elemLang = documentIsHTML ?
+						elem.lang :
+						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
+
+						elemLang = elemLang.toLowerCase();
+						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
+					}
+				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
+				return false;
+			};
+		}),
+
+		// Miscellaneous
+		"target": function( elem ) {
+			var hash = window.location && window.location.hash;
+			return hash && hash.slice( 1 ) === elem.id;
+		},
+
+		"root": function( elem ) {
+			return elem === docElem;
+		},
+
+		"focus": function( elem ) {
+			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
+		},
+
+		// Boolean properties
+		"enabled": function( elem ) {
+			return elem.disabled === false;
+		},
+
+		"disabled": function( elem ) {
+			return elem.disabled === true;
+		},
+
+		"checked": function( elem ) {
+			// In CSS3, :checked should return both checked and selected elements
+			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+			var nodeName = elem.nodeName.toLowerCase();
+			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
+		},
+
+		"selected": function( elem ) {
+			// Accessing this property makes selected-by-default
+			// options in Safari work properly
+			if ( elem.parentNode ) {
+				elem.parentNode.selectedIndex;
+			}
+
+			return elem.selected === true;
+		},
+
+		// Contents
+		"empty": function( elem ) {
+			// http://www.w3.org/TR/selectors/#empty-pseudo
+			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
+			//   but not by others (comment: 8; processing instruction: 7; etc.)
+			// nodeType < 6 works because attributes (2) do not appear as children
+			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+				if ( elem.nodeType < 6 ) {
+					return false;
+				}
+			}
+			return true;
+		},
+
+		"parent": function( elem ) {
+			return !Expr.pseudos["empty"]( elem );
+		},
+
+		// Element/input types
+		"header": function( elem ) {
+			return rheader.test( elem.nodeName );
+		},
+
+		"input": function( elem ) {
+			return rinputs.test( elem.nodeName );
+		},
+
+		"button": function( elem ) {
+			var name = elem.nodeName.toLowerCase();
+			return name === "input" && elem.type === "button" || name === "button";
+		},
+
+		"text": function( elem ) {
+			var attr;
+			return elem.nodeName.toLowerCase() === "input" &&
+				elem.type === "text" &&
+
+				// Support: IE<8
+				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
+				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
+		},
+
+		// Position-in-collection
+		"first": createPositionalPseudo(function() {
+			return [ 0 ];
+		}),
+
+		"last": createPositionalPseudo(function( matchIndexes, length ) {
+			return [ length - 1 ];
+		}),
+
+		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
+			return [ argument < 0 ? argument + length : argument ];
+		}),
+
+		"even": createPositionalPseudo(function( matchIndexes, length ) {
+			var i = 0;
+			for ( ; i < length; i += 2 ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		}),
+
+		"odd": createPositionalPseudo(function( matchIndexes, length ) {
+			var i = 1;
+			for ( ; i < length; i += 2 ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		}),
+
+		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
+			var i = argument < 0 ? argument + length : argument;
+			for ( ; --i >= 0; ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		}),
+
+		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
+			var i = argument < 0 ? argument + length : argument;
+			for ( ; ++i < length; ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		})
+	}
+};
+
+Expr.pseudos["nth"] = Expr.pseudos["eq"];
+
+// Add button/input type pseudos
+for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
+	Expr.pseudos[ i ] = createInputPseudo( i );
+}
+for ( i in { submit: true, reset: true } ) {
+	Expr.pseudos[ i ] = createButtonPseudo( i );
+}
+
+// Easy API for creating new setFilters
+function setFilters() {}
+setFilters.prototype = Expr.filters = Expr.pseudos;
+Expr.setFilters = new setFilters();
+
+function tokenize( selector, parseOnly ) {
+	var matched, match, tokens, type,
+		soFar, groups, preFilters,
+		cached = tokenCache[ selector + " " ];
+
+	if ( cached ) {
+		return parseOnly ? 0 : cached.slice( 0 );
+	}
+
+	soFar = selector;
+	groups = [];
+	preFilters = Expr.preFilter;
+
+	while ( soFar ) {
+
+		// Comma and first run
+		if ( !matched || (match = rcomma.exec( soFar )) ) {
+			if ( match ) {
+				// Don't consume trailing commas as valid
+				soFar = soFar.slice( match[0].length ) || soFar;
+			}
+			groups.push( (tokens = []) );
+		}
+
+		matched = false;
+
+		// Combinators
+		if ( (match = rcombinators.exec( soFar )) ) {
+			matched = match.shift();
+			tokens.push({
+				value: matched,
+				// Cast descendant combinators to space
+				type: match[0].replace( rtrim, " " )
+			});
+			soFar = soFar.slice( matched.length );
+		}
+
+		// Filters
+		for ( type in Expr.filter ) {
+			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
+				(match = preFilters[ type ]( match ))) ) {
+				matched = match.shift();
+				tokens.push({
+					value: matched,
+					type: type,
+					matches: match
+				});
+				soFar = soFar.slice( matched.length );
+			}
+		}
+
+		if ( !matched ) {
+			break;
+		}
+	}
+
+	// Return the length of the invalid excess
+	// if we're just parsing
+	// Otherwise, throw an error or return tokens
+	return parseOnly ?
+		soFar.length :
+		soFar ?
+			Sizzle.error( selector ) :
+			// Cache the tokens
+			tokenCache( selector, groups ).slice( 0 );
+}
+
+function toSelector( tokens ) {
+	var i = 0,
+		len = tokens.length,
+		selector = "";
+	for ( ; i < len; i++ ) {
+		selector += tokens[i].value;
+	}
+	return selector;
+}
+
+function addCombinator( matcher, combinator, base ) {
+	var dir = combinator.dir,
+		checkNonElements = base && dir === "parentNode",
+		doneName = done++;
+
+	return combinator.first ?
+		// Check against closest ancestor/preceding element
+		function( elem, context, xml ) {
+			while ( (elem = elem[ dir ]) ) {
+				if ( elem.nodeType === 1 || checkNonElements ) {
+					return matcher( elem, context, xml );
+				}
+			}
+		} :
+
+		// Check against all ancestor/preceding elements
+		function( elem, context, xml ) {
+			var oldCache, outerCache,
+				newCache = [ dirruns, doneName ];
+
+			// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
+			if ( xml ) {
+				while ( (elem = elem[ dir ]) ) {
+					if ( elem.nodeType === 1 || checkNonElements ) {
+						if ( matcher( elem, context, xml ) ) {
+							return true;
+						}
+					}
+				}
+			} else {
+				while ( (elem = elem[ dir ]) ) {
+					if ( elem.nodeType === 1 || checkNonElements ) {
+						outerCache = elem[ expando ] || (elem[ expando ] = {});
+						if ( (oldCache = outerCache[ dir ]) &&
+							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
+
+							// Assign to newCache so results back-propagate to previous elements
+							return (newCache[ 2 ] = oldCache[ 2 ]);
+						} else {
+							// Reuse newcache so results back-propagate to previous elements
+							outerCache[ dir ] = newCache;
+
+							// A match means we're done; a fail means we have to keep checking
+							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
+								return true;
+							}
+						}
+					}
+				}
+			}
+		};
+}
+
+function elementMatcher( matchers ) {
+	return matchers.length > 1 ?
+		function( elem, context, xml ) {
+			var i = matchers.length;
+			while ( i-- ) {
+				if ( !matchers[i]( elem, context, xml ) ) {
+					return false;
+				}
+			}
+			return true;
+		} :
+		matchers[0];
+}
+
+function condense( unmatched, map, filter, context, xml ) {
+	var elem,
+		newUnmatched = [],
+		i = 0,
+		len = unmatched.length,
+		mapped = map != null;
+
+	for ( ; i < len; i++ ) {
+		if ( (elem = unmatched[i]) ) {
+			if ( !filter || filter( elem, context, xml ) ) {
+				newUnmatched.push( elem );
+				if ( mapped ) {
+					map.push( i );
+				}
+			}
+		}
+	}
+
+	return newUnmatched;
+}
+
+function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
+	if ( postFilter && !postFilter[ expando ] ) {
+		postFilter = setMatcher( postFilter );
+	}
+	if ( postFinder && !postFinder[ expando ] ) {
+		postFinder = setMatcher( postFinder, postSelector );
+	}
+	return markFunction(function( seed, results, context, xml ) {
+		var temp, i, elem,
+			preMap = [],
+			postMap = [],
+			preexisting = results.length,
+
+			// Get initial elements from seed or context
+			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
+
+			// Prefilter to get matcher input, preserving a map for seed-results synchronization
+			matcherIn = preFilter && ( seed || !selector ) ?
+				condense( elems, preMap, preFilter, context, xml ) :
+				elems,
+
+			matcherOut = matcher ?
+				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
+				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
+
+					// ...intermediate processing is necessary
+					[] :
+
+					// ...otherwise use results directly
+					results :
+				matcherIn;
+
+		// Find primary matches
+		if ( matcher ) {
+			matcher( matcherIn, matcherOut, context, xml );
+		}
+
+		// Apply postFilter
+		if ( postFilter ) {
+			temp = condense( matcherOut, postMap );
+			postFilter( temp, [], context, xml );
+
+			// Un-match failing elements by moving them back to matcherIn
+			i = temp.length;
+			while ( i-- ) {
+				if ( (elem = temp[i]) ) {
+					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
+				}
+			}
+		}
+
+		if ( seed ) {
+			if ( postFinder || preFilter ) {
+				if ( postFinder ) {
+					// Get the final matcherOut by condensing this intermediate into postFinder contexts
+					temp = [];
+					i = matcherOut.length;
+					while ( i-- ) {
+						if ( (elem = matcherOut[i]) ) {
+							// Restore matcherIn since elem is not yet a final match
+							temp.push( (matcherIn[i] = elem) );
+						}
+					}
+					postFinder( null, (matcherOut = []), temp, xml );
+				}
+
+				// Move matched elements from seed to results to keep them synchronized
+				i = matcherOut.length;
+				while ( i-- ) {
+					if ( (elem = matcherOut[i]) &&
+						(temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) {
+
+						seed[temp] = !(results[temp] = elem);
+					}
+				}
+			}
+
+		// Add elements to results, through postFinder if defined
+		} else {
+			matcherOut = condense(
+				matcherOut === results ?
+					matcherOut.splice( preexisting, matcherOut.length ) :
+					matcherOut
+			);
+			if ( postFinder ) {
+				postFinder( null, results, matcherOut, xml );
+			} else {
+				push.apply( results, matcherOut );
+			}
+		}
+	});
+}
+
+function matcherFromTokens( tokens ) {
+	var checkContext, matcher, j,
+		len = tokens.length,
+		leadingRelative = Expr.relative[ tokens[0].type ],
+		implicitRelative = leadingRelative || Expr.relative[" "],
+		i = leadingRelative ? 1 : 0,
+
+		// The foundational matcher ensures that elements are reachable from top-level context(s)
+		matchContext = addCombinator( function( elem ) {
+			return elem === checkContext;
+		}, implicitRelative, true ),
+		matchAnyContext = addCombinator( function( elem ) {
+			return indexOf.call( checkContext, elem ) > -1;
+		}, implicitRelative, true ),
+		matchers = [ function( elem, context, xml ) {
+			return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
+				(checkContext = context).nodeType ?
+					matchContext( elem, context, xml ) :
+					matchAnyContext( elem, context, xml ) );
+		} ];
+
+	for ( ; i < len; i++ ) {
+		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
+			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
+		} else {
+			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
+
+			// Return special upon seeing a positional matcher
+			if ( matcher[ expando ] ) {
+				// Find the next relative operator (if any) for proper handling
+				j = ++i;
+				for ( ; j < len; j++ ) {
+					if ( Expr.relative[ tokens[j].type ] ) {
+						break;
+					}
+				}
+				return setMatcher(
+					i > 1 && elementMatcher( matchers ),
+					i > 1 && toSelector(
+						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
+						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
+					).replace( rtrim, "$1" ),
+					matcher,
+					i < j && matcherFromTokens( tokens.slice( i, j ) ),
+					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
+					j < len && toSelector( tokens )
+				);
+			}
+			matchers.push( matcher );
+		}
+	}
+
+	return elementMatcher( matchers );
+}
+
+function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
+	var bySet = setMatchers.length > 0,
+		byElement = elementMatchers.length > 0,
+		superMatcher = function( seed, context, xml, results, outermost ) {
+			var elem, j, matcher,
+				matchedCount = 0,
+				i = "0",
+				unmatched = seed && [],
+				setMatched = [],
+				contextBackup = outermostContext,
+				// We must always have either seed elements or outermost context
+				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
+				// Use integer dirruns iff this is the outermost matcher
+				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
+				len = elems.length;
+
+			if ( outermost ) {
+				outermostContext = context !== document && context;
+			}
+
+			// Add elements passing elementMatchers directly to results
+			// Keep `i` a string if there are no elements so `matchedCount` will be "00" below
+			// Support: IE<9, Safari
+			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
+			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
+				if ( byElement && elem ) {
+					j = 0;
+					while ( (matcher = elementMatchers[j++]) ) {
+						if ( matcher( elem, context, xml ) ) {
+							results.push( elem );
+							break;
+						}
+					}
+					if ( outermost ) {
+						dirruns = dirrunsUnique;
+					}
+				}
+
+				// Track unmatched elements for set filters
+				if ( bySet ) {
+					// They will have gone through all possible matchers
+					if ( (elem = !matcher && elem) ) {
+						matchedCount--;
+					}
+
+					// Lengthen the array for every element, matched or not
+					if ( seed ) {
+						unmatched.push( elem );
+					}
+				}
+			}
+
+			// Apply set filters to unmatched elements
+			matchedCount += i;
+			if ( bySet && i !== matchedCount ) {
+				j = 0;
+				while ( (matcher = setMatchers[j++]) ) {
+					matcher( unmatched, setMatched, context, xml );
+				}
+
+				if ( seed ) {
+					// Reintegrate element matches to eliminate the need for sorting
+					if ( matchedCount > 0 ) {
+						while ( i-- ) {
+							if ( !(unmatched[i] || setMatched[i]) ) {
+								setMatched[i] = pop.call( results );
+							}
+						}
+					}
+
+					// Discard index placeholder values to get only actual matches
+					setMatched = condense( setMatched );
+				}
+
+				// Add matches to results
+				push.apply( results, setMatched );
+
+				// Seedless set matches succeeding multiple successful matchers stipulate sorting
+				if ( outermost && !seed && setMatched.length > 0 &&
+					( matchedCount + setMatchers.length ) > 1 ) {
+
+					Sizzle.uniqueSort( results );
+				}
+			}
+
+			// Override manipulation of globals by nested matchers
+			if ( outermost ) {
+				dirruns = dirrunsUnique;
+				outermostContext = contextBackup;
+			}
+
+			return unmatched;
+		};
+
+	return bySet ?
+		markFunction( superMatcher ) :
+		superMatcher;
+}
+
+compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
+	var i,
+		setMatchers = [],
+		elementMatchers = [],
+		cached = compilerCache[ selector + " " ];
+
+	if ( !cached ) {
+		// Generate a function of recursive functions that can be used to check each element
+		if ( !group ) {
+			group = tokenize( selector );
+		}
+		i = group.length;
+		while ( i-- ) {
+			cached = matcherFromTokens( group[i] );
+			if ( cached[ expando ] ) {
+				setMatchers.push( cached );
+			} else {
+				elementMatchers.push( cached );
+			}
+		}
+
+		// Cache the compiled function
+		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
+	}
+	return cached;
+};
+
+function multipleContexts( selector, contexts, results ) {
+	var i = 0,
+		len = contexts.length;
+	for ( ; i < len; i++ ) {
+		Sizzle( selector, contexts[i], results );
+	}
+	return results;
+}
+
+function select( selector, context, results, seed ) {
+	var i, tokens, token, type, find,
+		match = tokenize( selector );
+
+	if ( !seed ) {
+		// Try to minimize operations if there is only one group
+		if ( match.length === 1 ) {
+
+			// Take a shortcut and set the context if the root selector is an ID
+			tokens = match[0] = match[0].slice( 0 );
+			if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
+					support.getById && context.nodeType === 9 && documentIsHTML &&
+					Expr.relative[ tokens[1].type ] ) {
+
+				context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
+				if ( !context ) {
+					return results;
+				}
+				selector = selector.slice( tokens.shift().value.length );
+			}
+
+			// Fetch a seed set for right-to-left matching
+			i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
+			while ( i-- ) {
+				token = tokens[i];
+
+				// Abort if we hit a combinator
+				if ( Expr.relative[ (type = token.type) ] ) {
+					break;
+				}
+				if ( (find = Expr.find[ type ]) ) {
+					// Search, expanding context for leading sibling combinators
+					if ( (seed = find(
+						token.matches[0].replace( runescape, funescape ),
+						rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
+					)) ) {
+
+						// If seed is empty or no tokens remain, we can return early
+						tokens.splice( i, 1 );
+						selector = seed.length && toSelector( tokens );
+						if ( !selector ) {
+							push.apply( results, seed );
+							return results;
+						}
+
+						break;
+					}
+				}
+			}
+		}
+	}
+
+	// Compile and execute a filtering function
+	// Provide `match` to avoid retokenization if we modified the selector above
+	compile( selector, match )(
+		seed,
+		context,
+		!documentIsHTML,
+		results,
+		rsibling.test( selector ) && testContext( context.parentNode ) || context
+	);
+	return results;
+}
+
+// One-time assignments
+
+// Sort stability
+support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
+
+// Support: Chrome<14
+// Always assume duplicates if they aren't passed to the comparison function
+support.detectDuplicates = !!hasDuplicate;
+
+// Initialize against the default document
+setDocument();
+
+// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
+// Detached nodes confoundingly follow *each other*
+support.sortDetached = assert(function( div1 ) {
+	// Should return 1, but returns 4 (following)
+	return div1.compareDocumentPosition( document.createElement("div") ) & 1;
+});
+
+// Support: IE<8
+// Prevent attribute/property "interpolation"
+// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
+if ( !assert(function( div ) {
+	div.innerHTML = "<a href='#'></a>";
+	return div.firstChild.getAttribute("href") === "#" ;
+}) ) {
+	addHandle( "type|href|height|width", function( elem, name, isXML ) {
+		if ( !isXML ) {
+			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
+		}
+	});
+}
+
+// Support: IE<9
+// Use defaultValue in place of getAttribute("value")
+if ( !support.attributes || !assert(function( div ) {
+	div.innerHTML = "<input/>";
+	div.firstChild.setAttribute( "value", "" );
+	return div.firstChild.getAttribute( "value" ) === "";
+}) ) {
+	addHandle( "value", function( elem, name, isXML ) {
+		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
+			return elem.defaultValue;
+		}
+	});
+}
+
+// Support: IE<9
+// Use getAttributeNode to fetch booleans when getAttribute lies
+if ( !assert(function( div ) {
+	return div.getAttribute("disabled") == null;
+}) ) {
+	addHandle( booleans, function( elem, name, isXML ) {
+		var val;
+		if ( !isXML ) {
+			return elem[ name ] === true ? name.toLowerCase() :
+					(val = elem.getAttributeNode( name )) && val.specified ?
+					val.value :
+				null;
+		}
+	});
+}
+
+return Sizzle;
+
+})( window );
+
+
+
+jQuery.find = Sizzle;
+jQuery.expr = Sizzle.selectors;
+jQuery.expr[":"] = jQuery.expr.pseudos;
+jQuery.unique = Sizzle.uniqueSort;
+jQuery.text = Sizzle.getText;
+jQuery.isXMLDoc = Sizzle.isXML;
+jQuery.contains = Sizzle.contains;
+
+
+
+var rneedsContext = jQuery.expr.match.needsContext;
+
+var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
+
+
+
+var risSimple = /^.[^:#\[\.,]*$/;
+
+// Implement the identical functionality for filter and not
+function winnow( elements, qualifier, not ) {
+	if ( jQuery.isFunction( qualifier ) ) {
+		return jQuery.grep( elements, function( elem, i ) {
+			/* jshint -W018 */
+			return !!qualifier.call( elem, i, elem ) !== not;
+		});
+
+	}
+
+	if ( qualifier.nodeType ) {
+		return jQuery.grep( elements, function( elem ) {
+			return ( elem === qualifier ) !== not;
+		});
+
+	}
+
+	if ( typeof qualifier === "string" ) {
+		if ( risSimple.test( qualifier ) ) {
+			return jQuery.filter( qualifier, elements, not );
+		}
+
+		qualifier = jQuery.filter( qualifier, elements );
+	}
+
+	return jQuery.grep( elements, function( elem ) {
+		return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not;
+	});
+}
+
+jQuery.filter = function( expr, elems, not ) {
+	var elem = elems[ 0 ];
+
+	if ( not ) {
+		expr = ":not(" + expr + ")";
+	}
+
+	return elems.length === 1 && elem.nodeType === 1 ?
+		jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :
+		jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
+			return elem.nodeType === 1;
+		}));
+};
+
+jQuery.fn.extend({
+	find: function( selector ) {
+		var i,
+			ret = [],
+			self = this,
+			len = self.length;
+
+		if ( typeof selector !== "string" ) {
+			return this.pushStack( jQuery( selector ).filter(function() {
+				for ( i = 0; i < len; i++ ) {
+					if ( jQuery.contains( self[ i ], this ) ) {
+						return true;
+					}
+				}
+			}) );
+		}
+
+		for ( i = 0; i < len; i++ ) {
+			jQuery.find( selector, self[ i ], ret );
+		}
+
+		// Needed because $( selector, context ) becomes $( context ).find( selector )
+		ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );
+		ret.selector = this.selector ? this.selector + " " + selector : selector;
+		return ret;
+	},
+	filter: function( selector ) {
+		return this.pushStack( winnow(this, selector || [], false) );
+	},
+	not: function( selector ) {
+		return this.pushStack( winnow(this, selector || [], true) );
+	},
+	is: function( selector ) {
+		return !!winnow(
+			this,
+
+			// If this is a positional/relative selector, check membership in the returned set
+			// so $("p:first").is("p:last") won't return true for a doc with two "p".
+			typeof selector === "string" && rneedsContext.test( selector ) ?
+				jQuery( selector ) :
+				selector || [],
+			false
+		).length;
+	}
+});
+
+
+// Initialize a jQuery object
+
+
+// A central reference to the root jQuery(document)
+var rootjQuery,
+
+	// Use the correct document accordingly with window argument (sandbox)
+	document = window.document,
+
+	// A simple way to check for HTML strings
+	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
+	// Strict HTML recognition (#11290: must start with <)
+	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,
+
+	init = jQuery.fn.init = function( selector, context ) {
+		var match, elem;
+
+		// HANDLE: $(""), $(null), $(undefined), $(false)
+		if ( !selector ) {
+			return this;
+		}
+
+		// Handle HTML strings
+		if ( typeof selector === "string" ) {
+			if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
+				// Assume that strings that start and end with <> are HTML and skip the regex check
+				match = [ null, selector, null ];
+
+			} else {
+				match = rquickExpr.exec( selector );
+			}
+
+			// Match html or make sure no context is specified for #id
+			if ( match && (match[1] || !context) ) {
+
+				// HANDLE: $(html) -> $(array)
+				if ( match[1] ) {
+					context = context instanceof jQuery ? context[0] : context;
+
+					// scripts is true for back-compat
+					// Intentionally let the error be thrown if parseHTML is not present
+					jQuery.merge( this, jQuery.parseHTML(
+						match[1],
+						context && context.nodeType ? context.ownerDocument || context : document,
+						true
+					) );
+
+					// HANDLE: $(html, props)
+					if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
+						for ( match in context ) {
+							// Properties of context are called as methods if possible
+							if ( jQuery.isFunction( this[ match ] ) ) {
+								this[ match ]( context[ match ] );
+
+							// ...and otherwise set as attributes
+							} else {
+								this.attr( match, context[ match ] );
+							}
+						}
+					}
+
+					return this;
+
+				// HANDLE: $(#id)
+				} else {
+					elem = document.getElementById( match[2] );
+
+					// Check parentNode to catch when Blackberry 4.6 returns
+					// nodes that are no longer in the document #6963
+					if ( elem && elem.parentNode ) {
+						// Handle the case where IE and Opera return items
+						// by name instead of ID
+						if ( elem.id !== match[2] ) {
+							return rootjQuery.find( selector );
+						}
+
+						// Otherwise, we inject the element directly into the jQuery object
+						this.length = 1;
+						this[0] = elem;
+					}
+
+					this.context = document;
+					this.selector = selector;
+					return this;
+				}
+
+			// HANDLE: $(expr, $(...))
+			} else if ( !context || context.jquery ) {
+				return ( context || rootjQuery ).find( selector );
+
+			// HANDLE: $(expr, context)
+			// (which is just equivalent to: $(context).find(expr)
+			} else {
+				return this.constructor( context ).find( selector );
+			}
+
+		// HANDLE: $(DOMElement)
+		} else if ( selector.nodeType ) {
+			this.context = this[0] = selector;
+			this.length = 1;
+			return this;
+
+		// HANDLE: $(function)
+		// Shortcut for document ready
+		} else if ( jQuery.isFunction( selector ) ) {
+			return typeof rootjQuery.ready !== "undefined" ?
+				rootjQuery.ready( selector ) :
+				// Execute immediately if ready is not present
+				selector( jQuery );
+		}
+
+		if ( selector.selector !== undefined ) {
+			this.selector = selector.selector;
+			this.context = selector.context;
+		}
+
+		return jQuery.makeArray( selector, this );
+	};
+
+// Give the init function the jQuery prototype for later instantiation
+init.prototype = jQuery.fn;
+
+// Initialize central reference
+rootjQuery = jQuery( document );
+
+
+var rparentsprev = /^(?:parents|prev(?:Until|All))/,
+	// methods guaranteed to produce a unique set when starting from a unique set
+	guaranteedUnique = {
+		children: true,
+		contents: true,
+		next: true,
+		prev: true
+	};
+
+jQuery.extend({
+	dir: function( elem, dir, until ) {
+		var matched = [],
+			cur = elem[ dir ];
+
+		while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
+			if ( cur.nodeType === 1 ) {
+				matched.push( cur );
+			}
+			cur = cur[dir];
+		}
+		return matched;
+	},
+
+	sibling: function( n, elem ) {
+		var r = [];
+
+		for ( ; n; n = n.nextSibling ) {
+			if ( n.nodeType === 1 && n !== elem ) {
+				r.push( n );
+			}
+		}
+
+		return r;
+	}
+});
+
+jQuery.fn.extend({
+	has: function( target ) {
+		var i,
+			targets = jQuery( target, this ),
+			len = targets.length;
+
+		return this.filter(function() {
+			for ( i = 0; i < len; i++ ) {
+				if ( jQuery.contains( this, targets[i] ) ) {
+					return true;
+				}
+			}
+		});
+	},
+
+	closest: function( selectors, context ) {
+		var cur,
+			i = 0,
+			l = this.length,
+			matched = [],
+			pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
+				jQuery( selectors, context || this.context ) :
+				0;
+
+		for ( ; i < l; i++ ) {
+			for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) {
+				// Always skip document fragments
+				if ( cur.nodeType < 11 && (pos ?
+					pos.index(cur) > -1 :
+
+					// Don't pass non-elements to Sizzle
+					cur.nodeType === 1 &&
+						jQuery.find.matchesSelector(cur, selectors)) ) {
+
+					matched.push( cur );
+					break;
+				}
+			}
+		}
+
+		return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched );
+	},
+
+	// Determine the position of an element within
+	// the matched set of elements
+	index: function( elem ) {
+
+		// No argument, return index in parent
+		if ( !elem ) {
+			return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1;
+		}
+
+		// index in selector
+		if ( typeof elem === "string" ) {
+			return jQuery.inArray( this[0], jQuery( elem ) );
+		}
+
+		// Locate the position of the desired element
+		return jQuery.inArray(
+			// If it receives a jQuery object, the first element is used
+			elem.jquery ? elem[0] : elem, this );
+	},
+
+	add: function( selector, context ) {
+		return this.pushStack(
+			jQuery.unique(
+				jQuery.merge( this.get(), jQuery( selector, context ) )
+			)
+		);
+	},
+
+	addBack: function( selector ) {
+		return this.add( selector == null ?
+			this.prevObject : this.prevObject.filter(selector)
+		);
+	}
+});
+
+function sibling( cur, dir ) {
+	do {
+		cur = cur[ dir ];
+	} while ( cur && cur.nodeType !== 1 );
+
+	return cur;
+}
+
+jQuery.each({
+	parent: function( elem ) {
+		var parent = elem.parentNode;
+		return parent && parent.nodeType !== 11 ? parent : null;
+	},
+	parents: function( elem ) {
+		return jQuery.dir( elem, "parentNode" );
+	},
+	parentsUntil: function( elem, i, until ) {
+		return jQuery.dir( elem, "parentNode", until );
+	},
+	next: function( elem ) {
+		return sibling( elem, "nextSibling" );
+	},
+	prev: function( elem ) {
+		return sibling( elem, "previousSibling" );
+	},
+	nextAll: function( elem ) {
+		return jQuery.dir( elem, "nextSibling" );
+	},
+	prevAll: function( elem ) {
+		return jQuery.dir( elem, "previousSibling" );
+	},
+	nextUntil: function( elem, i, until ) {
+		return jQuery.dir( elem, "nextSibling", until );
+	},
+	prevUntil: function( elem, i, until ) {
+		return jQuery.dir( elem, "previousSibling", until );
+	},
+	siblings: function( elem ) {
+		return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
+	},
+	children: function( elem ) {
+		return jQuery.sibling( elem.firstChild );
+	},
+	contents: function( elem ) {
+		return jQuery.nodeName( elem, "iframe" ) ?
+			elem.contentDocument || elem.contentWindow.document :
+			jQuery.merge( [], elem.childNodes );
+	}
+}, function( name, fn ) {
+	jQuery.fn[ name ] = function( until, selector ) {
+		var ret = jQuery.map( this, fn, until );
+
+		if ( name.slice( -5 ) !== "Until" ) {
+			selector = until;
+		}
+
+		if ( selector && typeof selector === "string" ) {
+			ret = jQuery.filter( selector, ret );
+		}
+
+		if ( this.length > 1 ) {
+			// Remove duplicates
+			if ( !guaranteedUnique[ name ] ) {
+				ret = jQuery.unique( ret );
+			}
+
+			// Reverse order for parents* and prev-derivatives
+			if ( rparentsprev.test( name ) ) {
+				ret = ret.reverse();
+			}
+		}
+
+		return this.pushStack( ret );
+	};
+});
+var rnotwhite = (/\S+/g);
+
+
+
+// String to Object options format cache
+var optionsCache = {};
+
+// Convert String-formatted options into Object-formatted ones and store in cache
+function createOptions( options ) {
+	var object = optionsCache[ options ] = {};
+	jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {
+		object[ flag ] = true;
+	});
+	return object;
+}
+
+/*
+ * Create a callback list using the following parameters:
+ *
+ *	options: an optional list of space-separated options that will change how
+ *			the callback list behaves or a more traditional option object
+ *
+ * By default a callback list will act like an event callback list and can be
+ * "fired" multiple times.
+ *
+ * Possible options:
+ *
+ *	once:			will ensure the callback list can only be fired once (like a Deferred)
+ *
+ *	memory:			will keep track of previous values and will call any callback added
+ *					after the list has been fired right away with the latest "memorized"
+ *					values (like a Deferred)
+ *
+ *	unique:			will ensure a callback can only be added once (no duplicate in the list)
+ *
+ *	stopOnFalse:	interrupt callings when a callback returns false
+ *
+ */
+jQuery.Callbacks = function( options ) {
+
+	// Convert options from String-formatted to Object-formatted if needed
+	// (we check in cache first)
+	options = typeof options === "string" ?
+		( optionsCache[ options ] || createOptions( options ) ) :
+		jQuery.extend( {}, options );
+
+	var // Flag to know if list is currently firing
+		firing,
+		// Last fire value (for non-forgettable lists)
+		memory,
+		// Flag to know if list was already fired
+		fired,
+		// End of the loop when firing
+		firingLength,
+		// Index of currently firing callback (modified by remove if needed)
+		firingIndex,
+		// First callback to fire (used internally by add and fireWith)
+		firingStart,
+		// Actual callback list
+		list = [],
+		// Stack of fire calls for repeatable lists
+		stack = !options.once && [],
+		// Fire callbacks
+		fire = function( data ) {
+			memory = options.memory && data;
+			fired = true;
+			firingIndex = firingStart || 0;
+			firingStart = 0;
+			firingLength = list.length;
+			firing = true;
+			for ( ; list && firingIndex < firingLength; firingIndex++ ) {
+				if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
+					memory = false; // To prevent further calls using add
+					break;
+				}
+			}
+			firing = false;
+			if ( list ) {
+				if ( stack ) {
+					if ( stack.length ) {
+						fire( stack.shift() );
+					}
+				} else if ( memory ) {
+					list = [];
+				} else {
+					self.disable();
+				}
+			}
+		},
+		// Actual Callbacks object
+		self = {
+			// Add a callback or a collection of callbacks to the list
+			add: function() {
+				if ( list ) {
+					// First, we save the current length
+					var start = list.length;
+					(function add( args ) {
+						jQuery.each( args, function( _, arg ) {
+							var type = jQuery.type( arg );
+							if ( type === "function" ) {
+								if ( !options.unique || !self.has( arg ) ) {
+									list.push( arg );
+								}
+							} else if ( arg && arg.length && type !== "string" ) {
+								// Inspect recursively
+								add( arg );
+							}
+						});
+					})( arguments );
+					// Do we need to add the callbacks to the
+					// current firing batch?
+					if ( firing ) {
+						firingLength = list.length;
+					// With memory, if we're not firing then
+					// we should call right away
+					} else if ( memory ) {
+						firingStart = start;
+						fire( memory );
+					}
+				}
+				return this;
+			},
+			// Remove a callback from the list
+			remove: function() {
+				if ( list ) {
+					jQuery.each( arguments, function( _, arg ) {
+						var index;
+						while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
+							list.splice( index, 1 );
+							// Handle firing indexes
+							if ( firing ) {
+								if ( index <= firingLength ) {
+									firingLength--;
+								}
+								if ( index <= firingIndex ) {
+									firingIndex--;
+								}
+							}
+						}
+					});
+				}
+				return this;
+			},
+			// Check if a given callback is in the list.
+			// If no argument is given, return whether or not list has callbacks attached.
+			has: function( fn ) {
+				return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length );
+			},
+			// Remove all callbacks from the list
+			empty: function() {
+				list = [];
+				firingLength = 0;
+				return this;
+			},
+			// Have the list do nothing anymore
+			disable: function() {
+				list = stack = memory = undefined;
+				return this;
+			},
+			// Is it disabled?
+			disabled: function() {
+				return !list;
+			},
+			// Lock the list in its current state
+			lock: function() {
+				stack = undefined;
+				if ( !memory ) {
+					self.disable();
+				}
+				return this;
+			},
+			// Is it locked?
+			locked: function() {
+				return !stack;
+			},
+			// Call all callbacks with the given context and arguments
+			fireWith: function( context, args ) {
+				if ( list && ( !fired || stack ) ) {
+					args = args || [];
+					args = [ context, args.slice ? args.slice() : args ];
+					if ( firing ) {
+						stack.push( args );
+					} else {
+						fire( args );
+					}
+				}
+				return this;
+			},
+			// Call all the callbacks with the given arguments
+			fire: function() {
+				self.fireWith( this, arguments );
+				return this;
+			},
+			// To know if the callbacks have already been called at least once
+			fired: function() {
+				return !!fired;
+			}
+		};
+
+	return self;
+};
+
+
+jQuery.extend({
+
+	Deferred: function( func ) {
+		var tuples = [
+				// action, add listener, listener list, final state
+				[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
+				[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
+				[ "notify", "progress", jQuery.Callbacks("memory") ]
+			],
+			state = "pending",
+			promise = {
+				state: function() {
+					return state;
+				},
+				always: function() {
+					deferred.done( arguments ).fail( arguments );
+					return this;
+				},
+				then: function( /* fnDone, fnFail, fnProgress */ ) {
+					var fns = arguments;
+					return jQuery.Deferred(function( newDefer ) {
+						jQuery.each( tuples, function( i, tuple ) {
+							var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];
+							// deferred[ done | fail | progress ] for forwarding actions to newDefer
+							deferred[ tuple[1] ](function() {
+								var returned = fn && fn.apply( this, arguments );
+								if ( returned && jQuery.isFunction( returned.promise ) ) {
+									returned.promise()
+										.done( newDefer.resolve )
+										.fail( newDefer.reject )
+										.progress( newDefer.notify );
+								} else {
+									newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments );
+								}
+							});
+						});
+						fns = null;
+					}).promise();
+				},
+				// Get a promise for this deferred
+				// If obj is provided, the promise aspect is added to the object
+				promise: function( obj ) {
+					return obj != null ? jQuery.extend( obj, promise ) : promise;
+				}
+			},
+			deferred = {};
+
+		// Keep pipe for back-compat
+		promise.pipe = promise.then;
+
+		// Add list-specific methods
+		jQuery.each( tuples, function( i, tuple ) {
+			var list = tuple[ 2 ],
+				stateString = tuple[ 3 ];
+
+			// promise[ done | fail | progress ] = list.add
+			promise[ tuple[1] ] = list.add;
+
+			// Handle state
+			if ( stateString ) {
+				list.add(function() {
+					// state = [ resolved | rejected ]
+					state = stateString;
+
+				// [ reject_list | resolve_list ].disable; progress_list.lock
+				}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
+			}
+
+			// deferred[ resolve | reject | notify ]
+			deferred[ tuple[0] ] = function() {
+				deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments );
+				return this;
+			};
+			deferred[ tuple[0] + "With" ] = list.fireWith;
+		});
+
+		// Make the deferred a promise
+		promise.promise( deferred );
+
+		// Call given func if any
+		if ( func ) {
+			func.call( deferred, deferred );
+		}
+
+		// All done!
+		return deferred;
+	},
+
+	// Deferred helper
+	when: function( subordinate /* , ..., subordinateN */ ) {
+		var i = 0,
+			resolveValues = slice.call( arguments ),
+			length = resolveValues.length,
+
+			// the count of uncompleted subordinates
+			remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
+
+			// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
+			deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
+
+			// Update function for both resolve and progress values
+			updateFunc = function( i, contexts, values ) {
+				return function( value ) {
+					contexts[ i ] = this;
+					values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
+					if ( values === progressValues ) {
+						deferred.notifyWith( contexts, values );
+
+					} else if ( !(--remaining) ) {
+						deferred.resolveWith( contexts, values );
+					}
+				};
+			},
+
+			progressValues, progressContexts, resolveContexts;
+
+		// add listeners to Deferred subordinates; treat others as resolved
+		if ( length > 1 ) {
+			progressValues = new Array( length );
+			progressContexts = new Array( length );
+			resolveContexts = new Array( length );
+			for ( ; i < length; i++ ) {
+				if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
+					resolveValues[ i ].promise()
+						.done( updateFunc( i, resolveContexts, resolveValues ) )
+						.fail( deferred.reject )
+						.progress( updateFunc( i, progressContexts, progressValues ) );
+				} else {
+					--remaining;
+				}
+			}
+		}
+
+		// if we're not waiting on anything, resolve the master
+		if ( !remaining ) {
+			deferred.resolveWith( resolveContexts, resolveValues );
+		}
+
+		return deferred.promise();
+	}
+});
+
+
+// The deferred used on DOM ready
+var readyList;
+
+jQuery.fn.ready = function( fn ) {
+	// Add the callback
+	jQuery.ready.promise().done( fn );
+
+	return this;
+};
+
+jQuery.extend({
+	// Is the DOM ready to be used? Set to true once it occurs.
+	isReady: false,
+
+	// A counter to track how many items to wait for before
+	// the ready event fires. See #6781
+	readyWait: 1,
+
+	// Hold (or release) the ready event
+	holdReady: function( hold ) {
+		if ( hold ) {
+			jQuery.readyWait++;
+		} else {
+			jQuery.ready( true );
+		}
+	},
+
+	// Handle when the DOM is ready
+	ready: function( wait ) {
+
+		// Abort if there are pending holds or we're already ready
+		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
+			return;
+		}
+
+		// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
+		if ( !document.body ) {
+			return setTimeout( jQuery.ready );
+		}
+
+		// Remember that the DOM is ready
+		jQuery.isReady = true;
+
+		// If a normal DOM Ready event fired, decrement, and wait if need be
+		if ( wait !== true && --jQuery.readyWait > 0 ) {
+			return;
+		}
+
+		// If there are functions bound, to execute
+		readyList.resolveWith( document, [ jQuery ] );
+
+		// Trigger any bound ready events
+		if ( jQuery.fn.trigger ) {
+			jQuery( document ).trigger("ready").off("ready");
+		}
+	}
+});
+
+/**
+ * Clean-up method for dom ready events
+ */
+function detach() {
+	if ( document.addEventListener ) {
+		document.removeEventListener( "DOMContentLoaded", completed, false );
+		window.removeEventListener( "load", completed, false );
+
+	} else {
+		document.detachEvent( "onreadystatechange", completed );
+		window.detachEvent( "onload", completed );
+	}
+}
+
+/**
+ * The ready event handler and self cleanup method
+ */
+function completed() {
+	// readyState === "complete" is good enough for us to call the dom ready in oldIE
+	if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) {
+		detach();
+		jQuery.ready();
+	}
+}
+
+jQuery.ready.promise = function( obj ) {
+	if ( !readyList ) {
+
+		readyList = jQuery.Deferred();
+
+		// Catch cases where $(document).ready() is called after the browser event has already occurred.
+		// we once tried to use readyState "interactive" here, but it caused issues like the one
+		// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
+		if ( document.readyState === "complete" ) {
+			// Handle it asynchronously to allow scripts the opportunity to delay ready
+			setTimeout( jQuery.ready );
+
+		// Standards-based browsers support DOMContentLoaded
+		} else if ( document.addEventListener ) {
+			// Use the handy event callback
+			document.addEventListener( "DOMContentLoaded", completed, false );
+
+			// A fallback to window.onload, that will always work
+			window.addEventListener( "load", completed, false );
+
+		// If IE event model is used
+		} else {
+			// Ensure firing before onload, maybe late but safe also for iframes
+			document.attachEvent( "onreadystatechange", completed );
+
+			// A fallback to window.onload, that will always work
+			window.attachEvent( "onload", completed );
+
+			// If IE and not a frame
+			// continually check to see if the document is ready
+			var top = false;
+
+			try {
+				top = window.frameElement == null && document.documentElement;
+			} catch(e) {}
+
+			if ( top && top.doScroll ) {
+				(function doScrollCheck() {
+					if ( !jQuery.isReady ) {
+
+						try {
+							// Use the trick by Diego Perini
+							// http://javascript.nwbox.com/IEContentLoaded/
+							top.doScroll("left");
+						} catch(e) {
+							return setTimeout( doScrollCheck, 50 );
+						}
+
+						// detach all dom ready events
+						detach();
+
+						// and execute any waiting functions
+						jQuery.ready();
+					}
+				})();
+			}
+		}
+	}
+	return readyList.promise( obj );
+};
+
+
+var strundefined = typeof undefined;
+
+
+
+// Support: IE<9
+// Iteration over object's inherited properties before its own
+var i;
+for ( i in jQuery( support ) ) {
+	break;
+}
+support.ownLast = i !== "0";
+
+// Note: most support tests are defined in their respective modules.
+// false until the test is run
+support.inlineBlockNeedsLayout = false;
+
+jQuery(function() {
+	// We need to execute this one support test ASAP because we need to know
+	// if body.style.zoom needs to be set.
+
+	var container, div,
+		body = document.getElementsByTagName("body")[0];
+
+	if ( !body ) {
+		// Return for frameset docs that don't have a body
+		return;
+	}
+
+	// Setup
+	container = document.createElement( "div" );
+	container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px";
+
+	div = document.createElement( "div" );
+	body.appendChild( container ).appendChild( div );
+
+	if ( typeof div.style.zoom !== strundefined ) {
+		// Support: IE<8
+		// Check if natively block-level elements act like inline-block
+		// elements when setting their display to 'inline' and giving
+		// them layout
+		div.style.cssText = "border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1";
+
+		if ( (support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 )) ) {
+			// Prevent IE 6 from affecting layout for positioned elements #11048
+			// Prevent IE from shrinking the body in IE 7 mode #12869
+			// Support: IE<8
+			body.style.zoom = 1;
+		}
+	}
+
+	body.removeChild( container );
+
+	// Null elements to avoid leaks in IE
+	container = div = null;
+});
+
+
+
+
+(function() {
+	var div = document.createElement( "div" );
+
+	// Execute the test only if not already executed in another module.
+	if (support.deleteExpando == null) {
+		// Support: IE<9
+		support.deleteExpando = true;
+		try {
+			delete div.test;
+		} catch( e ) {
+			support.deleteExpando = false;
+		}
+	}
+
+	// Null elements to avoid leaks in IE.
+	div = null;
+})();
+
+
+/**
+ * Determines whether an object can have data
+ */
+jQuery.acceptData = function( elem ) {
+	var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ],
+		nodeType = +elem.nodeType || 1;
+
+	// Do not set data on non-element DOM nodes because it will not be cleared (#8335).
+	return nodeType !== 1 && nodeType !== 9 ?
+		false :
+
+		// Nodes accept data unless otherwise specified; rejection can be conditional
+		!noData || noData !== true && elem.getAttribute("classid") === noData;
+};
+
+
+var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
+	rmultiDash = /([A-Z])/g;
+
+function dataAttr( elem, key, data ) {
+	// If nothing was found internally, try to fetch any
+	// data from the HTML5 data-* attribute
+	if ( data === undefined && elem.nodeType === 1 ) {
+
+		var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
+
+		data = elem.getAttribute( name );
+
+		if ( typeof data === "string" ) {
+			try {
+				data = data === "true" ? true :
+					data === "false" ? false :
+					data === "null" ? null :
+					// Only convert to a number if it doesn't change the string
+					+data + "" === data ? +data :
+					rbrace.test( data ) ? jQuery.parseJSON( data ) :
+					data;
+			} catch( e ) {}
+
+			// Make sure we set the data so it isn't changed later
+			jQuery.data( elem, key, data );
+
+		} else {
+			data = undefined;
+		}
+	}
+
+	return data;
+}
+
+// checks a cache object for emptiness
+function isEmptyDataObject( obj ) {
+	var name;
+	for ( name in obj ) {
+
+		// if the public data object is empty, the private is still empty
+		if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
+			continue;
+		}
+		if ( name !== "toJSON" ) {
+			return false;
+		}
+	}
+
+	return true;
+}
+
+function internalData( elem, name, data, pvt /* Internal Use Only */ ) {
+	if ( !jQuery.acceptData( elem ) ) {
+		return;
+	}
+
+	var ret, thisCache,
+		internalKey = jQuery.expando,
+
+		// We have to handle DOM nodes and JS objects differently because IE6-7
+		// can't GC object references properly across the DOM-JS boundary
+		isNode = elem.nodeType,
+
+		// Only DOM nodes need the global jQuery cache; JS object data is
+		// attached directly to the object so GC can occur automatically
+		cache = isNode ? jQuery.cache : elem,
+
+		// Only defining an ID for JS objects if its cache already exists allows
+		// the code to shortcut on the same path as a DOM node with no cache
+		id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
+
+	// Avoid doing any more work than we need to when trying to get data on an
+	// object that has no data at all
+	if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) {
+		return;
+	}
+
+	if ( !id ) {
+		// Only DOM nodes need a new unique ID for each element since their data
+		// ends up in the global cache
+		if ( isNode ) {
+			id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;
+		} else {
+			id = internalKey;
+		}
+	}
+
+	if ( !cache[ id ] ) {
+		// Avoid exposing jQuery metadata on plain JS objects when the object
+		// is serialized using JSON.stringify
+		cache[ id ] = isNode ? {} : { toJSON: jQuery.noop };
+	}
+
+	// An object can be passed to jQuery.data instead of a key/value pair; this gets
+	// shallow copied over onto the existing cache
+	if ( typeof name === "object" || typeof name === "function" ) {
+		if ( pvt ) {
+			cache[ id ] = jQuery.extend( cache[ id ], name );
+		} else {
+			cache[ id ].data = jQuery.extend( cache[ id ].data, name );
+		}
+	}
+
+	thisCache = cache[ id ];
+
+	// jQuery data() is stored in a separate object inside the object's internal data
+	// cache in order to avoid key collisions between internal data and user-defined
+	// data.
+	if ( !pvt ) {
+		if ( !thisCache.data ) {
+			thisCache.data = {};
+		}
+
+		thisCache = thisCache.data;
+	}
+
+	if ( data !== undefined ) {
+		thisCache[ jQuery.camelCase( name ) ] = data;
+	}
+
+	// Check for both converted-to-camel and non-converted data property names
+	// If a data property was specified
+	if ( typeof name === "string" ) {
+
+		// First Try to find as-is property data
+		ret = thisCache[ name ];
+
+		// Test for null|undefined property data
+		if ( ret == null ) {
+
+			// Try to find the camelCased property
+			ret = thisCache[ jQuery.camelCase( name ) ];
+		}
+	} else {
+		ret = thisCache;
+	}
+
+	return ret;
+}
+
+function internalRemoveData( elem, name, pvt ) {
+	if ( !jQuery.acceptData( elem ) ) {
+		return;
+	}
+
+	var thisCache, i,
+		isNode = elem.nodeType,
+
+		// See jQuery.data for more information
+		cache = isNode ? jQuery.cache : elem,
+		id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
+
+	// If there is already no cache entry for this object, there is no
+	// purpose in continuing
+	if ( !cache[ id ] ) {
+		return;
+	}
+
+	if ( name ) {
+
+		thisCache = pvt ? cache[ id ] : cache[ id ].data;
+
+		if ( thisCache ) {
+
+			// Support array or space separated string names for data keys
+			if ( !jQuery.isArray( name ) ) {
+
+				// try the string as a key before any manipulation
+				if ( name in thisCache ) {
+					name = [ name ];
+				} else {
+
+					// split the camel cased version by spaces unless a key with the spaces exists
+					name = jQuery.camelCase( name );
+					if ( name in thisCache ) {
+						name = [ name ];
+					} else {
+						name = name.split(" ");
+					}
+				}
+			} else {
+				// If "name" is an array of keys...
+				// When data is initially created, via ("key", "val") signature,
+				// keys will be converted to camelCase.
+				// Since there is no way to tell _how_ a key was added, remove
+				// both plain key and camelCase key. #12786
+				// This will only penalize the array argument path.
+				name = name.concat( jQuery.map( name, jQuery.camelCase ) );
+			}
+
+			i = name.length;
+			while ( i-- ) {
+				delete thisCache[ name[i] ];
+			}
+
+			// If there is no data left in the cache, we want to continue
+			// and let the cache object itself get destroyed
+			if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) {
+				return;
+			}
+		}
+	}
+
+	// See jQuery.data for more information
+	if ( !pvt ) {
+		delete cache[ id ].data;
+
+		// Don't destroy the parent cache unless the internal data object
+		// had been the only thing left in it
+		if ( !isEmptyDataObject( cache[ id ] ) ) {
+			return;
+		}
+	}
+
+	// Destroy the cache
+	if ( isNode ) {
+		jQuery.cleanData( [ elem ], true );
+
+	// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
+	/* jshint eqeqeq: false */
+	} else if ( support.deleteExpando || cache != cache.window ) {
+		/* jshint eqeqeq: true */
+		delete cache[ id ];
+
+	// When all else fails, null
+	} else {
+		cache[ id ] = null;
+	}
+}
+
+jQuery.extend({
+	cache: {},
+
+	// The following elements (space-suffixed to avoid Object.prototype collisions)
+	// throw uncatchable exceptions if you attempt to set expando properties
+	noData: {
+		"applet ": true,
+		"embed ": true,
+		// ...but Flash objects (which have this classid) *can* handle expandos
+		"object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
+	},
+
+	hasData: function( elem ) {
+		elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
+		return !!elem && !isEmptyDataObject( elem );
+	},
+
+	data: function( elem, name, data ) {
+		return internalData( elem, name, data );
+	},
+
+	removeData: function( elem, name ) {
+		return internalRemoveData( elem, name );
+	},
+
+	// For internal use only.
+	_data: function( elem, name, data ) {
+		return internalData( elem, name, data, true );
+	},
+
+	_removeData: function( elem, name ) {
+		return internalRemoveData( elem, name, true );
+	}
+});
+
+jQuery.fn.extend({
+	data: function( key, value ) {
+		var i, name, data,
+			elem = this[0],
+			attrs = elem && elem.attributes;
+
+		// Special expections of .data basically thwart jQuery.access,
+		// so implement the relevant behavior ourselves
+
+		// Gets all values
+		if ( key === undefined ) {
+			if ( this.length ) {
+				data = jQuery.data( elem );
+
+				if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
+					i = attrs.length;
+					while ( i-- ) {
+						name = attrs[i].name;
+
+						if ( name.indexOf("data-") === 0 ) {
+							name = jQuery.camelCase( name.slice(5) );
+
+							dataAttr( elem, name, data[ name ] );
+						}
+					}
+					jQuery._data( elem, "parsedAttrs", true );
+				}
+			}
+
+			return data;
+		}
+
+		// Sets multiple values
+		if ( typeof key === "object" ) {
+			return this.each(function() {
+				jQuery.data( this, key );
+			});
+		}
+
+		return arguments.length > 1 ?
+
+			// Sets one value
+			this.each(function() {
+				jQuery.data( this, key, value );
+			}) :
+
+			// Gets one value
+			// Try to fetch any internally stored data first
+			elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;
+	},
+
+	removeData: function( key ) {
+		return this.each(function() {
+			jQuery.removeData( this, key );
+		});
+	}
+});
+
+
+jQuery.extend({
+	queue: function( elem, type, data ) {
+		var queue;
+
+		if ( elem ) {
+			type = ( type || "fx" ) + "queue";
+			queue = jQuery._data( elem, type );
+
+			// Speed up dequeue by getting out quickly if this is just a lookup
+			if ( data ) {
+				if ( !queue || jQuery.isArray(data) ) {
+					queue = jQuery._data( elem, type, jQuery.makeArray(data) );
+				} else {
+					queue.push( data );
+				}
+			}
+			return queue || [];
+		}
+	},
+
+	dequeue: function( elem, type ) {
+		type = type || "fx";
+
+		var queue = jQuery.queue( elem, type ),
+			startLength = queue.length,
+			fn = queue.shift(),
+			hooks = jQuery._queueHooks( elem, type ),
+			next = function() {
+				jQuery.dequeue( elem, type );
+			};
+
+		// If the fx queue is dequeued, always remove the progress sentinel
+		if ( fn === "inprogress" ) {
+			fn = queue.shift();
+			startLength--;
+		}
+
+		if ( fn ) {
+
+			// Add a progress sentinel to prevent the fx queue from being
+			// automatically dequeued
+			if ( type === "fx" ) {
+				queue.unshift( "inprogress" );
+			}
+
+			// clear up the last queue stop function
+			delete hooks.stop;
+			fn.call( elem, next, hooks );
+		}
+
+		if ( !startLength && hooks ) {
+			hooks.empty.fire();
+		}
+	},
+
+	// not intended for public consumption - generates a queueHooks object, or returns the current one
+	_queueHooks: function( elem, type ) {
+		var key = type + "queueHooks";
+		return jQuery._data( elem, key ) || jQuery._data( elem, key, {
+			empty: jQuery.Callbacks("once memory").add(function() {
+				jQuery._removeData( elem, type + "queue" );
+				jQuery._removeData( elem, key );
+			})
+		});
+	}
+});
+
+jQuery.fn.extend({
+	queue: function( type, data ) {
+		var setter = 2;
+
+		if ( typeof type !== "string" ) {
+			data = type;
+			type = "fx";
+			setter--;
+		}
+
+		if ( arguments.length < setter ) {
+			return jQuery.queue( this[0], type );
+		}
+
+		return data === undefined ?
+			this :
+			this.each(function() {
+				var queue = jQuery.queue( this, type, data );
+
+				// ensure a hooks for this queue
+				jQuery._queueHooks( this, type );
+
+				if ( type === "fx" && queue[0] !== "inprogress" ) {
+					jQuery.dequeue( this, type );
+				}
+			});
+	},
+	dequeue: function( type ) {
+		return this.each(function() {
+			jQuery.dequeue( this, type );
+		});
+	},
+	clearQueue: function( type ) {
+		return this.queue( type || "fx", [] );
+	},
+	// Get a promise resolved when queues of a certain type
+	// are emptied (fx is the type by default)
+	promise: function( type, obj ) {
+		var tmp,
+			count = 1,
+			defer = jQuery.Deferred(),
+			elements = this,
+			i = this.length,
+			resolve = function() {
+				if ( !( --count ) ) {
+					defer.resolveWith( elements, [ elements ] );
+				}
+			};
+
+		if ( typeof type !== "string" ) {
+			obj = type;
+			type = undefined;
+		}
+		type = type || "fx";
+
+		while ( i-- ) {
+			tmp = jQuery._data( elements[ i ], type + "queueHooks" );
+			if ( tmp && tmp.empty ) {
+				count++;
+				tmp.empty.add( resolve );
+			}
+		}
+		resolve();
+		return defer.promise( obj );
+	}
+});
+var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
+
+var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
+
+var isHidden = function( elem, el ) {
+		// isHidden might be called from jQuery#filter function;
+		// in that case, element will be second argument
+		elem = el || elem;
+		return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
+	};
+
+
+
+// Multifunctional method to get and set values of a collection
+// The value/s can optionally be executed if it's a function
+var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
+	var i = 0,
+		length = elems.length,
+		bulk = key == null;
+
+	// Sets many values
+	if ( jQuery.type( key ) === "object" ) {
+		chainable = true;
+		for ( i in key ) {
+			jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
+		}
+
+	// Sets one value
+	} else if ( value !== undefined ) {
+		chainable = true;
+
+		if ( !jQuery.isFunction( value ) ) {
+			raw = true;
+		}
+
+		if ( bulk ) {
+			// Bulk operations run against the entire set
+			if ( raw ) {
+				fn.call( elems, value );
+				fn = null;
+
+			// ...except when executing function values
+			} else {
+				bulk = fn;
+				fn = function( elem, key, value ) {
+					return bulk.call( jQuery( elem ), value );
+				};
+			}
+		}
+
+		if ( fn ) {
+			for ( ; i < length; i++ ) {
+				fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) );
+			}
+		}
+	}
+
+	return chainable ?
+		elems :
+
+		// Gets
+		bulk ?
+			fn.call( elems ) :
+			length ? fn( elems[0], key ) : emptyGet;
+};
+var rcheckableType = (/^(?:checkbox|radio)$/i);
+
+
+
+(function() {
+	var fragment = document.createDocumentFragment(),
+		div = document.createElement("div"),
+		input = document.createElement("input");
+
+	// Setup
+	div.setAttribute( "className", "t" );
+	div.innerHTML = "  <link/><table></table><a href='/a'>a</a>";
+
+	// IE strips leading whitespace when .innerHTML is used
+	support.leadingWhitespace = div.firstChild.nodeType === 3;
+
+	// Make sure that tbody elements aren't automatically inserted
+	// IE will insert them into empty tables
+	support.tbody = !div.getElementsByTagName( "tbody" ).length;
+
+	// Make sure that link elements get serialized correctly by innerHTML
+	// This requires a wrapper element in IE
+	support.htmlSerialize = !!div.getElementsByTagName( "link" ).length;
+
+	// Makes sure cloning an html5 element does not cause problems
+	// Where outerHTML is undefined, this still works
+	support.html5Clone =
+		document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav></:nav>";
+
+	// Check if a disconnected checkbox will retain its checked
+	// value of true after appended to the DOM (IE6/7)
+	input.type = "checkbox";
+	input.checked = true;
+	fragment.appendChild( input );
+	support.appendChecked = input.checked;
+
+	// Make sure textarea (and checkbox) defaultValue is properly cloned
+	// Support: IE6-IE11+
+	div.innerHTML = "<textarea>x</textarea>";
+	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
+
+	// #11217 - WebKit loses check when the name is after the checked attribute
+	fragment.appendChild( div );
+	div.innerHTML = "<input type='radio' checked='checked' name='t'/>";
+
+	// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3
+	// old WebKit doesn't clone checked state correctly in fragments
+	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
+
+	// Support: IE<9
+	// Opera does not clone events (and typeof div.attachEvent === undefined).
+	// IE9-10 clones events bound via attachEvent, but they don't trigger with .click()
+	support.noCloneEvent = true;
+	if ( div.attachEvent ) {
+		div.attachEvent( "onclick", function() {
+			support.noCloneEvent = false;
+		});
+
+		div.cloneNode( true ).click();
+	}
+
+	// Execute the test only if not already executed in another module.
+	if (support.deleteExpando == null) {
+		// Support: IE<9
+		support.deleteExpando = true;
+		try {
+			delete div.test;
+		} catch( e ) {
+			support.deleteExpando = false;
+		}
+	}
+
+	// Null elements to avoid leaks in IE.
+	fragment = div = input = null;
+})();
+
+
+(function() {
+	var i, eventName,
+		div = document.createElement( "div" );
+
+	// Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event)
+	for ( i in { submit: true, change: true, focusin: true }) {
+		eventName = "on" + i;
+
+		if ( !(support[ i + "Bubbles" ] = eventName in window) ) {
+			// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)
+			div.setAttribute( eventName, "t" );
+			support[ i + "Bubbles" ] = div.attributes[ eventName ].expando === false;
+		}
+	}
+
+	// Null elements to avoid leaks in IE.
+	div = null;
+})();
+
+
+var rformElems = /^(?:input|select|textarea)$/i,
+	rkeyEvent = /^key/,
+	rmouseEvent = /^(?:mouse|contextmenu)|click/,
+	rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
+	rtypenamespace = /^([^.]*)(?:\.(.+)|)$/;
+
+function returnTrue() {
+	return true;
+}
+
+function returnFalse() {
+	return false;
+}
+
+function safeActiveElement() {
+	try {
+		return document.activeElement;
+	} catch ( err ) { }
+}
+
+/*
+ * Helper functions for managing events -- not part of the public interface.
+ * Props to Dean Edwards' addEvent library for many of the ideas.
+ */
+jQuery.event = {
+
+	global: {},
+
+	add: function( elem, types, handler, data, selector ) {
+		var tmp, events, t, handleObjIn,
+			special, eventHandle, handleObj,
+			handlers, type, namespaces, origType,
+			elemData = jQuery._data( elem );
+
+		// Don't attach events to noData or text/comment nodes (but allow plain objects)
+		if ( !elemData ) {
+			return;
+		}
+
+		// Caller can pass in an object of custom data in lieu of the handler
+		if ( handler.handler ) {
+			handleObjIn = handler;
+			handler = handleObjIn.handler;
+			selector = handleObjIn.selector;
+		}
+
+		// Make sure that the handler has a unique ID, used to find/remove it later
+		if ( !handler.guid ) {
+			handler.guid = jQuery.guid++;
+		}
+
+		// Init the element's event structure and main handler, if this is the first
+		if ( !(events = elemData.events) ) {
+			events = elemData.events = {};
+		}
+		if ( !(eventHandle = elemData.handle) ) {
+			eventHandle = elemData.handle = function( e ) {
+				// Discard the second event of a jQuery.event.trigger() and
+				// when an event is called after a page has unloaded
+				return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ?
+					jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
+					undefined;
+			};
+			// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
+			eventHandle.elem = elem;
+		}
+
+		// Handle multiple events separated by a space
+		types = ( types || "" ).match( rnotwhite ) || [ "" ];
+		t = types.length;
+		while ( t-- ) {
+			tmp = rtypenamespace.exec( types[t] ) || [];
+			type = origType = tmp[1];
+			namespaces = ( tmp[2] || "" ).split( "." ).sort();
+
+			// There *must* be a type, no attaching namespace-only handlers
+			if ( !type ) {
+				continue;
+			}
+
+			// If event changes its type, use the special event handlers for the changed type
+			special = jQuery.event.special[ type ] || {};
+
+			// If selector defined, determine special event api type, otherwise given type
+			type = ( selector ? special.delegateType : special.bindType ) || type;
+
+			// Update special based on newly reset type
+			special = jQuery.event.special[ type ] || {};
+
+			// handleObj is passed to all event handlers
+			handleObj = jQuery.extend({
+				type: type,
+				origType: origType,
+				data: data,
+				handler: handler,
+				guid: handler.guid,
+				selector: selector,
+				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
+				namespace: namespaces.join(".")
+			}, handleObjIn );
+
+			// Init the event handler queue if we're the first
+			if ( !(handlers = events[ type ]) ) {
+				handlers = events[ type ] = [];
+				handlers.delegateCount = 0;
+
+				// Only use addEventListener/attachEvent if the special events handler returns false
+				if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
+					// Bind the global event handler to the element
+					if ( elem.addEventListener ) {
+						elem.addEventListener( type, eventHandle, false );
+
+					} else if ( elem.attachEvent ) {
+						elem.attachEvent( "on" + type, eventHandle );
+					}
+				}
+			}
+
+			if ( special.add ) {
+				special.add.call( elem, handleObj );
+
+				if ( !handleObj.handler.guid ) {
+					handleObj.handler.guid = handler.guid;
+				}
+			}
+
+			// Add to the element's handler list, delegates in front
+			if ( selector ) {
+				handlers.splice( handlers.delegateCount++, 0, handleObj );
+			} else {
+				handlers.push( handleObj );
+			}
+
+			// Keep track of which events have ever been used, for event optimization
+			jQuery.event.global[ type ] = true;
+		}
+
+		// Nullify elem to prevent memory leaks in IE
+		elem = null;
+	},
+
+	// Detach an event or set of events from an element
+	remove: function( elem, types, handler, selector, mappedTypes ) {
+		var j, handleObj, tmp,
+			origCount, t, events,
+			special, handlers, type,
+			namespaces, origType,
+			elemData = jQuery.hasData( elem ) && jQuery._data( elem );
+
+		if ( !elemData || !(events = elemData.events) ) {
+			return;
+		}
+
+		// Once for each type.namespace in types; type may be omitted
+		types = ( types || "" ).match( rnotwhite ) || [ "" ];
+		t = types.length;
+		while ( t-- ) {
+			tmp = rtypenamespace.exec( types[t] ) || [];
+			type = origType = tmp[1];
+			namespaces = ( tmp[2] || "" ).split( "." ).sort();
+
+			// Unbind all events (on this namespace, if provided) for the element
+			if ( !type ) {
+				for ( type in events ) {
+					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
+				}
+				continue;
+			}
+
+			special = jQuery.event.special[ type ] || {};
+			type = ( selector ? special.delegateType : special.bindType ) || type;
+			handlers = events[ type ] || [];
+			tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" );
+
+			// Remove matching events
+			origCount = j = handlers.length;
+			while ( j-- ) {
+				handleObj = handlers[ j ];
+
+				if ( ( mappedTypes || origType === handleObj.origType ) &&
+					( !handler || handler.guid === handleObj.guid ) &&
+					( !tmp || tmp.test( handleObj.namespace ) ) &&
+					( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
+					handlers.splice( j, 1 );
+
+					if ( handleObj.selector ) {
+						handlers.delegateCount--;
+					}
+					if ( special.remove ) {
+						special.remove.call( elem, handleObj );
+					}
+				}
+			}
+
+			// Remove generic event handler if we removed something and no more handlers exist
+			// (avoids potential for endless recursion during removal of special event handlers)
+			if ( origCount && !handlers.length ) {
+				if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
+					jQuery.removeEvent( elem, type, elemData.handle );
+				}
+
+				delete events[ type ];
+			}
+		}
+
+		// Remove the expando if it's no longer used
+		if ( jQuery.isEmptyObject( events ) ) {
+			delete elemData.handle;
+
+			// removeData also checks for emptiness and clears the expando if empty
+			// so use it instead of delete
+			jQuery._removeData( elem, "events" );
+		}
+	},
+
+	trigger: function( event, data, elem, onlyHandlers ) {
+		var handle, ontype, cur,
+			bubbleType, special, tmp, i,
+			eventPath = [ elem || document ],
+			type = hasOwn.call( event, "type" ) ? event.type : event,
+			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : [];
+
+		cur = tmp = elem = elem || document;
+
+		// Don't do events on text and comment nodes
+		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
+			return;
+		}
+
+		// focus/blur morphs to focusin/out; ensure we're not firing them right now
+		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
+			return;
+		}
+
+		if ( type.indexOf(".") >= 0 ) {
+			// Namespaced trigger; create a regexp to match event type in handle()
+			namespaces = type.split(".");
+			type = namespaces.shift();
+			namespaces.sort();
+		}
+		ontype = type.indexOf(":") < 0 && "on" + type;
+
+		// Caller can pass in a jQuery.Event object, Object, or just an event type string
+		event = event[ jQuery.expando ] ?
+			event :
+			new jQuery.Event( type, typeof event === "object" && event );
+
+		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
+		event.isTrigger = onlyHandlers ? 2 : 3;
+		event.namespace = namespaces.join(".");
+		event.namespace_re = event.namespace ?
+			new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
+			null;
+
+		// Clean up the event in case it is being reused
+		event.result = undefined;
+		if ( !event.target ) {
+			event.target = elem;
+		}
+
+		// Clone any incoming data and prepend the event, creating the handler arg list
+		data = data == null ?
+			[ event ] :
+			jQuery.makeArray( data, [ event ] );
+
+		// Allow special events to draw outside the lines
+		special = jQuery.event.special[ type ] || {};
+		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
+			return;
+		}
+
+		// Determine event propagation path in advance, per W3C events spec (#9951)
+		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
+		if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
+
+			bubbleType = special.delegateType || type;
+			if ( !rfocusMorph.test( bubbleType + type ) ) {
+				cur = cur.parentNode;
+			}
+			for ( ; cur; cur = cur.parentNode ) {
+				eventPath.push( cur );
+				tmp = cur;
+			}
+
+			// Only add window if we got to document (e.g., not plain obj or detached DOM)
+			if ( tmp === (elem.ownerDocument || document) ) {
+				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
+			}
+		}
+
+		// Fire handlers on the event path
+		i = 0;
+		while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) {
+
+			event.type = i > 1 ?
+				bubbleType :
+				special.bindType || type;
+
+			// jQuery handler
+			handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
+			if ( handle ) {
+				handle.apply( cur, data );
+			}
+
+			// Native handler
+			handle = ontype && cur[ ontype ];
+			if ( handle && handle.apply && jQuery.acceptData( cur ) ) {
+				event.result = handle.apply( cur, data );
+				if ( event.result === false ) {
+					event.preventDefault();
+				}
+			}
+		}
+		event.type = type;
+
+		// If nobody prevented the default action, do it now
+		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
+
+			if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) &&
+				jQuery.acceptData( elem ) ) {
+
+				// Call a native DOM method on the target with the same name name as the event.
+				// Can't use an .isFunction() check here because IE6/7 fails that test.
+				// Don't do default actions on window, that's where global variables be (#6170)
+				if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {
+
+					// Don't re-trigger an onFOO event when we call its FOO() method
+					tmp = elem[ ontype ];
+
+					if ( tmp ) {
+						elem[ ontype ] = null;
+					}
+
+					// Prevent re-triggering of the same event, since we already bubbled it above
+					jQuery.event.triggered = type;
+					try {
+						elem[ type ]();
+					} catch ( e ) {
+						// IE<9 dies on focus/blur to hidden element (#1486,#12518)
+						// only reproducible on winXP IE8 native, not IE9 in IE8 mode
+					}
+					jQuery.event.triggered = undefined;
+
+					if ( tmp ) {
+						elem[ ontype ] = tmp;
+					}
+				}
+			}
+		}
+
+		return event.result;
+	},
+
+	dispatch: function( event ) {
+
+		// Make a writable jQuery.Event from the native event object
+		event = jQuery.event.fix( event );
+
+		var i, ret, handleObj, matched, j,
+			handlerQueue = [],
+			args = slice.call( arguments ),
+			handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [],
+			special = jQuery.event.special[ event.type ] || {};
+
+		// Use the fix-ed jQuery.Event rather than the (read-only) native event
+		args[0] = event;
+		event.delegateTarget = this;
+
+		// Call the preDispatch hook for the mapped type, and let it bail if desired
+		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
+			return;
+		}
+
+		// Determine handlers
+		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
+
+		// Run delegates first; they may want to stop propagation beneath us
+		i = 0;
+		while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) {
+			event.currentTarget = matched.elem;
+
+			j = 0;
+			while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) {
+
+				// Triggered event must either 1) have no namespace, or
+				// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
+				if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) {
+
+					event.handleObj = handleObj;
+					event.data = handleObj.data;
+
+					ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
+							.apply( matched.elem, args );
+
+					if ( ret !== undefined ) {
+						if ( (event.result = ret) === false ) {
+							event.preventDefault();
+							event.stopPropagation();
+						}
+					}
+				}
+			}
+		}
+
+		// Call the postDispatch hook for the mapped type
+		if ( special.postDispatch ) {
+			special.postDispatch.call( this, event );
+		}
+
+		return event.result;
+	},
+
+	handlers: function( event, handlers ) {
+		var sel, handleObj, matches, i,
+			handlerQueue = [],
+			delegateCount = handlers.delegateCount,
+			cur = event.target;
+
+		// Find delegate handlers
+		// Black-hole SVG <use> instance trees (#13180)
+		// Avoid non-left-click bubbling in Firefox (#3861)
+		if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) {
+
+			/* jshint eqeqeq: false */
+			for ( ; cur != this; cur = cur.parentNode || this ) {
+				/* jshint eqeqeq: true */
+
+				// Don't check non-elements (#13208)
+				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
+				if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) {
+					matches = [];
+					for ( i = 0; i < delegateCount; i++ ) {
+						handleObj = handlers[ i ];
+
+						// Don't conflict with Object.prototype properties (#13203)
+						sel = handleObj.selector + " ";
+
+						if ( matches[ sel ] === undefined ) {
+							matches[ sel ] = handleObj.needsContext ?
+								jQuery( sel, this ).index( cur ) >= 0 :
+								jQuery.find( sel, this, null, [ cur ] ).length;
+						}
+						if ( matches[ sel ] ) {
+							matches.push( handleObj );
+						}
+					}
+					if ( matches.length ) {
+						handlerQueue.push({ elem: cur, handlers: matches });
+					}
+				}
+			}
+		}
+
+		// Add the remaining (directly-bound) handlers
+		if ( delegateCount < handlers.length ) {
+			handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) });
+		}
+
+		return handlerQueue;
+	},
+
+	fix: function( event ) {
+		if ( event[ jQuery.expando ] ) {
+			return event;
+		}
+
+		// Create a writable copy of the event object and normalize some properties
+		var i, prop, copy,
+			type = event.type,
+			originalEvent = event,
+			fixHook = this.fixHooks[ type ];
+
+		if ( !fixHook ) {
+			this.fixHooks[ type ] = fixHook =
+				rmouseEvent.test( type ) ? this.mouseHooks :
+				rkeyEvent.test( type ) ? this.keyHooks :
+				{};
+		}
+		copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
+
+		event = new jQuery.Event( originalEvent );
+
+		i = copy.length;
+		while ( i-- ) {
+			prop = copy[ i ];
+			event[ prop ] = originalEvent[ prop ];
+		}
+
+		// Support: IE<9
+		// Fix target property (#1925)
+		if ( !event.target ) {
+			event.target = originalEvent.srcElement || document;
+		}
+
+		// Support: Chrome 23+, Safari?
+		// Target should not be a text node (#504, #13143)
+		if ( event.target.nodeType === 3 ) {
+			event.target = event.target.parentNode;
+		}
+
+		// Support: IE<9
+		// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)
+		event.metaKey = !!event.metaKey;
+
+		return fixHook.filter ? fixHook.filter( event, originalEvent ) : event;
+	},
+
+	// Includes some event props shared by KeyEvent and MouseEvent
+	props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
+
+	fixHooks: {},
+
+	keyHooks: {
+		props: "char charCode key keyCode".split(" "),
+		filter: function( event, original ) {
+
+			// Add which for key events
+			if ( event.which == null ) {
+				event.which = original.charCode != null ? original.charCode : original.keyCode;
+			}
+
+			return event;
+		}
+	},
+
+	mouseHooks: {
+		props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
+		filter: function( event, original ) {
+			var body, eventDoc, doc,
+				button = original.button,
+				fromElement = original.fromElement;
+
+			// Calculate pageX/Y if missing and clientX/Y available
+			if ( event.pageX == null && original.clientX != null ) {
+				eventDoc = event.target.ownerDocument || document;
+				doc = eventDoc.documentElement;
+				body = eventDoc.body;
+
+				event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
+				event.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );
+			}
+
+			// Add relatedTarget, if necessary
+			if ( !event.relatedTarget && fromElement ) {
+				event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
+			}
+
+			// Add which for click: 1 === left; 2 === middle; 3 === right
+			// Note: button is not normalized, so don't use it
+			if ( !event.which && button !== undefined ) {
+				event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
+			}
+
+			return event;
+		}
+	},
+
+	special: {
+		load: {
+			// Prevent triggered image.load events from bubbling to window.load
+			noBubble: true
+		},
+		focus: {
+			// Fire native event if possible so blur/focus sequence is correct
+			trigger: function() {
+				if ( this !== safeActiveElement() && this.focus ) {
+					try {
+						this.focus();
+						return false;
+					} catch ( e ) {
+						// Support: IE<9
+						// If we error on focus to hidden element (#1486, #12518),
+						// let .trigger() run the handlers
+					}
+				}
+			},
+			delegateType: "focusin"
+		},
+		blur: {
+			trigger: function() {
+				if ( this === safeActiveElement() && this.blur ) {
+					this.blur();
+					return false;
+				}
+			},
+			delegateType: "focusout"
+		},
+		click: {
+			// For checkbox, fire native event so checked state will be right
+			trigger: function() {
+				if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) {
+					this.click();
+					return false;
+				}
+			},
+
+			// For cross-browser consistency, don't fire native .click() on links
+			_default: function( event ) {
+				return jQuery.nodeName( event.target, "a" );
+			}
+		},
+
+		beforeunload: {
+			postDispatch: function( event ) {
+
+				// Even when returnValue equals to undefined Firefox will still show alert
+				if ( event.result !== undefined ) {
+					event.originalEvent.returnValue = event.result;
+				}
+			}
+		}
+	},
+
+	simulate: function( type, elem, event, bubble ) {
+		// Piggyback on a donor event to simulate a different one.
+		// Fake originalEvent to avoid donor's stopPropagation, but if the
+		// simulated event prevents default then we do the same on the donor.
+		var e = jQuery.extend(
+			new jQuery.Event(),
+			event,
+			{
+				type: type,
+				isSimulated: true,
+				originalEvent: {}
+			}
+		);
+		if ( bubble ) {
+			jQuery.event.trigger( e, null, elem );
+		} else {
+			jQuery.event.dispatch.call( elem, e );
+		}
+		if ( e.isDefaultPrevented() ) {
+			event.preventDefault();
+		}
+	}
+};
+
+jQuery.removeEvent = document.removeEventListener ?
+	function( elem, type, handle ) {
+		if ( elem.removeEventListener ) {
+			elem.removeEventListener( type, handle, false );
+		}
+	} :
+	function( elem, type, handle ) {
+		var name = "on" + type;
+
+		if ( elem.detachEvent ) {
+
+			// #8545, #7054, preventing memory leaks for custom events in IE6-8
+			// detachEvent needed property on element, by name of that event, to properly expose it to GC
+			if ( typeof elem[ name ] === strundefined ) {
+				elem[ name ] = null;
+			}
+
+			elem.detachEvent( name, handle );
+		}
+	};
+
+jQuery.Event = function( src, props ) {
+	// Allow instantiation without the 'new' keyword
+	if ( !(this instanceof jQuery.Event) ) {
+		return new jQuery.Event( src, props );
+	}
+
+	// Event object
+	if ( src && src.type ) {
+		this.originalEvent = src;
+		this.type = src.type;
+
+		// Events bubbling up the document may have been marked as prevented
+		// by a handler lower down the tree; reflect the correct value.
+		this.isDefaultPrevented = src.defaultPrevented ||
+				src.defaultPrevented === undefined && (
+				// Support: IE < 9
+				src.returnValue === false ||
+				// Support: Android < 4.0
+				src.getPreventDefault && src.getPreventDefault() ) ?
+			returnTrue :
+			returnFalse;
+
+	// Event type
+	} else {
+		this.type = src;
+	}
+
+	// Put explicitly provided properties onto the event object
+	if ( props ) {
+		jQuery.extend( this, props );
+	}
+
+	// Create a timestamp if incoming event doesn't have one
+	this.timeStamp = src && src.timeStamp || jQuery.now();
+
+	// Mark it as fixed
+	this[ jQuery.expando ] = true;
+};
+
+// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
+// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
+jQuery.Event.prototype = {
+	isDefaultPrevented: returnFalse,
+	isPropagationStopped: returnFalse,
+	isImmediatePropagationStopped: returnFalse,
+
+	preventDefault: function() {
+		var e = this.originalEvent;
+
+		this.isDefaultPrevented = returnTrue;
+		if ( !e ) {
+			return;
+		}
+
+		// If preventDefault exists, run it on the original event
+		if ( e.preventDefault ) {
+			e.preventDefault();
+
+		// Support: IE
+		// Otherwise set the returnValue property of the original event to false
+		} else {
+			e.returnValue = false;
+		}
+	},
+	stopPropagation: function() {
+		var e = this.originalEvent;
+
+		this.isPropagationStopped = returnTrue;
+		if ( !e ) {
+			return;
+		}
+		// If stopPropagation exists, run it on the original event
+		if ( e.stopPropagation ) {
+			e.stopPropagation();
+		}
+
+		// Support: IE
+		// Set the cancelBubble property of the original event to true
+		e.cancelBubble = true;
+	},
+	stopImmediatePropagation: function() {
+		this.isImmediatePropagationStopped = returnTrue;
+		this.stopPropagation();
+	}
+};
+
+// Create mouseenter/leave events using mouseover/out and event-time checks
+jQuery.each({
+	mouseenter: "mouseover",
+	mouseleave: "mouseout"
+}, function( orig, fix ) {
+	jQuery.event.special[ orig ] = {
+		delegateType: fix,
+		bindType: fix,
+
+		handle: function( event ) {
+			var ret,
+				target = this,
+				related = event.relatedTarget,
+				handleObj = event.handleObj;
+
+			// For mousenter/leave call the handler if related is outside the target.
+			// NB: No relatedTarget if the mouse left/entered the browser window
+			if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
+				event.type = handleObj.origType;
+				ret = handleObj.handler.apply( this, arguments );
+				event.type = fix;
+			}
+			return ret;
+		}
+	};
+});
+
+// IE submit delegation
+if ( !support.submitBubbles ) {
+
+	jQuery.event.special.submit = {
+		setup: function() {
+			// Only need this for delegated form submit events
+			if ( jQuery.nodeName( this, "form" ) ) {
+				return false;
+			}
+
+			// Lazy-add a submit handler when a descendant form may potentially be submitted
+			jQuery.event.add( this, "click._submit keypress._submit", function( e ) {
+				// Node name check avoids a VML-related crash in IE (#9807)
+				var elem = e.target,
+					form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined;
+				if ( form && !jQuery._data( form, "submitBubbles" ) ) {
+					jQuery.event.add( form, "submit._submit", function( event ) {
+						event._submit_bubble = true;
+					});
+					jQuery._data( form, "submitBubbles", true );
+				}
+			});
+			// return undefined since we don't need an event listener
+		},
+
+		postDispatch: function( event ) {
+			// If form was submitted by the user, bubble the event up the tree
+			if ( event._submit_bubble ) {
+				delete event._submit_bubble;
+				if ( this.parentNode && !event.isTrigger ) {
+					jQuery.event.simulate( "submit", this.parentNode, event, true );
+				}
+			}
+		},
+
+		teardown: function() {
+			// Only need this for delegated form submit events
+			if ( jQuery.nodeName( this, "form" ) ) {
+				return false;
+			}
+
+			// Remove delegated handlers; cleanData eventually reaps submit handlers attached above
+			jQuery.event.remove( this, "._submit" );
+		}
+	};
+}
+
+// IE change delegation and checkbox/radio fix
+if ( !support.changeBubbles ) {
+
+	jQuery.event.special.change = {
+
+		setup: function() {
+
+			if ( rformElems.test( this.nodeName ) ) {
+				// IE doesn't fire change on a check/radio until blur; trigger it on click
+				// after a propertychange. Eat the blur-change in special.change.handle.
+				// This still fires onchange a second time for check/radio after blur.
+				if ( this.type === "checkbox" || this.type === "radio" ) {
+					jQuery.event.add( this, "propertychange._change", function( event ) {
+						if ( event.originalEvent.propertyName === "checked" ) {
+							this._just_changed = true;
+						}
+					});
+					jQuery.event.add( this, "click._change", function( event ) {
+						if ( this._just_changed && !event.isTrigger ) {
+							this._just_changed = false;
+						}
+						// Allow triggered, simulated change events (#11500)
+						jQuery.event.simulate( "change", this, event, true );
+					});
+				}
+				return false;
+			}
+			// Delegated event; lazy-add a change handler on descendant inputs
+			jQuery.event.add( this, "beforeactivate._change", function( e ) {
+				var elem = e.target;
+
+				if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) {
+					jQuery.event.add( elem, "change._change", function( event ) {
+						if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
+							jQuery.event.simulate( "change", this.parentNode, event, true );
+						}
+					});
+					jQuery._data( elem, "changeBubbles", true );
+				}
+			});
+		},
+
+		handle: function( event ) {
+			var elem = event.target;
+
+			// Swallow native change events from checkbox/radio, we already triggered them above
+			if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) {
+				return event.handleObj.handler.apply( this, arguments );
+			}
+		},
+
+		teardown: function() {
+			jQuery.event.remove( this, "._change" );
+
+			return !rformElems.test( this.nodeName );
+		}
+	};
+}
+
+// Create "bubbling" focus and blur events
+if ( !support.focusinBubbles ) {
+	jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
+
+		// Attach a single capturing handler on the document while someone wants focusin/focusout
+		var handler = function( event ) {
+				jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
+			};
+
+		jQuery.event.special[ fix ] = {
+			setup: function() {
+				var doc = this.ownerDocument || this,
+					attaches = jQuery._data( doc, fix );
+
+				if ( !attaches ) {
+					doc.addEventListener( orig, handler, true );
+				}
+				jQuery._data( doc, fix, ( attaches || 0 ) + 1 );
+			},
+			teardown: function() {
+				var doc = this.ownerDocument || this,
+					attaches = jQuery._data( doc, fix ) - 1;
+
+				if ( !attaches ) {
+					doc.removeEventListener( orig, handler, true );
+					jQuery._removeData( doc, fix );
+				} else {
+					jQuery._data( doc, fix, attaches );
+				}
+			}
+		};
+	});
+}
+
+jQuery.fn.extend({
+
+	on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
+		var type, origFn;
+
+		// Types can be a map of types/handlers
+		if ( typeof types === "object" ) {
+			// ( types-Object, selector, data )
+			if ( typeof selector !== "string" ) {
+				// ( types-Object, data )
+				data = data || selector;
+				selector = undefined;
+			}
+			for ( type in types ) {
+				this.on( type, selector, data, types[ type ], one );
+			}
+			return this;
+		}
+
+		if ( data == null && fn == null ) {
+			// ( types, fn )
+			fn = selector;
+			data = selector = undefined;
+		} else if ( fn == null ) {
+			if ( typeof selector === "string" ) {
+				// ( types, selector, fn )
+				fn = data;
+				data = undefined;
+			} else {
+				// ( types, data, fn )
+				fn = data;
+				data = selector;
+				selector = undefined;
+			}
+		}
+		if ( fn === false ) {
+			fn = returnFalse;
+		} else if ( !fn ) {
+			return this;
+		}
+
+		if ( one === 1 ) {
+			origFn = fn;
+			fn = function( event ) {
+				// Can use an empty set, since event contains the info
+				jQuery().off( event );
+				return origFn.apply( this, arguments );
+			};
+			// Use same guid so caller can remove using origFn
+			fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
+		}
+		return this.each( function() {
+			jQuery.event.add( this, types, fn, data, selector );
+		});
+	},
+	one: function( types, selector, data, fn ) {
+		return this.on( types, selector, data, fn, 1 );
+	},
+	off: function( types, selector, fn ) {
+		var handleObj, type;
+		if ( types && types.preventDefault && types.handleObj ) {
+			// ( event )  dispatched jQuery.Event
+			handleObj = types.handleObj;
+			jQuery( types.delegateTarget ).off(
+				handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
+				handleObj.selector,
+				handleObj.handler
+			);
+			return this;
+		}
+		if ( typeof types === "object" ) {
+			// ( types-object [, selector] )
+			for ( type in types ) {
+				this.off( type, selector, types[ type ] );
+			}
+			return this;
+		}
+		if ( selector === false || typeof selector === "function" ) {
+			// ( types [, fn] )
+			fn = selector;
+			selector = undefined;
+		}
+		if ( fn === false ) {
+			fn = returnFalse;
+		}
+		return this.each(function() {
+			jQuery.event.remove( this, types, fn, selector );
+		});
+	},
+
+	trigger: function( type, data ) {
+		return this.each(function() {
+			jQuery.event.trigger( type, data, this );
+		});
+	},
+	triggerHandler: function( type, data ) {
+		var elem = this[0];
+		if ( elem ) {
+			return jQuery.event.trigger( type, data, elem, true );
+		}
+	}
+});
+
+
+function createSafeFragment( document ) {
+	var list = nodeNames.split( "|" ),
+		safeFrag = document.createDocumentFragment();
+
+	if ( safeFrag.createElement ) {
+		while ( list.length ) {
+			safeFrag.createElement(
+				list.pop()
+			);
+		}
+	}
+	return safeFrag;
+}
+
+var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
+		"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
+	rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g,
+	rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
+	rleadingWhitespace = /^\s+/,
+	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
+	rtagName = /<([\w:]+)/,
+	rtbody = /<tbody/i,
+	rhtml = /<|&#?\w+;/,
+	rnoInnerhtml = /<(?:script|style|link)/i,
+	// checked="checked" or checked
+	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
+	rscriptType = /^$|\/(?:java|ecma)script/i,
+	rscriptTypeMasked = /^true\/(.*)/,
+	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,
+
+	// We have to close these tags to support XHTML (#13200)
+	wrapMap = {
+		option: [ 1, "<select multiple='multiple'>", "</select>" ],
+		legend: [ 1, "<fieldset>", "</fieldset>" ],
+		area: [ 1, "<map>", "</map>" ],
+		param: [ 1, "<object>", "</object>" ],
+		thead: [ 1, "<table>", "</table>" ],
+		tr: [ 2, "<table><tbody>", "</tbody></table>" ],
+		col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
+		td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
+
+		// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,
+		// unless wrapped in a div with non-breaking characters in front of it.
+		_default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>"  ]
+	},
+	safeFragment = createSafeFragment( document ),
+	fragmentDiv = safeFragment.appendChild( document.createElement("div") );
+
+wrapMap.optgroup = wrapMap.option;
+wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
+wrapMap.th = wrapMap.td;
+
+function getAll( context, tag ) {
+	var elems, elem,
+		i = 0,
+		found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) :
+			typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) :
+			undefined;
+
+	if ( !found ) {
+		for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) {
+			if ( !tag || jQuery.nodeName( elem, tag ) ) {
+				found.push( elem );
+			} else {
+				jQuery.merge( found, getAll( elem, tag ) );
+			}
+		}
+	}
+
+	return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
+		jQuery.merge( [ context ], found ) :
+		found;
+}
+
+// Used in buildFragment, fixes the defaultChecked property
+function fixDefaultChecked( elem ) {
+	if ( rcheckableType.test( elem.type ) ) {
+		elem.defaultChecked = elem.checked;
+	}
+}
+
+// Support: IE<8
+// Manipulating tables requires a tbody
+function manipulationTarget( elem, content ) {
+	return jQuery.nodeName( elem, "table" ) &&
+		jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
+
+		elem.getElementsByTagName("tbody")[0] ||
+			elem.appendChild( elem.ownerDocument.createElement("tbody") ) :
+		elem;
+}
+
+// Replace/restore the type attribute of script elements for safe DOM manipulation
+function disableScript( elem ) {
+	elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type;
+	return elem;
+}
+function restoreScript( elem ) {
+	var match = rscriptTypeMasked.exec( elem.type );
+	if ( match ) {
+		elem.type = match[1];
+	} else {
+		elem.removeAttribute("type");
+	}
+	return elem;
+}
+
+// Mark scripts as having already been evaluated
+function setGlobalEval( elems, refElements ) {
+	var elem,
+		i = 0;
+	for ( ; (elem = elems[i]) != null; i++ ) {
+		jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) );
+	}
+}
+
+function cloneCopyEvent( src, dest ) {
+
+	if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
+		return;
+	}
+
+	var type, i, l,
+		oldData = jQuery._data( src ),
+		curData = jQuery._data( dest, oldData ),
+		events = oldData.events;
+
+	if ( events ) {
+		delete curData.handle;
+		curData.events = {};
+
+		for ( type in events ) {
+			for ( i = 0, l = events[ type ].length; i < l; i++ ) {
+				jQuery.event.add( dest, type, events[ type ][ i ] );
+			}
+		}
+	}
+
+	// make the cloned public data object a copy from the original
+	if ( curData.data ) {
+		curData.data = jQuery.extend( {}, curData.data );
+	}
+}
+
+function fixCloneNodeIssues( src, dest ) {
+	var nodeName, e, data;
+
+	// We do not need to do anything for non-Elements
+	if ( dest.nodeType !== 1 ) {
+		return;
+	}
+
+	nodeName = dest.nodeName.toLowerCase();
+
+	// IE6-8 copies events bound via attachEvent when using cloneNode.
+	if ( !support.noCloneEvent && dest[ jQuery.expando ] ) {
+		data = jQuery._data( dest );
+
+		for ( e in data.events ) {
+			jQuery.removeEvent( dest, e, data.handle );
+		}
+
+		// Event data gets referenced instead of copied if the expando gets copied too
+		dest.removeAttribute( jQuery.expando );
+	}
+
+	// IE blanks contents when cloning scripts, and tries to evaluate newly-set text
+	if ( nodeName === "script" && dest.text !== src.text ) {
+		disableScript( dest ).text = src.text;
+		restoreScript( dest );
+
+	// IE6-10 improperly clones children of object elements using classid.
+	// IE10 throws NoModificationAllowedError if parent is null, #12132.
+	} else if ( nodeName === "object" ) {
+		if ( dest.parentNode ) {
+			dest.outerHTML = src.outerHTML;
+		}
+
+		// This path appears unavoidable for IE9. When cloning an object
+		// element in IE9, the outerHTML strategy above is not sufficient.
+		// If the src has innerHTML and the destination does not,
+		// copy the src.innerHTML into the dest.innerHTML. #10324
+		if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) {
+			dest.innerHTML = src.innerHTML;
+		}
+
+	} else if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
+		// IE6-8 fails to persist the checked state of a cloned checkbox
+		// or radio button. Worse, IE6-7 fail to give the cloned element
+		// a checked appearance if the defaultChecked value isn't also set
+
+		dest.defaultChecked = dest.checked = src.checked;
+
+		// IE6-7 get confused and end up setting the value of a cloned
+		// checkbox/radio button to an empty string instead of "on"
+		if ( dest.value !== src.value ) {
+			dest.value = src.value;
+		}
+
+	// IE6-8 fails to return the selected option to the default selected
+	// state when cloning options
+	} else if ( nodeName === "option" ) {
+		dest.defaultSelected = dest.selected = src.defaultSelected;
+
+	// IE6-8 fails to set the defaultValue to the correct value when
+	// cloning other types of input fields
+	} else if ( nodeName === "input" || nodeName === "textarea" ) {
+		dest.defaultValue = src.defaultValue;
+	}
+}
+
+jQuery.extend({
+	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
+		var destElements, node, clone, i, srcElements,
+			inPage = jQuery.contains( elem.ownerDocument, elem );
+
+		if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) {
+			clone = elem.cloneNode( true );
+
+		// IE<=8 does not properly clone detached, unknown element nodes
+		} else {
+			fragmentDiv.innerHTML = elem.outerHTML;
+			fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
+		}
+
+		if ( (!support.noCloneEvent || !support.noCloneChecked) &&
+				(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {
+
+			// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
+			destElements = getAll( clone );
+			srcElements = getAll( elem );
+
+			// Fix all IE cloning issues
+			for ( i = 0; (node = srcElements[i]) != null; ++i ) {
+				// Ensure that the destination node is not null; Fixes #9587
+				if ( destElements[i] ) {
+					fixCloneNodeIssues( node, destElements[i] );
+				}
+			}
+		}
+
+		// Copy the events from the original to the clone
+		if ( dataAndEvents ) {
+			if ( deepDataAndEvents ) {
+				srcElements = srcElements || getAll( elem );
+				destElements = destElements || getAll( clone );
+
+				for ( i = 0; (node = srcElements[i]) != null; i++ ) {
+					cloneCopyEvent( node, destElements[i] );
+				}
+			} else {
+				cloneCopyEvent( elem, clone );
+			}
+		}
+
+		// Preserve script evaluation history
+		destElements = getAll( clone, "script" );
+		if ( destElements.length > 0 ) {
+			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
+		}
+
+		destElements = srcElements = node = null;
+
+		// Return the cloned set
+		return clone;
+	},
+
+	buildFragment: function( elems, context, scripts, selection ) {
+		var j, elem, contains,
+			tmp, tag, tbody, wrap,
+			l = elems.length,
+
+			// Ensure a safe fragment
+			safe = createSafeFragment( context ),
+
+			nodes = [],
+			i = 0;
+
+		for ( ; i < l; i++ ) {
+			elem = elems[ i ];
+
+			if ( elem || elem === 0 ) {
+
+				// Add nodes directly
+				if ( jQuery.type( elem ) === "object" ) {
+					jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
+
+				// Convert non-html into a text node
+				} else if ( !rhtml.test( elem ) ) {
+					nodes.push( context.createTextNode( elem ) );
+
+				// Convert html into DOM nodes
+				} else {
+					tmp = tmp || safe.appendChild( context.createElement("div") );
+
+					// Deserialize a standard representation
+					tag = (rtagName.exec( elem ) || [ "", "" ])[ 1 ].toLowerCase();
+					wrap = wrapMap[ tag ] || wrapMap._default;
+
+					tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2];
+
+					// Descend through wrappers to the right content
+					j = wrap[0];
+					while ( j-- ) {
+						tmp = tmp.lastChild;
+					}
+
+					// Manually add leading whitespace removed by IE
+					if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
+						nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) );
+					}
+
+					// Remove IE's autoinserted <tbody> from table fragments
+					if ( !support.tbody ) {
+
+						// String was a <table>, *may* have spurious <tbody>
+						elem = tag === "table" && !rtbody.test( elem ) ?
+							tmp.firstChild :
+
+							// String was a bare <thead> or <tfoot>
+							wrap[1] === "<table>" && !rtbody.test( elem ) ?
+								tmp :
+								0;
+
+						j = elem && elem.childNodes.length;
+						while ( j-- ) {
+							if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) {
+								elem.removeChild( tbody );
+							}
+						}
+					}
+
+					jQuery.merge( nodes, tmp.childNodes );
+
+					// Fix #12392 for WebKit and IE > 9
+					tmp.textContent = "";
+
+					// Fix #12392 for oldIE
+					while ( tmp.firstChild ) {
+						tmp.removeChild( tmp.firstChild );
+					}
+
+					// Remember the top-level container for proper cleanup
+					tmp = safe.lastChild;
+				}
+			}
+		}
+
+		// Fix #11356: Clear elements from fragment
+		if ( tmp ) {
+			safe.removeChild( tmp );
+		}
+
+		// Reset defaultChecked for any radios and checkboxes
+		// about to be appended to the DOM in IE 6/7 (#8060)
+		if ( !support.appendChecked ) {
+			jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked );
+		}
+
+		i = 0;
+		while ( (elem = nodes[ i++ ]) ) {
+
+			// #4087 - If origin and destination elements are the same, and this is
+			// that element, do not do anything
+			if ( selection && jQuery.inArray( elem, selection ) !== -1 ) {
+				continue;
+			}
+
+			contains = jQuery.contains( elem.ownerDocument, elem );
+
+			// Append to fragment
+			tmp = getAll( safe.appendChild( elem ), "script" );
+
+			// Preserve script evaluation history
+			if ( contains ) {
+				setGlobalEval( tmp );
+			}
+
+			// Capture executables
+			if ( scripts ) {
+				j = 0;
+				while ( (elem = tmp[ j++ ]) ) {
+					if ( rscriptType.test( elem.type || "" ) ) {
+						scripts.push( elem );
+					}
+				}
+			}
+		}
+
+		tmp = null;
+
+		return safe;
+	},
+
+	cleanData: function( elems, /* internal */ acceptData ) {
+		var elem, type, id, data,
+			i = 0,
+			internalKey = jQuery.expando,
+			cache = jQuery.cache,
+			deleteExpando = support.deleteExpando,
+			special = jQuery.event.special;
+
+		for ( ; (elem = elems[i]) != null; i++ ) {
+			if ( acceptData || jQuery.acceptData( elem ) ) {
+
+				id = elem[ internalKey ];
+				data = id && cache[ id ];
+
+				if ( data ) {
+					if ( data.events ) {
+						for ( type in data.events ) {
+							if ( special[ type ] ) {
+								jQuery.event.remove( elem, type );
+
+							// This is a shortcut to avoid jQuery.event.remove's overhead
+							} else {
+								jQuery.removeEvent( elem, type, data.handle );
+							}
+						}
+					}
+
+					// Remove cache only if it was not already removed by jQuery.event.remove
+					if ( cache[ id ] ) {
+
+						delete cache[ id ];
+
+						// IE does not allow us to delete expando properties from nodes,
+						// nor does it have a removeAttribute function on Document nodes;
+						// we must handle all of these cases
+						if ( deleteExpando ) {
+							delete elem[ internalKey ];
+
+						} else if ( typeof elem.removeAttribute !== strundefined ) {
+							elem.removeAttribute( internalKey );
+
+						} else {
+							elem[ internalKey ] = null;
+						}
+
+						deletedIds.push( id );
+					}
+				}
+			}
+		}
+	}
+});
+
+jQuery.fn.extend({
+	text: function( value ) {
+		return access( this, function( value ) {
+			return value === undefined ?
+				jQuery.text( this ) :
+				this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );
+		}, null, value, arguments.length );
+	},
+
+	append: function() {
+		return this.domManip( arguments, function( elem ) {
+			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
+				var target = manipulationTarget( this, elem );
+				target.appendChild( elem );
+			}
+		});
+	},
+
+	prepend: function() {
+		return this.domManip( arguments, function( elem ) {
+			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
+				var target = manipulationTarget( this, elem );
+				target.insertBefore( elem, target.firstChild );
+			}
+		});
+	},
+
+	before: function() {
+		return this.domManip( arguments, function( elem ) {
+			if ( this.parentNode ) {
+				this.parentNode.insertBefore( elem, this );
+			}
+		});
+	},
+
+	after: function() {
+		return this.domManip( arguments, function( elem ) {
+			if ( this.parentNode ) {
+				this.parentNode.insertBefore( elem, this.nextSibling );
+			}
+		});
+	},
+
+	remove: function( selector, keepData /* Internal Use Only */ ) {
+		var elem,
+			elems = selector ? jQuery.filter( selector, this ) : this,
+			i = 0;
+
+		for ( ; (elem = elems[i]) != null; i++ ) {
+
+			if ( !keepData && elem.nodeType === 1 ) {
+				jQuery.cleanData( getAll( elem ) );
+			}
+
+			if ( elem.parentNode ) {
+				if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) {
+					setGlobalEval( getAll( elem, "script" ) );
+				}
+				elem.parentNode.removeChild( elem );
+			}
+		}
+
+		return this;
+	},
+
+	empty: function() {
+		var elem,
+			i = 0;
+
+		for ( ; (elem = this[i]) != null; i++ ) {
+			// Remove element nodes and prevent memory leaks
+			if ( elem.nodeType === 1 ) {
+				jQuery.cleanData( getAll( elem, false ) );
+			}
+
+			// Remove any remaining nodes
+			while ( elem.firstChild ) {
+				elem.removeChild( elem.firstChild );
+			}
+
+			// If this is a select, ensure that it displays empty (#12336)
+			// Support: IE<9
+			if ( elem.options && jQuery.nodeName( elem, "select" ) ) {
+				elem.options.length = 0;
+			}
+		}
+
+		return this;
+	},
+
+	clone: function( dataAndEvents, deepDataAndEvents ) {
+		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
+		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
+
+		return this.map(function() {
+			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
+		});
+	},
+
+	html: function( value ) {
+		return access( this, function( value ) {
+			var elem = this[ 0 ] || {},
+				i = 0,
+				l = this.length;
+
+			if ( value === undefined ) {
+				return elem.nodeType === 1 ?
+					elem.innerHTML.replace( rinlinejQuery, "" ) :
+					undefined;
+			}
+
+			// See if we can take a shortcut and just use innerHTML
+			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
+				( support.htmlSerialize || !rnoshimcache.test( value )  ) &&
+				( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
+				!wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) {
+
+				value = value.replace( rxhtmlTag, "<$1></$2>" );
+
+				try {
+					for (; i < l; i++ ) {
+						// Remove element nodes and prevent memory leaks
+						elem = this[i] || {};
+						if ( elem.nodeType === 1 ) {
+							jQuery.cleanData( getAll( elem, false ) );
+							elem.innerHTML = value;
+						}
+					}
+
+					elem = 0;
+
+				// If using innerHTML throws an exception, use the fallback method
+				} catch(e) {}
+			}
+
+			if ( elem ) {
+				this.empty().append( value );
+			}
+		}, null, value, arguments.length );
+	},
+
+	replaceWith: function() {
+		var arg = arguments[ 0 ];
+
+		// Make the changes, replacing each context element with the new content
+		this.domManip( arguments, function( elem ) {
+			arg = this.parentNode;
+
+			jQuery.cleanData( getAll( this ) );
+
+			if ( arg ) {
+				arg.replaceChild( elem, this );
+			}
+		});
+
+		// Force removal if there was no new content (e.g., from empty arguments)
+		return arg && (arg.length || arg.nodeType) ? this : this.remove();
+	},
+
+	detach: function( selector ) {
+		return this.remove( selector, true );
+	},
+
+	domManip: function( args, callback ) {
+
+		// Flatten any nested arrays
+		args = concat.apply( [], args );
+
+		var first, node, hasScripts,
+			scripts, doc, fragment,
+			i = 0,
+			l = this.length,
+			set = this,
+			iNoClone = l - 1,
+			value = args[0],
+			isFunction = jQuery.isFunction( value );
+
+		// We can't cloneNode fragments that contain checked, in WebKit
+		if ( isFunction ||
+				( l > 1 && typeof value === "string" &&
+					!support.checkClone && rchecked.test( value ) ) ) {
+			return this.each(function( index ) {
+				var self = set.eq( index );
+				if ( isFunction ) {
+					args[0] = value.call( this, index, self.html() );
+				}
+				self.domManip( args, callback );
+			});
+		}
+
+		if ( l ) {
+			fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this );
+			first = fragment.firstChild;
+
+			if ( fragment.childNodes.length === 1 ) {
+				fragment = first;
+			}
+
+			if ( first ) {
+				scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
+				hasScripts = scripts.length;
+
+				// Use the original fragment for the last item instead of the first because it can end up
+				// being emptied incorrectly in certain situations (#8070).
+				for ( ; i < l; i++ ) {
+					node = fragment;
+
+					if ( i !== iNoClone ) {
+						node = jQuery.clone( node, true, true );
+
+						// Keep references to cloned scripts for later restoration
+						if ( hasScripts ) {
+							jQuery.merge( scripts, getAll( node, "script" ) );
+						}
+					}
+
+					callback.call( this[i], node, i );
+				}
+
+				if ( hasScripts ) {
+					doc = scripts[ scripts.length - 1 ].ownerDocument;
+
+					// Reenable scripts
+					jQuery.map( scripts, restoreScript );
+
+					// Evaluate executable scripts on first document insertion
+					for ( i = 0; i < hasScripts; i++ ) {
+						node = scripts[ i ];
+						if ( rscriptType.test( node.type || "" ) &&
+							!jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) {
+
+							if ( node.src ) {
+								// Optional AJAX dependency, but won't run scripts if not present
+								if ( jQuery._evalUrl ) {
+									jQuery._evalUrl( node.src );
+								}
+							} else {
+								jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) );
+							}
+						}
+					}
+				}
+
+				// Fix #11809: Avoid leaking memory
+				fragment = first = null;
+			}
+		}
+
+		return this;
+	}
+});
+
+jQuery.each({
+	appendTo: "append",
+	prependTo: "prepend",
+	insertBefore: "before",
+	insertAfter: "after",
+	replaceAll: "replaceWith"
+}, function( name, original ) {
+	jQuery.fn[ name ] = function( selector ) {
+		var elems,
+			i = 0,
+			ret = [],
+			insert = jQuery( selector ),
+			last = insert.length - 1;
+
+		for ( ; i <= last; i++ ) {
+			elems = i === last ? this : this.clone(true);
+			jQuery( insert[i] )[ original ]( elems );
+
+			// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()
+			push.apply( ret, elems.get() );
+		}
+
+		return this.pushStack( ret );
+	};
+});
+
+
+var iframe,
+	elemdisplay = {};
+
+/**
+ * Retrieve the actual display of a element
+ * @param {String} name nodeName of the element
+ * @param {Object} doc Document object
+ */
+// Called only from within defaultDisplay
+function actualDisplay( name, doc ) {
+	var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),
+
+		// getDefaultComputedStyle might be reliably used only on attached element
+		display = window.getDefaultComputedStyle ?
+
+			// Use of this method is a temporary fix (more like optmization) until something better comes along,
+			// since it was removed from specification and supported only in FF
+			window.getDefaultComputedStyle( elem[ 0 ] ).display : jQuery.css( elem[ 0 ], "display" );
+
+	// We don't have any data stored on the element,
+	// so use "detach" method as fast way to get rid of the element
+	elem.detach();
+
+	return display;
+}
+
+/**
+ * Try to determine the default display value of an element
+ * @param {String} nodeName
+ */
+function defaultDisplay( nodeName ) {
+	var doc = document,
+		display = elemdisplay[ nodeName ];
+
+	if ( !display ) {
+		display = actualDisplay( nodeName, doc );
+
+		// If the simple way fails, read from inside an iframe
+		if ( display === "none" || !display ) {
+
+			// Use the already-created iframe if possible
+			iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement );
+
+			// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse
+			doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;
+
+			// Support: IE
+			doc.write();
+			doc.close();
+
+			display = actualDisplay( nodeName, doc );
+			iframe.detach();
+		}
+
+		// Store the correct default display
+		elemdisplay[ nodeName ] = display;
+	}
+
+	return display;
+}
+
+
+(function() {
+	var a, shrinkWrapBlocksVal,
+		div = document.createElement( "div" ),
+		divReset =
+			"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;" +
+			"display:block;padding:0;margin:0;border:0";
+
+	// Setup
+	div.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
+	a = div.getElementsByTagName( "a" )[ 0 ];
+
+	a.style.cssText = "float:left;opacity:.5";
+
+	// Make sure that element opacity exists
+	// (IE uses filter instead)
+	// Use a regex to work around a WebKit issue. See #5145
+	support.opacity = /^0.5/.test( a.style.opacity );
+
+	// Verify style float existence
+	// (IE uses styleFloat instead of cssFloat)
+	support.cssFloat = !!a.style.cssFloat;
+
+	div.style.backgroundClip = "content-box";
+	div.cloneNode( true ).style.backgroundClip = "";
+	support.clearCloneStyle = div.style.backgroundClip === "content-box";
+
+	// Null elements to avoid leaks in IE.
+	a = div = null;
+
+	support.shrinkWrapBlocks = function() {
+		var body, container, div, containerStyles;
+
+		if ( shrinkWrapBlocksVal == null ) {
+			body = document.getElementsByTagName( "body" )[ 0 ];
+			if ( !body ) {
+				// Test fired too early or in an unsupported environment, exit.
+				return;
+			}
+
+			containerStyles = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px";
+			container = document.createElement( "div" );
+			div = document.createElement( "div" );
+
+			body.appendChild( container ).appendChild( div );
+
+			// Will be changed later if needed.
+			shrinkWrapBlocksVal = false;
+
+			if ( typeof div.style.zoom !== strundefined ) {
+				// Support: IE6
+				// Check if elements with layout shrink-wrap their children
+				div.style.cssText = divReset + ";width:1px;padding:1px;zoom:1";
+				div.innerHTML = "<div></div>";
+				div.firstChild.style.width = "5px";
+				shrinkWrapBlocksVal = div.offsetWidth !== 3;
+			}
+
+			body.removeChild( container );
+
+			// Null elements to avoid leaks in IE.
+			body = container = div = null;
+		}
+
+		return shrinkWrapBlocksVal;
+	};
+
+})();
+var rmargin = (/^margin/);
+
+var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
+
+
+
+var getStyles, curCSS,
+	rposition = /^(top|right|bottom|left)$/;
+
+if ( window.getComputedStyle ) {
+	getStyles = function( elem ) {
+		return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
+	};
+
+	curCSS = function( elem, name, computed ) {
+		var width, minWidth, maxWidth, ret,
+			style = elem.style;
+
+		computed = computed || getStyles( elem );
+
+		// getPropertyValue is only needed for .css('filter') in IE9, see #12537
+		ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
+
+		if ( computed ) {
+
+			if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
+				ret = jQuery.style( elem, name );
+			}
+
+			// A tribute to the "awesome hack by Dean Edwards"
+			// Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right
+			// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
+			// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
+			if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
+
+				// Remember the original values
+				width = style.width;
+				minWidth = style.minWidth;
+				maxWidth = style.maxWidth;
+
+				// Put in the new values to get a computed value out
+				style.minWidth = style.maxWidth = style.width = ret;
+				ret = computed.width;
+
+				// Revert the changed values
+				style.width = width;
+				style.minWidth = minWidth;
+				style.maxWidth = maxWidth;
+			}
+		}
+
+		// Support: IE
+		// IE returns zIndex value as an integer.
+		return ret === undefined ?
+			ret :
+			ret + "";
+	};
+} else if ( document.documentElement.currentStyle ) {
+	getStyles = function( elem ) {
+		return elem.currentStyle;
+	};
+
+	curCSS = function( elem, name, computed ) {
+		var left, rs, rsLeft, ret,
+			style = elem.style;
+
+		computed = computed || getStyles( elem );
+		ret = computed ? computed[ name ] : undefined;
+
+		// Avoid setting ret to empty string here
+		// so we don't default to auto
+		if ( ret == null && style && style[ name ] ) {
+			ret = style[ name ];
+		}
+
+		// From the awesome hack by Dean Edwards
+		// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
+
+		// If we're not dealing with a regular pixel number
+		// but a number that has a weird ending, we need to convert it to pixels
+		// but not position css attributes, as those are proportional to the parent element instead
+		// and we can't measure the parent instead because it might trigger a "stacking dolls" problem
+		if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {
+
+			// Remember the original values
+			left = style.left;
+			rs = elem.runtimeStyle;
+			rsLeft = rs && rs.left;
+
+			// Put in the new values to get a computed value out
+			if ( rsLeft ) {
+				rs.left = elem.currentStyle.left;
+			}
+			style.left = name === "fontSize" ? "1em" : ret;
+			ret = style.pixelLeft + "px";
+
+			// Revert the changed values
+			style.left = left;
+			if ( rsLeft ) {
+				rs.left = rsLeft;
+			}
+		}
+
+		// Support: IE
+		// IE returns zIndex value as an integer.
+		return ret === undefined ?
+			ret :
+			ret + "" || "auto";
+	};
+}
+
+
+
+
+function addGetHookIf( conditionFn, hookFn ) {
+	// Define the hook, we'll check on the first run if it's really needed.
+	return {
+		get: function() {
+			var condition = conditionFn();
+
+			if ( condition == null ) {
+				// The test was not ready at this point; screw the hook this time
+				// but check again when needed next time.
+				return;
+			}
+
+			if ( condition ) {
+				// Hook not needed (or it's not possible to use it due to missing dependency),
+				// remove it.
+				// Since there are no other hooks for marginRight, remove the whole object.
+				delete this.get;
+				return;
+			}
+
+			// Hook needed; redefine it so that the support test is not executed again.
+
+			return (this.get = hookFn).apply( this, arguments );
+		}
+	};
+}
+
+
+(function() {
+	var a, reliableHiddenOffsetsVal, boxSizingVal, boxSizingReliableVal,
+		pixelPositionVal, reliableMarginRightVal,
+		div = document.createElement( "div" ),
+		containerStyles = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px",
+		divReset =
+			"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;" +
+			"display:block;padding:0;margin:0;border:0";
+
+	// Setup
+	div.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
+	a = div.getElementsByTagName( "a" )[ 0 ];
+
+	a.style.cssText = "float:left;opacity:.5";
+
+	// Make sure that element opacity exists
+	// (IE uses filter instead)
+	// Use a regex to work around a WebKit issue. See #5145
+	support.opacity = /^0.5/.test( a.style.opacity );
+
+	// Verify style float existence
+	// (IE uses styleFloat instead of cssFloat)
+	support.cssFloat = !!a.style.cssFloat;
+
+	div.style.backgroundClip = "content-box";
+	div.cloneNode( true ).style.backgroundClip = "";
+	support.clearCloneStyle = div.style.backgroundClip === "content-box";
+
+	// Null elements to avoid leaks in IE.
+	a = div = null;
+
+	jQuery.extend(support, {
+		reliableHiddenOffsets: function() {
+			if ( reliableHiddenOffsetsVal != null ) {
+				return reliableHiddenOffsetsVal;
+			}
+
+			var container, tds, isSupported,
+				div = document.createElement( "div" ),
+				body = document.getElementsByTagName( "body" )[ 0 ];
+
+			if ( !body ) {
+				// Return for frameset docs that don't have a body
+				return;
+			}
+
+			// Setup
+			div.setAttribute( "className", "t" );
+			div.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
+
+			container = document.createElement( "div" );
+			container.style.cssText = containerStyles;
+
+			body.appendChild( container ).appendChild( div );
+
+			// Support: IE8
+			// Check if table cells still have offsetWidth/Height when they are set
+			// to display:none and there are still other visible table cells in a
+			// table row; if so, offsetWidth/Height are not reliable for use when
+			// determining if an element has been hidden directly using
+			// display:none (it is still safe to use offsets if a parent element is
+			// hidden; don safety goggles and see bug #4512 for more information).
+			div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
+			tds = div.getElementsByTagName( "td" );
+			tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none";
+			isSupported = ( tds[ 0 ].offsetHeight === 0 );
+
+			tds[ 0 ].style.display = "";
+			tds[ 1 ].style.display = "none";
+
+			// Support: IE8
+			// Check if empty table cells still have offsetWidth/Height
+			reliableHiddenOffsetsVal = isSupported && ( tds[ 0 ].offsetHeight === 0 );
+
+			body.removeChild( container );
+
+			// Null elements to avoid leaks in IE.
+			div = body = null;
+
+			return reliableHiddenOffsetsVal;
+		},
+
+		boxSizing: function() {
+			if ( boxSizingVal == null ) {
+				computeStyleTests();
+			}
+			return boxSizingVal;
+		},
+
+		boxSizingReliable: function() {
+			if ( boxSizingReliableVal == null ) {
+				computeStyleTests();
+			}
+			return boxSizingReliableVal;
+		},
+
+		pixelPosition: function() {
+			if ( pixelPositionVal == null ) {
+				computeStyleTests();
+			}
+			return pixelPositionVal;
+		},
+
+		reliableMarginRight: function() {
+			var body, container, div, marginDiv;
+
+			// Use window.getComputedStyle because jsdom on node.js will break without it.
+			if ( reliableMarginRightVal == null && window.getComputedStyle ) {
+				body = document.getElementsByTagName( "body" )[ 0 ];
+				if ( !body ) {
+					// Test fired too early or in an unsupported environment, exit.
+					return;
+				}
+
+				container = document.createElement( "div" );
+				div = document.createElement( "div" );
+				container.style.cssText = containerStyles;
+
+				body.appendChild( container ).appendChild( div );
+
+				// Check if div with explicit width and no margin-right incorrectly
+				// gets computed margin-right based on width of container. (#3333)
+				// Fails in WebKit before Feb 2011 nightlies
+				// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
+				marginDiv = div.appendChild( document.createElement( "div" ) );
+				marginDiv.style.cssText = div.style.cssText = divReset;
+				marginDiv.style.marginRight = marginDiv.style.width = "0";
+				div.style.width = "1px";
+
+				reliableMarginRightVal =
+					!parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight );
+
+				body.removeChild( container );
+			}
+
+			return reliableMarginRightVal;
+		}
+	});
+
+	function computeStyleTests() {
+		var container, div,
+			body = document.getElementsByTagName( "body" )[ 0 ];
+
+		if ( !body ) {
+			// Test fired too early or in an unsupported environment, exit.
+			return;
+		}
+
+		container = document.createElement( "div" );
+		div = document.createElement( "div" );
+		container.style.cssText = containerStyles;
+
+		body.appendChild( container ).appendChild( div );
+
+		div.style.cssText =
+			"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;" +
+				"position:absolute;display:block;padding:1px;border:1px;width:4px;" +
+				"margin-top:1%;top:1%";
+
+		// Workaround failing boxSizing test due to offsetWidth returning wrong value
+		// with some non-1 values of body zoom, ticket #13543
+		jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() {
+			boxSizingVal = div.offsetWidth === 4;
+		});
+
+		// Will be changed later if needed.
+		boxSizingReliableVal = true;
+		pixelPositionVal = false;
+		reliableMarginRightVal = true;
+
+		// Use window.getComputedStyle because jsdom on node.js will break without it.
+		if ( window.getComputedStyle ) {
+			pixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
+			boxSizingReliableVal =
+				( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";
+		}
+
+		body.removeChild( container );
+
+		// Null elements to avoid leaks in IE.
+		div = body = null;
+	}
+
+})();
+
+
+// A method for quickly swapping in/out CSS properties to get correct calculations.
+jQuery.swap = function( elem, options, callback, args ) {
+	var ret, name,
+		old = {};
+
+	// Remember the old values, and insert the new ones
+	for ( name in options ) {
+		old[ name ] = elem.style[ name ];
+		elem.style[ name ] = options[ name ];
+	}
+
+	ret = callback.apply( elem, args || [] );
+
+	// Revert the old values
+	for ( name in options ) {
+		elem.style[ name ] = old[ name ];
+	}
+
+	return ret;
+};
+
+
+var
+		ralpha = /alpha\([^)]*\)/i,
+	ropacity = /opacity\s*=\s*([^)]*)/,
+
+	// swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
+	// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
+	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
+	rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ),
+	rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ),
+
+	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
+	cssNormalTransform = {
+		letterSpacing: 0,
+		fontWeight: 400
+	},
+
+	cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
+
+
+// return a css property mapped to a potentially vendor prefixed property
+function vendorPropName( style, name ) {
+
+	// shortcut for names that are not vendor prefixed
+	if ( name in style ) {
+		return name;
+	}
+
+	// check for vendor prefixed names
+	var capName = name.charAt(0).toUpperCase() + name.slice(1),
+		origName = name,
+		i = cssPrefixes.length;
+
+	while ( i-- ) {
+		name = cssPrefixes[ i ] + capName;
+		if ( name in style ) {
+			return name;
+		}
+	}
+
+	return origName;
+}
+
+function showHide( elements, show ) {
+	var display, elem, hidden,
+		values = [],
+		index = 0,
+		length = elements.length;
+
+	for ( ; index < length; index++ ) {
+		elem = elements[ index ];
+		if ( !elem.style ) {
+			continue;
+		}
+
+		values[ index ] = jQuery._data( elem, "olddisplay" );
+		display = elem.style.display;
+		if ( show ) {
+			// Reset the inline display of this element to learn if it is
+			// being hidden by cascaded rules or not
+			if ( !values[ index ] && display === "none" ) {
+				elem.style.display = "";
+			}
+
+			// Set elements which have been overridden with display: none
+			// in a stylesheet to whatever the default browser style is
+			// for such an element
+			if ( elem.style.display === "" && isHidden( elem ) ) {
+				values[ index ] = jQuery._data( elem, "olddisplay", defaultDisplay(elem.nodeName) );
+			}
+		} else {
+
+			if ( !values[ index ] ) {
+				hidden = isHidden( elem );
+
+				if ( display && display !== "none" || !hidden ) {
+					jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) );
+				}
+			}
+		}
+	}
+
+	// Set the display of most of the elements in a second loop
+	// to avoid the constant reflow
+	for ( index = 0; index < length; index++ ) {
+		elem = elements[ index ];
+		if ( !elem.style ) {
+			continue;
+		}
+		if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
+			elem.style.display = show ? values[ index ] || "" : "none";
+		}
+	}
+
+	return elements;
+}
+
+function setPositiveNumber( elem, value, subtract ) {
+	var matches = rnumsplit.exec( value );
+	return matches ?
+		// Guard against undefined "subtract", e.g., when used as in cssHooks
+		Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
+		value;
+}
+
+function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {
+	var i = extra === ( isBorderBox ? "border" : "content" ) ?
+		// If we already have the right measurement, avoid augmentation
+		4 :
+		// Otherwise initialize for horizontal or vertical properties
+		name === "width" ? 1 : 0,
+
+		val = 0;
+
+	for ( ; i < 4; i += 2 ) {
+		// both box models exclude margin, so add it if we want it
+		if ( extra === "margin" ) {
+			val += jQuery.css( elem, extra + cssExpand[ i ], true, styles );
+		}
+
+		if ( isBorderBox ) {
+			// border-box includes padding, so remove it if we want content
+			if ( extra === "content" ) {
+				val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
+			}
+
+			// at this point, extra isn't border nor margin, so remove border
+			if ( extra !== "margin" ) {
+				val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
+			}
+		} else {
+			// at this point, extra isn't content, so add padding
+			val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
+
+			// at this point, extra isn't content nor padding, so add border
+			if ( extra !== "padding" ) {
+				val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
+			}
+		}
+	}
+
+	return val;
+}
+
+function getWidthOrHeight( elem, name, extra ) {
+
+	// Start with offset property, which is equivalent to the border-box value
+	var valueIsBorderBox = true,
+		val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
+		styles = getStyles( elem ),
+		isBorderBox = support.boxSizing() && jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
+
+	// some non-html elements return undefined for offsetWidth, so check for null/undefined
+	// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
+	// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
+	if ( val <= 0 || val == null ) {
+		// Fall back to computed then uncomputed css if necessary
+		val = curCSS( elem, name, styles );
+		if ( val < 0 || val == null ) {
+			val = elem.style[ name ];
+		}
+
+		// Computed unit is not pixels. Stop here and return.
+		if ( rnumnonpx.test(val) ) {
+			return val;
+		}
+
+		// we need the check for style in case a browser which returns unreliable values
+		// for getComputedStyle silently falls back to the reliable elem.style
+		valueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] );
+
+		// Normalize "", auto, and prepare for extra
+		val = parseFloat( val ) || 0;
+	}
+
+	// use the active box-sizing model to add/subtract irrelevant styles
+	return ( val +
+		augmentWidthOrHeight(
+			elem,
+			name,
+			extra || ( isBorderBox ? "border" : "content" ),
+			valueIsBorderBox,
+			styles
+		)
+	) + "px";
+}
+
+jQuery.extend({
+	// Add in style property hooks for overriding the default
+	// behavior of getting and setting a style property
+	cssHooks: {
+		opacity: {
+			get: function( elem, computed ) {
+				if ( computed ) {
+					// We should always get a number back from opacity
+					var ret = curCSS( elem, "opacity" );
+					return ret === "" ? "1" : ret;
+				}
+			}
+		}
+	},
+
+	// Don't automatically add "px" to these possibly-unitless properties
+	cssNumber: {
+		"columnCount": true,
+		"fillOpacity": true,
+		"fontWeight": true,
+		"lineHeight": true,
+		"opacity": true,
+		"order": true,
+		"orphans": true,
+		"widows": true,
+		"zIndex": true,
+		"zoom": true
+	},
+
+	// Add in properties whose names you wish to fix before
+	// setting or getting the value
+	cssProps: {
+		// normalize float css property
+		"float": support.cssFloat ? "cssFloat" : "styleFloat"
+	},
+
+	// Get and set the style property on a DOM Node
+	style: function( elem, name, value, extra ) {
+		// Don't set styles on text and comment nodes
+		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
+			return;
+		}
+
+		// Make sure that we're working with the right name
+		var ret, type, hooks,
+			origName = jQuery.camelCase( name ),
+			style = elem.style;
+
+		name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
+
+		// gets hook for the prefixed version
+		// followed by the unprefixed version
+		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
+
+		// Check if we're setting a value
+		if ( value !== undefined ) {
+			type = typeof value;
+
+			// convert relative number strings (+= or -=) to relative numbers. #7345
+			if ( type === "string" && (ret = rrelNum.exec( value )) ) {
+				value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
+				// Fixes bug #9237
+				type = "number";
+			}
+
+			// Make sure that null and NaN values aren't set. See: #7116
+			if ( value == null || value !== value ) {
+				return;
+			}
+
+			// If a number was passed in, add 'px' to the (except for certain CSS properties)
+			if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
+				value += "px";
+			}
+
+			// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,
+			// but it would mean to define eight (for every problematic property) identical functions
+			if ( !support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) {
+				style[ name ] = "inherit";
+			}
+
+			// If a hook was provided, use that value, otherwise just set the specified value
+			if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
+
+				// Support: IE
+				// Swallow errors from 'invalid' CSS values (#5509)
+				try {
+					// Support: Chrome, Safari
+					// Setting style to blank string required to delete "style: x !important;"
+					style[ name ] = "";
+					style[ name ] = value;
+				} catch(e) {}
+			}
+
+		} else {
+			// If a hook was provided get the non-computed value from there
+			if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
+				return ret;
+			}
+
+			// Otherwise just get the value from the style object
+			return style[ name ];
+		}
+	},
+
+	css: function( elem, name, extra, styles ) {
+		var num, val, hooks,
+			origName = jQuery.camelCase( name );
+
+		// Make sure that we're working with the right name
+		name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
+
+		// gets hook for the prefixed version
+		// followed by the unprefixed version
+		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
+
+		// If a hook was provided get the computed value from there
+		if ( hooks && "get" in hooks ) {
+			val = hooks.get( elem, true, extra );
+		}
+
+		// Otherwise, if a way to get the computed value exists, use that
+		if ( val === undefined ) {
+			val = curCSS( elem, name, styles );
+		}
+
+		//convert "normal" to computed value
+		if ( val === "normal" && name in cssNormalTransform ) {
+			val = cssNormalTransform[ name ];
+		}
+
+		// Return, converting to number if forced or a qualifier was provided and val looks numeric
+		if ( extra === "" || extra ) {
+			num = parseFloat( val );
+			return extra === true || jQuery.isNumeric( num ) ? num || 0 : val;
+		}
+		return val;
+	}
+});
+
+jQuery.each([ "height", "width" ], function( i, name ) {
+	jQuery.cssHooks[ name ] = {
+		get: function( elem, computed, extra ) {
+			if ( computed ) {
+				// certain elements can have dimension info if we invisibly show them
+				// however, it must have a current display style that would benefit from this
+				return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ?
+					jQuery.swap( elem, cssShow, function() {
+						return getWidthOrHeight( elem, name, extra );
+					}) :
+					getWidthOrHeight( elem, name, extra );
+			}
+		},
+
+		set: function( elem, value, extra ) {
+			var styles = extra && getStyles( elem );
+			return setPositiveNumber( elem, value, extra ?
+				augmentWidthOrHeight(
+					elem,
+					name,
+					extra,
+					support.boxSizing() && jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
+					styles
+				) : 0
+			);
+		}
+	};
+});
+
+if ( !support.opacity ) {
+	jQuery.cssHooks.opacity = {
+		get: function( elem, computed ) {
+			// IE uses filters for opacity
+			return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
+				( 0.01 * parseFloat( RegExp.$1 ) ) + "" :
+				computed ? "1" : "";
+		},
+
+		set: function( elem, value ) {
+			var style = elem.style,
+				currentStyle = elem.currentStyle,
+				opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "",
+				filter = currentStyle && currentStyle.filter || style.filter || "";
+
+			// IE has trouble with opacity if it does not have layout
+			// Force it by setting the zoom level
+			style.zoom = 1;
+
+			// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652
+			// if value === "", then remove inline opacity #12685
+			if ( ( value >= 1 || value === "" ) &&
+					jQuery.trim( filter.replace( ralpha, "" ) ) === "" &&
+					style.removeAttribute ) {
+
+				// Setting style.filter to null, "" & " " still leave "filter:" in the cssText
+				// if "filter:" is present at all, clearType is disabled, we want to avoid this
+				// style.removeAttribute is IE Only, but so apparently is this code path...
+				style.removeAttribute( "filter" );
+
+				// if there is no filter style applied in a css rule or unset inline opacity, we are done
+				if ( value === "" || currentStyle && !currentStyle.filter ) {
+					return;
+				}
+			}
+
+			// otherwise, set new filter values
+			style.filter = ralpha.test( filter ) ?
+				filter.replace( ralpha, opacity ) :
+				filter + " " + opacity;
+		}
+	};
+}
+
+jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,
+	function( elem, computed ) {
+		if ( computed ) {
+			// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
+			// Work around by temporarily setting element display to inline-block
+			return jQuery.swap( elem, { "display": "inline-block" },
+				curCSS, [ elem, "marginRight" ] );
+		}
+	}
+);
+
+// These hooks are used by animate to expand properties
+jQuery.each({
+	margin: "",
+	padding: "",
+	border: "Width"
+}, function( prefix, suffix ) {
+	jQuery.cssHooks[ prefix + suffix ] = {
+		expand: function( value ) {
+			var i = 0,
+				expanded = {},
+
+				// assumes a single number if not a string
+				parts = typeof value === "string" ? value.split(" ") : [ value ];
+
+			for ( ; i < 4; i++ ) {
+				expanded[ prefix + cssExpand[ i ] + suffix ] =
+					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
+			}
+
+			return expanded;
+		}
+	};
+
+	if ( !rmargin.test( prefix ) ) {
+		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
+	}
+});
+
+jQuery.fn.extend({
+	css: function( name, value ) {
+		return access( this, function( elem, name, value ) {
+			var styles, len,
+				map = {},
+				i = 0;
+
+			if ( jQuery.isArray( name ) ) {
+				styles = getStyles( elem );
+				len = name.length;
+
+				for ( ; i < len; i++ ) {
+					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
+				}
+
+				return map;
+			}
+
+			return value !== undefined ?
+				jQuery.style( elem, name, value ) :
+				jQuery.css( elem, name );
+		}, name, value, arguments.length > 1 );
+	},
+	show: function() {
+		return showHide( this, true );
+	},
+	hide: function() {
+		return showHide( this );
+	},
+	toggle: function( state ) {
+		if ( typeof state === "boolean" ) {
+			return state ? this.show() : this.hide();
+		}
+
+		return this.each(function() {
+			if ( isHidden( this ) ) {
+				jQuery( this ).show();
+			} else {
+				jQuery( this ).hide();
+			}
+		});
+	}
+});
+
+
+function Tween( elem, options, prop, end, easing ) {
+	return new Tween.prototype.init( elem, options, prop, end, easing );
+}
+jQuery.Tween = Tween;
+
+Tween.prototype = {
+	constructor: Tween,
+	init: function( elem, options, prop, end, easing, unit ) {
+		this.elem = elem;
+		this.prop = prop;
+		this.easing = easing || "swing";
+		this.options = options;
+		this.start = this.now = this.cur();
+		this.end = end;
+		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
+	},
+	cur: function() {
+		var hooks = Tween.propHooks[ this.prop ];
+
+		return hooks && hooks.get ?
+			hooks.get( this ) :
+			Tween.propHooks._default.get( this );
+	},
+	run: function( percent ) {
+		var eased,
+			hooks = Tween.propHooks[ this.prop ];
+
+		if ( this.options.duration ) {
+			this.pos = eased = jQuery.easing[ this.easing ](
+				percent, this.options.duration * percent, 0, 1, this.options.duration
+			);
+		} else {
+			this.pos = eased = percent;
+		}
+		this.now = ( this.end - this.start ) * eased + this.start;
+
+		if ( this.options.step ) {
+			this.options.step.call( this.elem, this.now, this );
+		}
+
+		if ( hooks && hooks.set ) {
+			hooks.set( this );
+		} else {
+			Tween.propHooks._default.set( this );
+		}
+		return this;
+	}
+};
+
+Tween.prototype.init.prototype = Tween.prototype;
+
+Tween.propHooks = {
+	_default: {
+		get: function( tween ) {
+			var result;
+
+			if ( tween.elem[ tween.prop ] != null &&
+				(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
+				return tween.elem[ tween.prop ];
+			}
+
+			// passing an empty string as a 3rd parameter to .css will automatically
+			// attempt a parseFloat and fallback to a string if the parse fails
+			// so, simple values such as "10px" are parsed to Float.
+			// complex values such as "rotate(1rad)" are returned as is.
+			result = jQuery.css( tween.elem, tween.prop, "" );
+			// Empty strings, null, undefined and "auto" are converted to 0.
+			return !result || result === "auto" ? 0 : result;
+		},
+		set: function( tween ) {
+			// use step hook for back compat - use cssHook if its there - use .style if its
+			// available and use plain properties where available
+			if ( jQuery.fx.step[ tween.prop ] ) {
+				jQuery.fx.step[ tween.prop ]( tween );
+			} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
+				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
+			} else {
+				tween.elem[ tween.prop ] = tween.now;
+			}
+		}
+	}
+};
+
+// Support: IE <=9
+// Panic based approach to setting things on disconnected nodes
+
+Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
+	set: function( tween ) {
+		if ( tween.elem.nodeType && tween.elem.parentNode ) {
+			tween.elem[ tween.prop ] = tween.now;
+		}
+	}
+};
+
+jQuery.easing = {
+	linear: function( p ) {
+		return p;
+	},
+	swing: function( p ) {
+		return 0.5 - Math.cos( p * Math.PI ) / 2;
+	}
+};
+
+jQuery.fx = Tween.prototype.init;
+
+// Back Compat <1.8 extension point
+jQuery.fx.step = {};
+
+
+
+
+var
+	fxNow, timerId,
+	rfxtypes = /^(?:toggle|show|hide)$/,
+	rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ),
+	rrun = /queueHooks$/,
+	animationPrefilters = [ defaultPrefilter ],
+	tweeners = {
+		"*": [ function( prop, value ) {
+			var tween = this.createTween( prop, value ),
+				target = tween.cur(),
+				parts = rfxnum.exec( value ),
+				unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
+
+				// Starting value computation is required for potential unit mismatches
+				start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) &&
+					rfxnum.exec( jQuery.css( tween.elem, prop ) ),
+				scale = 1,
+				maxIterations = 20;
+
+			if ( start && start[ 3 ] !== unit ) {
+				// Trust units reported by jQuery.css
+				unit = unit || start[ 3 ];
+
+				// Make sure we update the tween properties later on
+				parts = parts || [];
+
+				// Iteratively approximate from a nonzero starting point
+				start = +target || 1;
+
+				do {
+					// If previous iteration zeroed out, double until we get *something*
+					// Use a string for doubling factor so we don't accidentally see scale as unchanged below
+					scale = scale || ".5";
+
+					// Adjust and apply
+					start = start / scale;
+					jQuery.style( tween.elem, prop, start + unit );
+
+				// Update scale, tolerating zero or NaN from tween.cur()
+				// And breaking the loop if scale is unchanged or perfect, or if we've just had enough
+				} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
+			}
+
+			// Update tween properties
+			if ( parts ) {
+				start = tween.start = +start || +target || 0;
+				tween.unit = unit;
+				// If a +=/-= token was provided, we're doing a relative animation
+				tween.end = parts[ 1 ] ?
+					start + ( parts[ 1 ] + 1 ) * parts[ 2 ] :
+					+parts[ 2 ];
+			}
+
+			return tween;
+		} ]
+	};
+
+// Animations created synchronously will run synchronously
+function createFxNow() {
+	setTimeout(function() {
+		fxNow = undefined;
+	});
+	return ( fxNow = jQuery.now() );
+}
+
+// Generate parameters to create a standard animation
+function genFx( type, includeWidth ) {
+	var which,
+		attrs = { height: type },
+		i = 0;
+
+	// if we include width, step value is 1 to do all cssExpand values,
+	// if we don't include width, step value is 2 to skip over Left and Right
+	includeWidth = includeWidth ? 1 : 0;
+	for ( ; i < 4 ; i += 2 - includeWidth ) {
+		which = cssExpand[ i ];
+		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
+	}
+
+	if ( includeWidth ) {
+		attrs.opacity = attrs.width = type;
+	}
+
+	return attrs;
+}
+
+function createTween( value, prop, animation ) {
+	var tween,
+		collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
+		index = 0,
+		length = collection.length;
+	for ( ; index < length; index++ ) {
+		if ( (tween = collection[ index ].call( animation, prop, value )) ) {
+
+			// we're done with this property
+			return tween;
+		}
+	}
+}
+
+function defaultPrefilter( elem, props, opts ) {
+	/* jshint validthis: true */
+	var prop, value, toggle, tween, hooks, oldfire, display, dDisplay,
+		anim = this,
+		orig = {},
+		style = elem.style,
+		hidden = elem.nodeType && isHidden( elem ),
+		dataShow = jQuery._data( elem, "fxshow" );
+
+	// handle queue: false promises
+	if ( !opts.queue ) {
+		hooks = jQuery._queueHooks( elem, "fx" );
+		if ( hooks.unqueued == null ) {
+			hooks.unqueued = 0;
+			oldfire = hooks.empty.fire;
+			hooks.empty.fire = function() {
+				if ( !hooks.unqueued ) {
+					oldfire();
+				}
+			};
+		}
+		hooks.unqueued++;
+
+		anim.always(function() {
+			// doing this makes sure that the complete handler will be called
+			// before this completes
+			anim.always(function() {
+				hooks.unqueued--;
+				if ( !jQuery.queue( elem, "fx" ).length ) {
+					hooks.empty.fire();
+				}
+			});
+		});
+	}
+
+	// height/width overflow pass
+	if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
+		// Make sure that nothing sneaks out
+		// Record all 3 overflow attributes because IE does not
+		// change the overflow attribute when overflowX and
+		// overflowY are set to the same value
+		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
+
+		// Set display property to inline-block for height/width
+		// animations on inline elements that are having width/height animated
+		display = jQuery.css( elem, "display" );
+		dDisplay = defaultDisplay( elem.nodeName );
+		if ( display === "none" ) {
+			display = dDisplay;
+		}
+		if ( display === "inline" &&
+				jQuery.css( elem, "float" ) === "none" ) {
+
+			// inline-level elements accept inline-block;
+			// block-level elements need to be inline with layout
+			if ( !support.inlineBlockNeedsLayout || dDisplay === "inline" ) {
+				style.display = "inline-block";
+			} else {
+				style.zoom = 1;
+			}
+		}
+	}
+
+	if ( opts.overflow ) {
+		style.overflow = "hidden";
+		if ( !support.shrinkWrapBlocks() ) {
+			anim.always(function() {
+				style.overflow = opts.overflow[ 0 ];
+				style.overflowX = opts.overflow[ 1 ];
+				style.overflowY = opts.overflow[ 2 ];
+			});
+		}
+	}
+
+	// show/hide pass
+	for ( prop in props ) {
+		value = props[ prop ];
+		if ( rfxtypes.exec( value ) ) {
+			delete props[ prop ];
+			toggle = toggle || value === "toggle";
+			if ( value === ( hidden ? "hide" : "show" ) ) {
+
+				// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
+				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
+					hidden = true;
+				} else {
+					continue;
+				}
+			}
+			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
+		}
+	}
+
+	if ( !jQuery.isEmptyObject( orig ) ) {
+		if ( dataShow ) {
+			if ( "hidden" in dataShow ) {
+				hidden = dataShow.hidden;
+			}
+		} else {
+			dataShow = jQuery._data( elem, "fxshow", {} );
+		}
+
+		// store state if its toggle - enables .stop().toggle() to "reverse"
+		if ( toggle ) {
+			dataShow.hidden = !hidden;
+		}
+		if ( hidden ) {
+			jQuery( elem ).show();
+		} else {
+			anim.done(function() {
+				jQuery( elem ).hide();
+			});
+		}
+		anim.done(function() {
+			var prop;
+			jQuery._removeData( elem, "fxshow" );
+			for ( prop in orig ) {
+				jQuery.style( elem, prop, orig[ prop ] );
+			}
+		});
+		for ( prop in orig ) {
+			tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
+
+			if ( !( prop in dataShow ) ) {
+				dataShow[ prop ] = tween.start;
+				if ( hidden ) {
+					tween.end = tween.start;
+					tween.start = prop === "width" || prop === "height" ? 1 : 0;
+				}
+			}
+		}
+	}
+}
+
+function propFilter( props, specialEasing ) {
+	var index, name, easing, value, hooks;
+
+	// camelCase, specialEasing and expand cssHook pass
+	for ( index in props ) {
+		name = jQuery.camelCase( index );
+		easing = specialEasing[ name ];
+		value = props[ index ];
+		if ( jQuery.isArray( value ) ) {
+			easing = value[ 1 ];
+			value = props[ index ] = value[ 0 ];
+		}
+
+		if ( index !== name ) {
+			props[ name ] = value;
+			delete props[ index ];
+		}
+
+		hooks = jQuery.cssHooks[ name ];
+		if ( hooks && "expand" in hooks ) {
+			value = hooks.expand( value );
+			delete props[ name ];
+
+			// not quite $.extend, this wont overwrite keys already present.
+			// also - reusing 'index' from above because we have the correct "name"
+			for ( index in value ) {
+				if ( !( index in props ) ) {
+					props[ index ] = value[ index ];
+					specialEasing[ index ] = easing;
+				}
+			}
+		} else {
+			specialEasing[ name ] = easing;
+		}
+	}
+}
+
+function Animation( elem, properties, options ) {
+	var result,
+		stopped,
+		index = 0,
+		length = animationPrefilters.length,
+		deferred = jQuery.Deferred().always( function() {
+			// don't match elem in the :animated selector
+			delete tick.elem;
+		}),
+		tick = function() {
+			if ( stopped ) {
+				return false;
+			}
+			var currentTime = fxNow || createFxNow(),
+				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
+				// archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497)
+				temp = remaining / animation.duration || 0,
+				percent = 1 - temp,
+				index = 0,
+				length = animation.tweens.length;
+
+			for ( ; index < length ; index++ ) {
+				animation.tweens[ index ].run( percent );
+			}
+
+			deferred.notifyWith( elem, [ animation, percent, remaining ]);
+
+			if ( percent < 1 && length ) {
+				return remaining;
+			} else {
+				deferred.resolveWith( elem, [ animation ] );
+				return false;
+			}
+		},
+		animation = deferred.promise({
+			elem: elem,
+			props: jQuery.extend( {}, properties ),
+			opts: jQuery.extend( true, { specialEasing: {} }, options ),
+			originalProperties: properties,
+			originalOptions: options,
+			startTime: fxNow || createFxNow(),
+			duration: options.duration,
+			tweens: [],
+			createTween: function( prop, end ) {
+				var tween = jQuery.Tween( elem, animation.opts, prop, end,
+						animation.opts.specialEasing[ prop ] || animation.opts.easing );
+				animation.tweens.push( tween );
+				return tween;
+			},
+			stop: function( gotoEnd ) {
+				var index = 0,
+					// if we are going to the end, we want to run all the tweens
+					// otherwise we skip this part
+					length = gotoEnd ? animation.tweens.length : 0;
+				if ( stopped ) {
+					return this;
+				}
+				stopped = true;
+				for ( ; index < length ; index++ ) {
+					animation.tweens[ index ].run( 1 );
+				}
+
+				// resolve when we played the last frame
+				// otherwise, reject
+				if ( gotoEnd ) {
+					deferred.resolveWith( elem, [ animation, gotoEnd ] );
+				} else {
+					deferred.rejectWith( elem, [ animation, gotoEnd ] );
+				}
+				return this;
+			}
+		}),
+		props = animation.props;
+
+	propFilter( props, animation.opts.specialEasing );
+
+	for ( ; index < length ; index++ ) {
+		result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
+		if ( result ) {
+			return result;
+		}
+	}
+
+	jQuery.map( props, createTween, animation );
+
+	if ( jQuery.isFunction( animation.opts.start ) ) {
+		animation.opts.start.call( elem, animation );
+	}
+
+	jQuery.fx.timer(
+		jQuery.extend( tick, {
+			elem: elem,
+			anim: animation,
+			queue: animation.opts.queue
+		})
+	);
+
+	// attach callbacks from options
+	return animation.progress( animation.opts.progress )
+		.done( animation.opts.done, animation.opts.complete )
+		.fail( animation.opts.fail )
+		.always( animation.opts.always );
+}
+
+jQuery.Animation = jQuery.extend( Animation, {
+	tweener: function( props, callback ) {
+		if ( jQuery.isFunction( props ) ) {
+			callback = props;
+			props = [ "*" ];
+		} else {
+			props = props.split(" ");
+		}
+
+		var prop,
+			index = 0,
+			length = props.length;
+
+		for ( ; index < length ; index++ ) {
+			prop = props[ index ];
+			tweeners[ prop ] = tweeners[ prop ] || [];
+			tweeners[ prop ].unshift( callback );
+		}
+	},
+
+	prefilter: function( callback, prepend ) {
+		if ( prepend ) {
+			animationPrefilters.unshift( callback );
+		} else {
+			animationPrefilters.push( callback );
+		}
+	}
+});
+
+jQuery.speed = function( speed, easing, fn ) {
+	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
+		complete: fn || !fn && easing ||
+			jQuery.isFunction( speed ) && speed,
+		duration: speed,
+		easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
+	};
+
+	opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
+		opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
+
+	// normalize opt.queue - true/undefined/null -> "fx"
+	if ( opt.queue == null || opt.queue === true ) {
+		opt.queue = "fx";
+	}
+
+	// Queueing
+	opt.old = opt.complete;
+
+	opt.complete = function() {
+		if ( jQuery.isFunction( opt.old ) ) {
+			opt.old.call( this );
+		}
+
+		if ( opt.queue ) {
+			jQuery.dequeue( this, opt.queue );
+		}
+	};
+
+	return opt;
+};
+
+jQuery.fn.extend({
+	fadeTo: function( speed, to, easing, callback ) {
+
+		// show any hidden elements after setting opacity to 0
+		return this.filter( isHidden ).css( "opacity", 0 ).show()
+
+			// animate to the value specified
+			.end().animate({ opacity: to }, speed, easing, callback );
+	},
+	animate: function( prop, speed, easing, callback ) {
+		var empty = jQuery.isEmptyObject( prop ),
+			optall = jQuery.speed( speed, easing, callback ),
+			doAnimation = function() {
+				// Operate on a copy of prop so per-property easing won't be lost
+				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
+
+				// Empty animations, or finishing resolves immediately
+				if ( empty || jQuery._data( this, "finish" ) ) {
+					anim.stop( true );
+				}
+			};
+			doAnimation.finish = doAnimation;
+
+		return empty || optall.queue === false ?
+			this.each( doAnimation ) :
+			this.queue( optall.queue, doAnimation );
+	},
+	stop: function( type, clearQueue, gotoEnd ) {
+		var stopQueue = function( hooks ) {
+			var stop = hooks.stop;
+			delete hooks.stop;
+			stop( gotoEnd );
+		};
+
+		if ( typeof type !== "string" ) {
+			gotoEnd = clearQueue;
+			clearQueue = type;
+			type = undefined;
+		}
+		if ( clearQueue && type !== false ) {
+			this.queue( type || "fx", [] );
+		}
+
+		return this.each(function() {
+			var dequeue = true,
+				index = type != null && type + "queueHooks",
+				timers = jQuery.timers,
+				data = jQuery._data( this );
+
+			if ( index ) {
+				if ( data[ index ] && data[ index ].stop ) {
+					stopQueue( data[ index ] );
+				}
+			} else {
+				for ( index in data ) {
+					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
+						stopQueue( data[ index ] );
+					}
+				}
+			}
+
+			for ( index = timers.length; index--; ) {
+				if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
+					timers[ index ].anim.stop( gotoEnd );
+					dequeue = false;
+					timers.splice( index, 1 );
+				}
+			}
+
+			// start the next in the queue if the last step wasn't forced
+			// timers currently will call their complete callbacks, which will dequeue
+			// but only if they were gotoEnd
+			if ( dequeue || !gotoEnd ) {
+				jQuery.dequeue( this, type );
+			}
+		});
+	},
+	finish: function( type ) {
+		if ( type !== false ) {
+			type = type || "fx";
+		}
+		return this.each(function() {
+			var index,
+				data = jQuery._data( this ),
+				queue = data[ type + "queue" ],
+				hooks = data[ type + "queueHooks" ],
+				timers = jQuery.timers,
+				length = queue ? queue.length : 0;
+
+			// enable finishing flag on private data
+			data.finish = true;
+
+			// empty the queue first
+			jQuery.queue( this, type, [] );
+
+			if ( hooks && hooks.stop ) {
+				hooks.stop.call( this, true );
+			}
+
+			// look for any active animations, and finish them
+			for ( index = timers.length; index--; ) {
+				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
+					timers[ index ].anim.stop( true );
+					timers.splice( index, 1 );
+				}
+			}
+
+			// look for any animations in the old queue and finish them
+			for ( index = 0; index < length; index++ ) {
+				if ( queue[ index ] && queue[ index ].finish ) {
+					queue[ index ].finish.call( this );
+				}
+			}
+
+			// turn off finishing flag
+			delete data.finish;
+		});
+	}
+});
+
+jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
+	var cssFn = jQuery.fn[ name ];
+	jQuery.fn[ name ] = function( speed, easing, callback ) {
+		return speed == null || typeof speed === "boolean" ?
+			cssFn.apply( this, arguments ) :
+			this.animate( genFx( name, true ), speed, easing, callback );
+	};
+});
+
+// Generate shortcuts for custom animations
+jQuery.each({
+	slideDown: genFx("show"),
+	slideUp: genFx("hide"),
+	slideToggle: genFx("toggle"),
+	fadeIn: { opacity: "show" },
+	fadeOut: { opacity: "hide" },
+	fadeToggle: { opacity: "toggle" }
+}, function( name, props ) {
+	jQuery.fn[ name ] = function( speed, easing, callback ) {
+		return this.animate( props, speed, easing, callback );
+	};
+});
+
+jQuery.timers = [];
+jQuery.fx.tick = function() {
+	var timer,
+		timers = jQuery.timers,
+		i = 0;
+
+	fxNow = jQuery.now();
+
+	for ( ; i < timers.length; i++ ) {
+		timer = timers[ i ];
+		// Checks the timer has not already been removed
+		if ( !timer() && timers[ i ] === timer ) {
+			timers.splice( i--, 1 );
+		}
+	}
+
+	if ( !timers.length ) {
+		jQuery.fx.stop();
+	}
+	fxNow = undefined;
+};
+
+jQuery.fx.timer = function( timer ) {
+	jQuery.timers.push( timer );
+	if ( timer() ) {
+		jQuery.fx.start();
+	} else {
+		jQuery.timers.pop();
+	}
+};
+
+jQuery.fx.interval = 13;
+
+jQuery.fx.start = function() {
+	if ( !timerId ) {
+		timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
+	}
+};
+
+jQuery.fx.stop = function() {
+	clearInterval( timerId );
+	timerId = null;
+};
+
+jQuery.fx.speeds = {
+	slow: 600,
+	fast: 200,
+	// Default speed
+	_default: 400
+};
+
+
+// Based off of the plugin by Clint Helfers, with permission.
+// http://blindsignals.com/index.php/2009/07/jquery-delay/
+jQuery.fn.delay = function( time, type ) {
+	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
+	type = type || "fx";
+
+	return this.queue( type, function( next, hooks ) {
+		var timeout = setTimeout( next, time );
+		hooks.stop = function() {
+			clearTimeout( timeout );
+		};
+	});
+};
+
+
+(function() {
+	var a, input, select, opt,
+		div = document.createElement("div" );
+
+	// Setup
+	div.setAttribute( "className", "t" );
+	div.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
+	a = div.getElementsByTagName("a")[ 0 ];
+
+	// First batch of tests.
+	select = document.createElement("select");
+	opt = select.appendChild( document.createElement("option") );
+	input = div.getElementsByTagName("input")[ 0 ];
+
+	a.style.cssText = "top:1px";
+
+	// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
+	support.getSetAttribute = div.className !== "t";
+
+	// Get the style information from getAttribute
+	// (IE uses .cssText instead)
+	support.style = /top/.test( a.getAttribute("style") );
+
+	// Make sure that URLs aren't manipulated
+	// (IE normalizes it by default)
+	support.hrefNormalized = a.getAttribute("href") === "/a";
+
+	// Check the default checkbox/radio value ("" on WebKit; "on" elsewhere)
+	support.checkOn = !!input.value;
+
+	// Make sure that a selected-by-default option has a working selected property.
+	// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
+	support.optSelected = opt.selected;
+
+	// Tests for enctype support on a form (#6743)
+	support.enctype = !!document.createElement("form").enctype;
+
+	// Make sure that the options inside disabled selects aren't marked as disabled
+	// (WebKit marks them as disabled)
+	select.disabled = true;
+	support.optDisabled = !opt.disabled;
+
+	// Support: IE8 only
+	// Check if we can trust getAttribute("value")
+	input = document.createElement( "input" );
+	input.setAttribute( "value", "" );
+	support.input = input.getAttribute( "value" ) === "";
+
+	// Check if an input maintains its value after becoming a radio
+	input.value = "t";
+	input.setAttribute( "type", "radio" );
+	support.radioValue = input.value === "t";
+
+	// Null elements to avoid leaks in IE.
+	a = input = select = opt = div = null;
+})();
+
+
+var rreturn = /\r/g;
+
+jQuery.fn.extend({
+	val: function( value ) {
+		var hooks, ret, isFunction,
+			elem = this[0];
+
+		if ( !arguments.length ) {
+			if ( elem ) {
+				hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
+
+				if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
+					return ret;
+				}
+
+				ret = elem.value;
+
+				return typeof ret === "string" ?
+					// handle most common string cases
+					ret.replace(rreturn, "") :
+					// handle cases where value is null/undef or number
+					ret == null ? "" : ret;
+			}
+
+			return;
+		}
+
+		isFunction = jQuery.isFunction( value );
+
+		return this.each(function( i ) {
+			var val;
+
+			if ( this.nodeType !== 1 ) {
+				return;
+			}
+
+			if ( isFunction ) {
+				val = value.call( this, i, jQuery( this ).val() );
+			} else {
+				val = value;
+			}
+
+			// Treat null/undefined as ""; convert numbers to string
+			if ( val == null ) {
+				val = "";
+			} else if ( typeof val === "number" ) {
+				val += "";
+			} else if ( jQuery.isArray( val ) ) {
+				val = jQuery.map( val, function( value ) {
+					return value == null ? "" : value + "";
+				});
+			}
+
+			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
+
+			// If set returns undefined, fall back to normal setting
+			if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
+				this.value = val;
+			}
+		});
+	}
+});
+
+jQuery.extend({
+	valHooks: {
+		option: {
+			get: function( elem ) {
+				var val = jQuery.find.attr( elem, "value" );
+				return val != null ?
+					val :
+					jQuery.text( elem );
+			}
+		},
+		select: {
+			get: function( elem ) {
+				var value, option,
+					options = elem.options,
+					index = elem.selectedIndex,
+					one = elem.type === "select-one" || index < 0,
+					values = one ? null : [],
+					max = one ? index + 1 : options.length,
+					i = index < 0 ?
+						max :
+						one ? index : 0;
+
+				// Loop through all the selected options
+				for ( ; i < max; i++ ) {
+					option = options[ i ];
+
+					// oldIE doesn't update selected after form reset (#2551)
+					if ( ( option.selected || i === index ) &&
+							// Don't return options that are disabled or in a disabled optgroup
+							( support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&
+							( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) {
+
+						// Get the specific value for the option
+						value = jQuery( option ).val();
+
+						// We don't need an array for one selects
+						if ( one ) {
+							return value;
+						}
+
+						// Multi-Selects return an array
+						values.push( value );
+					}
+				}
+
+				return values;
+			},
+
+			set: function( elem, value ) {
+				var optionSet, option,
+					options = elem.options,
+					values = jQuery.makeArray( value ),
+					i = options.length;
+
+				while ( i-- ) {
+					option = options[ i ];
+
+					if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) {
+
+						// Support: IE6
+						// When new option element is added to select box we need to
+						// force reflow of newly added node in order to workaround delay
+						// of initialization properties
+						try {
+							option.selected = optionSet = true;
+
+						} catch ( _ ) {
+
+							// Will be executed only in IE6
+							option.scrollHeight;
+						}
+
+					} else {
+						option.selected = false;
+					}
+				}
+
+				// Force browsers to behave consistently when non-matching value is set
+				if ( !optionSet ) {
+					elem.selectedIndex = -1;
+				}
+
+				return options;
+			}
+		}
+	}
+});
+
+// Radios and checkboxes getter/setter
+jQuery.each([ "radio", "checkbox" ], function() {
+	jQuery.valHooks[ this ] = {
+		set: function( elem, value ) {
+			if ( jQuery.isArray( value ) ) {
+				return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
+			}
+		}
+	};
+	if ( !support.checkOn ) {
+		jQuery.valHooks[ this ].get = function( elem ) {
+			// Support: Webkit
+			// "" is returned instead of "on" if a value isn't specified
+			return elem.getAttribute("value") === null ? "on" : elem.value;
+		};
+	}
+});
+
+
+
+
+var nodeHook, boolHook,
+	attrHandle = jQuery.expr.attrHandle,
+	ruseDefault = /^(?:checked|selected)$/i,
+	getSetAttribute = support.getSetAttribute,
+	getSetInput = support.input;
+
+jQuery.fn.extend({
+	attr: function( name, value ) {
+		return access( this, jQuery.attr, name, value, arguments.length > 1 );
+	},
+
+	removeAttr: function( name ) {
+		return this.each(function() {
+			jQuery.removeAttr( this, name );
+		});
+	}
+});
+
+jQuery.extend({
+	attr: function( elem, name, value ) {
+		var hooks, ret,
+			nType = elem.nodeType;
+
+		// don't get/set attributes on text, comment and attribute nodes
+		if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
+			return;
+		}
+
+		// Fallback to prop when attributes are not supported
+		if ( typeof elem.getAttribute === strundefined ) {
+			return jQuery.prop( elem, name, value );
+		}
+
+		// All attributes are lowercase
+		// Grab necessary hook if one is defined
+		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
+			name = name.toLowerCase();
+			hooks = jQuery.attrHooks[ name ] ||
+				( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );
+		}
+
+		if ( value !== undefined ) {
+
+			if ( value === null ) {
+				jQuery.removeAttr( elem, name );
+
+			} else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
+				return ret;
+
+			} else {
+				elem.setAttribute( name, value + "" );
+				return value;
+			}
+
+		} else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
+			return ret;
+
+		} else {
+			ret = jQuery.find.attr( elem, name );
+
+			// Non-existent attributes return null, we normalize to undefined
+			return ret == null ?
+				undefined :
+				ret;
+		}
+	},
+
+	removeAttr: function( elem, value ) {
+		var name, propName,
+			i = 0,
+			attrNames = value && value.match( rnotwhite );
+
+		if ( attrNames && elem.nodeType === 1 ) {
+			while ( (name = attrNames[i++]) ) {
+				propName = jQuery.propFix[ name ] || name;
+
+				// Boolean attributes get special treatment (#10870)
+				if ( jQuery.expr.match.bool.test( name ) ) {
+					// Set corresponding property to false
+					if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
+						elem[ propName ] = false;
+					// Support: IE<9
+					// Also clear defaultChecked/defaultSelected (if appropriate)
+					} else {
+						elem[ jQuery.camelCase( "default-" + name ) ] =
+							elem[ propName ] = false;
+					}
+
+				// See #9699 for explanation of this approach (setting first, then removal)
+				} else {
+					jQuery.attr( elem, name, "" );
+				}
+
+				elem.removeAttribute( getSetAttribute ? name : propName );
+			}
+		}
+	},
+
+	attrHooks: {
+		type: {
+			set: function( elem, value ) {
+				if ( !support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
+					// Setting the type on a radio button after the value resets the value in IE6-9
+					// Reset value to default in case type is set after value during creation
+					var val = elem.value;
+					elem.setAttribute( "type", value );
+					if ( val ) {
+						elem.value = val;
+					}
+					return value;
+				}
+			}
+		}
+	}
+});
+
+// Hook for boolean attributes
+boolHook = {
+	set: function( elem, value, name ) {
+		if ( value === false ) {
+			// Remove boolean attributes when set to false
+			jQuery.removeAttr( elem, name );
+		} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
+			// IE<8 needs the *property* name
+			elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );
+
+		// Use defaultChecked and defaultSelected for oldIE
+		} else {
+			elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true;
+		}
+
+		return name;
+	}
+};
+
+// Retrieve booleans specially
+jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
+
+	var getter = attrHandle[ name ] || jQuery.find.attr;
+
+	attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ?
+		function( elem, name, isXML ) {
+			var ret, handle;
+			if ( !isXML ) {
+				// Avoid an infinite loop by temporarily removing this function from the getter
+				handle = attrHandle[ name ];
+				attrHandle[ name ] = ret;
+				ret = getter( elem, name, isXML ) != null ?
+					name.toLowerCase() :
+					null;
+				attrHandle[ name ] = handle;
+			}
+			return ret;
+		} :
+		function( elem, name, isXML ) {
+			if ( !isXML ) {
+				return elem[ jQuery.camelCase( "default-" + name ) ] ?
+					name.toLowerCase() :
+					null;
+			}
+		};
+});
+
+// fix oldIE attroperties
+if ( !getSetInput || !getSetAttribute ) {
+	jQuery.attrHooks.value = {
+		set: function( elem, value, name ) {
+			if ( jQuery.nodeName( elem, "input" ) ) {
+				// Does not return so that setAttribute is also used
+				elem.defaultValue = value;
+			} else {
+				// Use nodeHook if defined (#1954); otherwise setAttribute is fine
+				return nodeHook && nodeHook.set( elem, value, name );
+			}
+		}
+	};
+}
+
+// IE6/7 do not support getting/setting some attributes with get/setAttribute
+if ( !getSetAttribute ) {
+
+	// Use this for any attribute in IE6/7
+	// This fixes almost every IE6/7 issue
+	nodeHook = {
+		set: function( elem, value, name ) {
+			// Set the existing or create a new attribute node
+			var ret = elem.getAttributeNode( name );
+			if ( !ret ) {
+				elem.setAttributeNode(
+					(ret = elem.ownerDocument.createAttribute( name ))
+				);
+			}
+
+			ret.value = value += "";
+
+			// Break association with cloned elements by also using setAttribute (#9646)
+			if ( name === "value" || value === elem.getAttribute( name ) ) {
+				return value;
+			}
+		}
+	};
+
+	// Some attributes are constructed with empty-string values when not defined
+	attrHandle.id = attrHandle.name = attrHandle.coords =
+		function( elem, name, isXML ) {
+			var ret;
+			if ( !isXML ) {
+				return (ret = elem.getAttributeNode( name )) && ret.value !== "" ?
+					ret.value :
+					null;
+			}
+		};
+
+	// Fixing value retrieval on a button requires this module
+	jQuery.valHooks.button = {
+		get: function( elem, name ) {
+			var ret = elem.getAttributeNode( name );
+			if ( ret && ret.specified ) {
+				return ret.value;
+			}
+		},
+		set: nodeHook.set
+	};
+
+	// Set contenteditable to false on removals(#10429)
+	// Setting to empty string throws an error as an invalid value
+	jQuery.attrHooks.contenteditable = {
+		set: function( elem, value, name ) {
+			nodeHook.set( elem, value === "" ? false : value, name );
+		}
+	};
+
+	// Set width and height to auto instead of 0 on empty string( Bug #8150 )
+	// This is for removals
+	jQuery.each([ "width", "height" ], function( i, name ) {
+		jQuery.attrHooks[ name ] = {
+			set: function( elem, value ) {
+				if ( value === "" ) {
+					elem.setAttribute( name, "auto" );
+					return value;
+				}
+			}
+		};
+	});
+}
+
+if ( !support.style ) {
+	jQuery.attrHooks.style = {
+		get: function( elem ) {
+			// Return undefined in the case of empty string
+			// Note: IE uppercases css property names, but if we were to .toLowerCase()
+			// .cssText, that would destroy case senstitivity in URL's, like in "background"
+			return elem.style.cssText || undefined;
+		},
+		set: function( elem, value ) {
+			return ( elem.style.cssText = value + "" );
+		}
+	};
+}
+
+
+
+
+var rfocusable = /^(?:input|select|textarea|button|object)$/i,
+	rclickable = /^(?:a|area)$/i;
+
+jQuery.fn.extend({
+	prop: function( name, value ) {
+		return access( this, jQuery.prop, name, value, arguments.length > 1 );
+	},
+
+	removeProp: function( name ) {
+		name = jQuery.propFix[ name ] || name;
+		return this.each(function() {
+			// try/catch handles cases where IE balks (such as removing a property on window)
+			try {
+				this[ name ] = undefined;
+				delete this[ name ];
+			} catch( e ) {}
+		});
+	}
+});
+
+jQuery.extend({
+	propFix: {
+		"for": "htmlFor",
+		"class": "className"
+	},
+
+	prop: function( elem, name, value ) {
+		var ret, hooks, notxml,
+			nType = elem.nodeType;
+
+		// don't get/set properties on text, comment and attribute nodes
+		if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
+			return;
+		}
+
+		notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
+
+		if ( notxml ) {
+			// Fix name and attach hooks
+			name = jQuery.propFix[ name ] || name;
+			hooks = jQuery.propHooks[ name ];
+		}
+
+		if ( value !== undefined ) {
+			return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ?
+				ret :
+				( elem[ name ] = value );
+
+		} else {
+			return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ?
+				ret :
+				elem[ name ];
+		}
+	},
+
+	propHooks: {
+		tabIndex: {
+			get: function( elem ) {
+				// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
+				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
+				// Use proper attribute retrieval(#12072)
+				var tabindex = jQuery.find.attr( elem, "tabindex" );
+
+				return tabindex ?
+					parseInt( tabindex, 10 ) :
+					rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
+						0 :
+						-1;
+			}
+		}
+	}
+});
+
+// Some attributes require a special call on IE
+// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
+if ( !support.hrefNormalized ) {
+	// href/src property should get the full normalized URL (#10299/#12915)
+	jQuery.each([ "href", "src" ], function( i, name ) {
+		jQuery.propHooks[ name ] = {
+			get: function( elem ) {
+				return elem.getAttribute( name, 4 );
+			}
+		};
+	});
+}
+
+// Support: Safari, IE9+
+// mis-reports the default selected property of an option
+// Accessing the parent's selectedIndex property fixes it
+if ( !support.optSelected ) {
+	jQuery.propHooks.selected = {
+		get: function( elem ) {
+			var parent = elem.parentNode;
+
+			if ( parent ) {
+				parent.selectedIndex;
+
+				// Make sure that it also works with optgroups, see #5701
+				if ( parent.parentNode ) {
+					parent.parentNode.selectedIndex;
+				}
+			}
+			return null;
+		}
+	};
+}
+
+jQuery.each([
+	"tabIndex",
+	"readOnly",
+	"maxLength",
+	"cellSpacing",
+	"cellPadding",
+	"rowSpan",
+	"colSpan",
+	"useMap",
+	"frameBorder",
+	"contentEditable"
+], function() {
+	jQuery.propFix[ this.toLowerCase() ] = this;
+});
+
+// IE6/7 call enctype encoding
+if ( !support.enctype ) {
+	jQuery.propFix.enctype = "encoding";
+}
+
+
+
+
+var rclass = /[\t\r\n\f]/g;
+
+jQuery.fn.extend({
+	addClass: function( value ) {
+		var classes, elem, cur, clazz, j, finalValue,
+			i = 0,
+			len = this.length,
+			proceed = typeof value === "string" && value;
+
+		if ( jQuery.isFunction( value ) ) {
+			return this.each(function( j ) {
+				jQuery( this ).addClass( value.call( this, j, this.className ) );
+			});
+		}
+
+		if ( proceed ) {
+			// The disjunction here is for better compressibility (see removeClass)
+			classes = ( value || "" ).match( rnotwhite ) || [];
+
+			for ( ; i < len; i++ ) {
+				elem = this[ i ];
+				cur = elem.nodeType === 1 && ( elem.className ?
+					( " " + elem.className + " " ).replace( rclass, " " ) :
+					" "
+				);
+
+				if ( cur ) {
+					j = 0;
+					while ( (clazz = classes[j++]) ) {
+						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
+							cur += clazz + " ";
+						}
+					}
+
+					// only assign if different to avoid unneeded rendering.
+					finalValue = jQuery.trim( cur );
+					if ( elem.className !== finalValue ) {
+						elem.className = finalValue;
+					}
+				}
+			}
+		}
+
+		return this;
+	},
+
+	removeClass: function( value ) {
+		var classes, elem, cur, clazz, j, finalValue,
+			i = 0,
+			len = this.length,
+			proceed = arguments.length === 0 || typeof value === "string" && value;
+
+		if ( jQuery.isFunction( value ) ) {
+			return this.each(function( j ) {
+				jQuery( this ).removeClass( value.call( this, j, this.className ) );
+			});
+		}
+		if ( proceed ) {
+			classes = ( value || "" ).match( rnotwhite ) || [];
+
+			for ( ; i < len; i++ ) {
+				elem = this[ i ];
+				// This expression is here for better compressibility (see addClass)
+				cur = elem.nodeType === 1 && ( elem.className ?
+					( " " + elem.className + " " ).replace( rclass, " " ) :
+					""
+				);
+
+				if ( cur ) {
+					j = 0;
+					while ( (clazz = classes[j++]) ) {
+						// Remove *all* instances
+						while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
+							cur = cur.replace( " " + clazz + " ", " " );
+						}
+					}
+
+					// only assign if different to avoid unneeded rendering.
+					finalValue = value ? jQuery.trim( cur ) : "";
+					if ( elem.className !== finalValue ) {
+						elem.className = finalValue;
+					}
+				}
+			}
+		}
+
+		return this;
+	},
+
+	toggleClass: function( value, stateVal ) {
+		var type = typeof value;
+
+		if ( typeof stateVal === "boolean" && type === "string" ) {
+			return stateVal ? this.addClass( value ) : this.removeClass( value );
+		}
+
+		if ( jQuery.isFunction( value ) ) {
+			return this.each(function( i ) {
+				jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
+			});
+		}
+
+		return this.each(function() {
+			if ( type === "string" ) {
+				// toggle individual class names
+				var className,
+					i = 0,
+					self = jQuery( this ),
+					classNames = value.match( rnotwhite ) || [];
+
+				while ( (className = classNames[ i++ ]) ) {
+					// check each className given, space separated list
+					if ( self.hasClass( className ) ) {
+						self.removeClass( className );
+					} else {
+						self.addClass( className );
+					}
+				}
+
+			// Toggle whole class name
+			} else if ( type === strundefined || type === "boolean" ) {
+				if ( this.className ) {
+					// store className if set
+					jQuery._data( this, "__className__", this.className );
+				}
+
+				// If the element has a class name or if we're passed "false",
+				// then remove the whole classname (if there was one, the above saved it).
+				// Otherwise bring back whatever was previously saved (if anything),
+				// falling back to the empty string if nothing was stored.
+				this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
+			}
+		});
+	},
+
+	hasClass: function( selector ) {
+		var className = " " + selector + " ",
+			i = 0,
+			l = this.length;
+		for ( ; i < l; i++ ) {
+			if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
+				return true;
+			}
+		}
+
+		return false;
+	}
+});
+
+
+
+
+// Return jQuery for attributes-only inclusion
+
+
+jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " +
+	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
+	"change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) {
+
+	// Handle event binding
+	jQuery.fn[ name ] = function( data, fn ) {
+		return arguments.length > 0 ?
+			this.on( name, null, data, fn ) :
+			this.trigger( name );
+	};
+});
+
+jQuery.fn.extend({
+	hover: function( fnOver, fnOut ) {
+		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
+	},
+
+	bind: function( types, data, fn ) {
+		return this.on( types, null, data, fn );
+	},
+	unbind: function( types, fn ) {
+		return this.off( types, null, fn );
+	},
+
+	delegate: function( selector, types, data, fn ) {
+		return this.on( types, selector, data, fn );
+	},
+	undelegate: function( selector, types, fn ) {
+		// ( namespace ) or ( selector, types [, fn] )
+		return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
+	}
+});
+
+
+var nonce = jQuery.now();
+
+var rquery = (/\?/);
+
+
+
+var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;
+
+jQuery.parseJSON = function( data ) {
+	// Attempt to parse using the native JSON parser first
+	if ( window.JSON && window.JSON.parse ) {
+		// Support: Android 2.3
+		// Workaround failure to string-cast null input
+		return window.JSON.parse( data + "" );
+	}
+
+	var requireNonComma,
+		depth = null,
+		str = jQuery.trim( data + "" );
+
+	// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains
+	// after removing valid tokens
+	return str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {
+
+		// Force termination if we see a misplaced comma
+		if ( requireNonComma && comma ) {
+			depth = 0;
+		}
+
+		// Perform no more replacements after returning to outermost depth
+		if ( depth === 0 ) {
+			return token;
+		}
+
+		// Commas must not follow "[", "{", or ","
+		requireNonComma = open || comma;
+
+		// Determine new depth
+		// array/object open ("[" or "{"): depth += true - false (increment)
+		// array/object close ("]" or "}"): depth += false - true (decrement)
+		// other cases ("," or primitive): depth += true - true (numeric cast)
+		depth += !close - !open;
+
+		// Remove this token
+		return "";
+	}) ) ?
+		( Function( "return " + str ) )() :
+		jQuery.error( "Invalid JSON: " + data );
+};
+
+
+// Cross-browser xml parsing
+jQuery.parseXML = function( data ) {
+	var xml, tmp;
+	if ( !data || typeof data !== "string" ) {
+		return null;
+	}
+	try {
+		if ( window.DOMParser ) { // Standard
+			tmp = new DOMParser();
+			xml = tmp.parseFromString( data, "text/xml" );
+		} else { // IE
+			xml = new ActiveXObject( "Microsoft.XMLDOM" );
+			xml.async = "false";
+			xml.loadXML( data );
+		}
+	} catch( e ) {
+		xml = undefined;
+	}
+	if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
+		jQuery.error( "Invalid XML: " + data );
+	}
+	return xml;
+};
+
+
+var
+	// Document location
+	ajaxLocParts,
+	ajaxLocation,
+
+	rhash = /#.*$/,
+	rts = /([?&])_=[^&]*/,
+	rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
+	// #7653, #8125, #8152: local protocol detection
+	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
+	rnoContent = /^(?:GET|HEAD)$/,
+	rprotocol = /^\/\//,
+	rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
+
+	/* Prefilters
+	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
+	 * 2) These are called:
+	 *    - BEFORE asking for a transport
+	 *    - AFTER param serialization (s.data is a string if s.processData is true)
+	 * 3) key is the dataType
+	 * 4) the catchall symbol "*" can be used
+	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
+	 */
+	prefilters = {},
+
+	/* Transports bindings
+	 * 1) key is the dataType
+	 * 2) the catchall symbol "*" can be used
+	 * 3) selection will start with transport dataType and THEN go to "*" if needed
+	 */
+	transports = {},
+
+	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
+	allTypes = "*/".concat("*");
+
+// #8138, IE may throw an exception when accessing
+// a field from window.location if document.domain has been set
+try {
+	ajaxLocation = location.href;
+} catch( e ) {
+	// Use the href attribute of an A element
+	// since IE will modify it given document.location
+	ajaxLocation = document.createElement( "a" );
+	ajaxLocation.href = "";
+	ajaxLocation = ajaxLocation.href;
+}
+
+// Segment location into parts
+ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
+
+// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
+function addToPrefiltersOrTransports( structure ) {
+
+	// dataTypeExpression is optional and defaults to "*"
+	return function( dataTypeExpression, func ) {
+
+		if ( typeof dataTypeExpression !== "string" ) {
+			func = dataTypeExpression;
+			dataTypeExpression = "*";
+		}
+
+		var dataType,
+			i = 0,
+			dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
+
+		if ( jQuery.isFunction( func ) ) {
+			// For each dataType in the dataTypeExpression
+			while ( (dataType = dataTypes[i++]) ) {
+				// Prepend if requested
+				if ( dataType.charAt( 0 ) === "+" ) {
+					dataType = dataType.slice( 1 ) || "*";
+					(structure[ dataType ] = structure[ dataType ] || []).unshift( func );
+
+				// Otherwise append
+				} else {
+					(structure[ dataType ] = structure[ dataType ] || []).push( func );
+				}
+			}
+		}
+	};
+}
+
+// Base inspection function for prefilters and transports
+function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
+
+	var inspected = {},
+		seekingTransport = ( structure === transports );
+
+	function inspect( dataType ) {
+		var selected;
+		inspected[ dataType ] = true;
+		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
+			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
+			if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
+				options.dataTypes.unshift( dataTypeOrTransport );
+				inspect( dataTypeOrTransport );
+				return false;
+			} else if ( seekingTransport ) {
+				return !( selected = dataTypeOrTransport );
+			}
+		});
+		return selected;
+	}
+
+	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
+}
+
+// A special extend for ajax options
+// that takes "flat" options (not to be deep extended)
+// Fixes #9887
+function ajaxExtend( target, src ) {
+	var deep, key,
+		flatOptions = jQuery.ajaxSettings.flatOptions || {};
+
+	for ( key in src ) {
+		if ( src[ key ] !== undefined ) {
+			( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
+		}
+	}
+	if ( deep ) {
+		jQuery.extend( true, target, deep );
+	}
+
+	return target;
+}
+
+/* Handles responses to an ajax request:
+ * - finds the right dataType (mediates between content-type and expected dataType)
+ * - returns the corresponding response
+ */
+function ajaxHandleResponses( s, jqXHR, responses ) {
+	var firstDataType, ct, finalDataType, type,
+		contents = s.contents,
+		dataTypes = s.dataTypes;
+
+	// Remove auto dataType and get content-type in the process
+	while ( dataTypes[ 0 ] === "*" ) {
+		dataTypes.shift();
+		if ( ct === undefined ) {
+			ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
+		}
+	}
+
+	// Check if we're dealing with a known content-type
+	if ( ct ) {
+		for ( type in contents ) {
+			if ( contents[ type ] && contents[ type ].test( ct ) ) {
+				dataTypes.unshift( type );
+				break;
+			}
+		}
+	}
+
+	// Check to see if we have a response for the expected dataType
+	if ( dataTypes[ 0 ] in responses ) {
+		finalDataType = dataTypes[ 0 ];
+	} else {
+		// Try convertible dataTypes
+		for ( type in responses ) {
+			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
+				finalDataType = type;
+				break;
+			}
+			if ( !firstDataType ) {
+				firstDataType = type;
+			}
+		}
+		// Or just use first one
+		finalDataType = finalDataType || firstDataType;
+	}
+
+	// If we found a dataType
+	// We add the dataType to the list if needed
+	// and return the corresponding response
+	if ( finalDataType ) {
+		if ( finalDataType !== dataTypes[ 0 ] ) {
+			dataTypes.unshift( finalDataType );
+		}
+		return responses[ finalDataType ];
+	}
+}
+
+/* Chain conversions given the request and the original response
+ * Also sets the responseXXX fields on the jqXHR instance
+ */
+function ajaxConvert( s, response, jqXHR, isSuccess ) {
+	var conv2, current, conv, tmp, prev,
+		converters = {},
+		// Work with a copy of dataTypes in case we need to modify it for conversion
+		dataTypes = s.dataTypes.slice();
+
+	// Create converters map with lowercased keys
+	if ( dataTypes[ 1 ] ) {
+		for ( conv in s.converters ) {
+			converters[ conv.toLowerCase() ] = s.converters[ conv ];
+		}
+	}
+
+	current = dataTypes.shift();
+
+	// Convert to each sequential dataType
+	while ( current ) {
+
+		if ( s.responseFields[ current ] ) {
+			jqXHR[ s.responseFields[ current ] ] = response;
+		}
+
+		// Apply the dataFilter if provided
+		if ( !prev && isSuccess && s.dataFilter ) {
+			response = s.dataFilter( response, s.dataType );
+		}
+
+		prev = current;
+		current = dataTypes.shift();
+
+		if ( current ) {
+
+			// There's only work to do if current dataType is non-auto
+			if ( current === "*" ) {
+
+				current = prev;
+
+			// Convert response if prev dataType is non-auto and differs from current
+			} else if ( prev !== "*" && prev !== current ) {
+
+				// Seek a direct converter
+				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
+
+				// If none found, seek a pair
+				if ( !conv ) {
+					for ( conv2 in converters ) {
+
+						// If conv2 outputs current
+						tmp = conv2.split( " " );
+						if ( tmp[ 1 ] === current ) {
+
+							// If prev can be converted to accepted input
+							conv = converters[ prev + " " + tmp[ 0 ] ] ||
+								converters[ "* " + tmp[ 0 ] ];
+							if ( conv ) {
+								// Condense equivalence converters
+								if ( conv === true ) {
+									conv = converters[ conv2 ];
+
+								// Otherwise, insert the intermediate dataType
+								} else if ( converters[ conv2 ] !== true ) {
+									current = tmp[ 0 ];
+									dataTypes.unshift( tmp[ 1 ] );
+								}
+								break;
+							}
+						}
+					}
+				}
+
+				// Apply converter (if not an equivalence)
+				if ( conv !== true ) {
+
+					// Unless errors are allowed to bubble, catch and return them
+					if ( conv && s[ "throws" ] ) {
+						response = conv( response );
+					} else {
+						try {
+							response = conv( response );
+						} catch ( e ) {
+							return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
+						}
+					}
+				}
+			}
+		}
+	}
+
+	return { state: "success", data: response };
+}
+
+jQuery.extend({
+
+	// Counter for holding the number of active queries
+	active: 0,
+
+	// Last-Modified header cache for next request
+	lastModified: {},
+	etag: {},
+
+	ajaxSettings: {
+		url: ajaxLocation,
+		type: "GET",
+		isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
+		global: true,
+		processData: true,
+		async: true,
+		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
+		/*
+		timeout: 0,
+		data: null,
+		dataType: null,
+		username: null,
+		password: null,
+		cache: null,
+		throws: false,
+		traditional: false,
+		headers: {},
+		*/
+
+		accepts: {
+			"*": allTypes,
+			text: "text/plain",
+			html: "text/html",
+			xml: "application/xml, text/xml",
+			json: "application/json, text/javascript"
+		},
+
+		contents: {
+			xml: /xml/,
+			html: /html/,
+			json: /json/
+		},
+
+		responseFields: {
+			xml: "responseXML",
+			text: "responseText",
+			json: "responseJSON"
+		},
+
+		// Data converters
+		// Keys separate source (or catchall "*") and destination types with a single space
+		converters: {
+
+			// Convert anything to text
+			"* text": String,
+
+			// Text to html (true = no transformation)
+			"text html": true,
+
+			// Evaluate text as a json expression
+			"text json": jQuery.parseJSON,
+
+			// Parse text as xml
+			"text xml": jQuery.parseXML
+		},
+
+		// For options that shouldn't be deep extended:
+		// you can add your own custom options here if
+		// and when you create one that shouldn't be
+		// deep extended (see ajaxExtend)
+		flatOptions: {
+			url: true,
+			context: true
+		}
+	},
+
+	// Creates a full fledged settings object into target
+	// with both ajaxSettings and settings fields.
+	// If target is omitted, writes into ajaxSettings.
+	ajaxSetup: function( target, settings ) {
+		return settings ?
+
+			// Building a settings object
+			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
+
+			// Extending ajaxSettings
+			ajaxExtend( jQuery.ajaxSettings, target );
+	},
+
+	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
+	ajaxTransport: addToPrefiltersOrTransports( transports ),
+
+	// Main method
+	ajax: function( url, options ) {
+
+		// If url is an object, simulate pre-1.5 signature
+		if ( typeof url === "object" ) {
+			options = url;
+			url = undefined;
+		}
+
+		// Force options to be an object
+		options = options || {};
+
+		var // Cross-domain detection vars
+			parts,
+			// Loop variable
+			i,
+			// URL without anti-cache param
+			cacheURL,
+			// Response headers as string
+			responseHeadersString,
+			// timeout handle
+			timeoutTimer,
+
+			// To know if global events are to be dispatched
+			fireGlobals,
+
+			transport,
+			// Response headers
+			responseHeaders,
+			// Create the final options object
+			s = jQuery.ajaxSetup( {}, options ),
+			// Callbacks context
+			callbackContext = s.context || s,
+			// Context for global events is callbackContext if it is a DOM node or jQuery collection
+			globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
+				jQuery( callbackContext ) :
+				jQuery.event,
+			// Deferreds
+			deferred = jQuery.Deferred(),
+			completeDeferred = jQuery.Callbacks("once memory"),
+			// Status-dependent callbacks
+			statusCode = s.statusCode || {},
+			// Headers (they are sent all at once)
+			requestHeaders = {},
+			requestHeadersNames = {},
+			// The jqXHR state
+			state = 0,
+			// Default abort message
+			strAbort = "canceled",
+			// Fake xhr
+			jqXHR = {
+				readyState: 0,
+
+				// Builds headers hashtable if needed
+				getResponseHeader: function( key ) {
+					var match;
+					if ( state === 2 ) {
+						if ( !responseHeaders ) {
+							responseHeaders = {};
+							while ( (match = rheaders.exec( responseHeadersString )) ) {
+								responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
+							}
+						}
+						match = responseHeaders[ key.toLowerCase() ];
+					}
+					return match == null ? null : match;
+				},
+
+				// Raw string
+				getAllResponseHeaders: function() {
+					return state === 2 ? responseHeadersString : null;
+				},
+
+				// Caches the header
+				setRequestHeader: function( name, value ) {
+					var lname = name.toLowerCase();
+					if ( !state ) {
+						name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
+						requestHeaders[ name ] = value;
+					}
+					return this;
+				},
+
+				// Overrides response content-type header
+				overrideMimeType: function( type ) {
+					if ( !state ) {
+						s.mimeType = type;
+					}
+					return this;
+				},
+
+				// Status-dependent callbacks
+				statusCode: function( map ) {
+					var code;
+					if ( map ) {
+						if ( state < 2 ) {
+							for ( code in map ) {
+								// Lazy-add the new callback in a way that preserves old ones
+								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
+							}
+						} else {
+							// Execute the appropriate callbacks
+							jqXHR.always( map[ jqXHR.status ] );
+						}
+					}
+					return this;
+				},
+
+				// Cancel the request
+				abort: function( statusText ) {
+					var finalText = statusText || strAbort;
+					if ( transport ) {
+						transport.abort( finalText );
+					}
+					done( 0, finalText );
+					return this;
+				}
+			};
+
+		// Attach deferreds
+		deferred.promise( jqXHR ).complete = completeDeferred.add;
+		jqXHR.success = jqXHR.done;
+		jqXHR.error = jqXHR.fail;
+
+		// Remove hash character (#7531: and string promotion)
+		// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
+		// Handle falsy url in the settings object (#10093: consistency with old signature)
+		// We also use the url parameter if available
+		s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
+
+		// Alias method option to type as per ticket #12004
+		s.type = options.method || options.type || s.method || s.type;
+
+		// Extract dataTypes list
+		s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
+
+		// A cross-domain request is in order when we have a protocol:host:port mismatch
+		if ( s.crossDomain == null ) {
+			parts = rurl.exec( s.url.toLowerCase() );
+			s.crossDomain = !!( parts &&
+				( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
+					( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
+						( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
+			);
+		}
+
+		// Convert data if not already a string
+		if ( s.data && s.processData && typeof s.data !== "string" ) {
+			s.data = jQuery.param( s.data, s.traditional );
+		}
+
+		// Apply prefilters
+		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
+
+		// If request was aborted inside a prefilter, stop there
+		if ( state === 2 ) {
+			return jqXHR;
+		}
+
+		// We can fire global events as of now if asked to
+		fireGlobals = s.global;
+
+		// Watch for a new set of requests
+		if ( fireGlobals && jQuery.active++ === 0 ) {
+			jQuery.event.trigger("ajaxStart");
+		}
+
+		// Uppercase the type
+		s.type = s.type.toUpperCase();
+
+		// Determine if request has content
+		s.hasContent = !rnoContent.test( s.type );
+
+		// Save the URL in case we're toying with the If-Modified-Since
+		// and/or If-None-Match header later on
+		cacheURL = s.url;
+
+		// More options handling for requests with no content
+		if ( !s.hasContent ) {
+
+			// If data is available, append data to url
+			if ( s.data ) {
+				cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
+				// #9682: remove data so that it's not used in an eventual retry
+				delete s.data;
+			}
+
+			// Add anti-cache in url if needed
+			if ( s.cache === false ) {
+				s.url = rts.test( cacheURL ) ?
+
+					// If there is already a '_' parameter, set its value
+					cacheURL.replace( rts, "$1_=" + nonce++ ) :
+
+					// Otherwise add one to the end
+					cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
+			}
+		}
+
+		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
+		if ( s.ifModified ) {
+			if ( jQuery.lastModified[ cacheURL ] ) {
+				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
+			}
+			if ( jQuery.etag[ cacheURL ] ) {
+				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
+			}
+		}
+
+		// Set the correct header, if data is being sent
+		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
+			jqXHR.setRequestHeader( "Content-Type", s.contentType );
+		}
+
+		// Set the Accepts header for the server, depending on the dataType
+		jqXHR.setRequestHeader(
+			"Accept",
+			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
+				s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
+				s.accepts[ "*" ]
+		);
+
+		// Check for headers option
+		for ( i in s.headers ) {
+			jqXHR.setRequestHeader( i, s.headers[ i ] );
+		}
+
+		// Allow custom headers/mimetypes and early abort
+		if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
+			// Abort if not done already and return
+			return jqXHR.abort();
+		}
+
+		// aborting is no longer a cancellation
+		strAbort = "abort";
+
+		// Install callbacks on deferreds
+		for ( i in { success: 1, error: 1, complete: 1 } ) {
+			jqXHR[ i ]( s[ i ] );
+		}
+
+		// Get transport
+		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
+
+		// If no transport, we auto-abort
+		if ( !transport ) {
+			done( -1, "No Transport" );
+		} else {
+			jqXHR.readyState = 1;
+
+			// Send global event
+			if ( fireGlobals ) {
+				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
+			}
+			// Timeout
+			if ( s.async && s.timeout > 0 ) {
+				timeoutTimer = setTimeout(function() {
+					jqXHR.abort("timeout");
+				}, s.timeout );
+			}
+
+			try {
+				state = 1;
+				transport.send( requestHeaders, done );
+			} catch ( e ) {
+				// Propagate exception as error if not done
+				if ( state < 2 ) {
+					done( -1, e );
+				// Simply rethrow otherwise
+				} else {
+					throw e;
+				}
+			}
+		}
+
+		// Callback for when everything is done
+		function done( status, nativeStatusText, responses, headers ) {
+			var isSuccess, success, error, response, modified,
+				statusText = nativeStatusText;
+
+			// Called once
+			if ( state === 2 ) {
+				return;
+			}
+
+			// State is "done" now
+			state = 2;
+
+			// Clear timeout if it exists
+			if ( timeoutTimer ) {
+				clearTimeout( timeoutTimer );
+			}
+
+			// Dereference transport for early garbage collection
+			// (no matter how long the jqXHR object will be used)
+			transport = undefined;
+
+			// Cache response headers
+			responseHeadersString = headers || "";
+
+			// Set readyState
+			jqXHR.readyState = status > 0 ? 4 : 0;
+
+			// Determine if successful
+			isSuccess = status >= 200 && status < 300 || status === 304;
+
+			// Get response data
+			if ( responses ) {
+				response = ajaxHandleResponses( s, jqXHR, responses );
+			}
+
+			// Convert no matter what (that way responseXXX fields are always set)
+			response = ajaxConvert( s, response, jqXHR, isSuccess );
+
+			// If successful, handle type chaining
+			if ( isSuccess ) {
+
+				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
+				if ( s.ifModified ) {
+					modified = jqXHR.getResponseHeader("Last-Modified");
+					if ( modified ) {
+						jQuery.lastModified[ cacheURL ] = modified;
+					}
+					modified = jqXHR.getResponseHeader("etag");
+					if ( modified ) {
+						jQuery.etag[ cacheURL ] = modified;
+					}
+				}
+
+				// if no content
+				if ( status === 204 || s.type === "HEAD" ) {
+					statusText = "nocontent";
+
+				// if not modified
+				} else if ( status === 304 ) {
+					statusText = "notmodified";
+
+				// If we have data, let's convert it
+				} else {
+					statusText = response.state;
+					success = response.data;
+					error = response.error;
+					isSuccess = !error;
+				}
+			} else {
+				// We extract error from statusText
+				// then normalize statusText and status for non-aborts
+				error = statusText;
+				if ( status || !statusText ) {
+					statusText = "error";
+					if ( status < 0 ) {
+						status = 0;
+					}
+				}
+			}
+
+			// Set data for the fake xhr object
+			jqXHR.status = status;
+			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
+
+			// Success/Error
+			if ( isSuccess ) {
+				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
+			} else {
+				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
+			}
+
+			// Status-dependent callbacks
+			jqXHR.statusCode( statusCode );
+			statusCode = undefined;
+
+			if ( fireGlobals ) {
+				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
+					[ jqXHR, s, isSuccess ? success : error ] );
+			}
+
+			// Complete
+			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
+
+			if ( fireGlobals ) {
+				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
+				// Handle the global AJAX counter
+				if ( !( --jQuery.active ) ) {
+					jQuery.event.trigger("ajaxStop");
+				}
+			}
+		}
+
+		return jqXHR;
+	},
+
+	getJSON: function( url, data, callback ) {
+		return jQuery.get( url, data, callback, "json" );
+	},
+
+	getScript: function( url, callback ) {
+		return jQuery.get( url, undefined, callback, "script" );
+	}
+});
+
+jQuery.each( [ "get", "post" ], function( i, method ) {
+	jQuery[ method ] = function( url, data, callback, type ) {
+		// shift arguments if data argument was omitted
+		if ( jQuery.isFunction( data ) ) {
+			type = type || callback;
+			callback = data;
+			data = undefined;
+		}
+
+		return jQuery.ajax({
+			url: url,
+			type: method,
+			dataType: type,
+			data: data,
+			success: callback
+		});
+	};
+});
+
+// Attach a bunch of functions for handling common AJAX events
+jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
+	jQuery.fn[ type ] = function( fn ) {
+		return this.on( type, fn );
+	};
+});
+
+
+jQuery._evalUrl = function( url ) {
+	return jQuery.ajax({
+		url: url,
+		type: "GET",
+		dataType: "script",
+		async: false,
+		global: false,
+		"throws": true
+	});
+};
+
+
+jQuery.fn.extend({
+	wrapAll: function( html ) {
+		if ( jQuery.isFunction( html ) ) {
+			return this.each(function(i) {
+				jQuery(this).wrapAll( html.call(this, i) );
+			});
+		}
+
+		if ( this[0] ) {
+			// The elements to wrap the target around
+			var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
+
+			if ( this[0].parentNode ) {
+				wrap.insertBefore( this[0] );
+			}
+
+			wrap.map(function() {
+				var elem = this;
+
+				while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
+					elem = elem.firstChild;
+				}
+
+				return elem;
+			}).append( this );
+		}
+
+		return this;
+	},
+
+	wrapInner: function( html ) {
+		if ( jQuery.isFunction( html ) ) {
+			return this.each(function(i) {
+				jQuery(this).wrapInner( html.call(this, i) );
+			});
+		}
+
+		return this.each(function() {
+			var self = jQuery( this ),
+				contents = self.contents();
+
+			if ( contents.length ) {
+				contents.wrapAll( html );
+
+			} else {
+				self.append( html );
+			}
+		});
+	},
+
+	wrap: function( html ) {
+		var isFunction = jQuery.isFunction( html );
+
+		return this.each(function(i) {
+			jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
+		});
+	},
+
+	unwrap: function() {
+		return this.parent().each(function() {
+			if ( !jQuery.nodeName( this, "body" ) ) {
+				jQuery( this ).replaceWith( this.childNodes );
+			}
+		}).end();
+	}
+});
+
+
+jQuery.expr.filters.hidden = function( elem ) {
+	// Support: Opera <= 12.12
+	// Opera reports offsetWidths and offsetHeights less than zero on some elements
+	return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 ||
+		(!support.reliableHiddenOffsets() &&
+			((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none");
+};
+
+jQuery.expr.filters.visible = function( elem ) {
+	return !jQuery.expr.filters.hidden( elem );
+};
+
+
+
+
+var r20 = /%20/g,
+	rbracket = /\[\]$/,
+	rCRLF = /\r?\n/g,
+	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
+	rsubmittable = /^(?:input|select|textarea|keygen)/i;
+
+function buildParams( prefix, obj, traditional, add ) {
+	var name;
+
+	if ( jQuery.isArray( obj ) ) {
+		// Serialize array item.
+		jQuery.each( obj, function( i, v ) {
+			if ( traditional || rbracket.test( prefix ) ) {
+				// Treat each array item as a scalar.
+				add( prefix, v );
+
+			} else {
+				// Item is non-scalar (array or object), encode its numeric index.
+				buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
+			}
+		});
+
+	} else if ( !traditional && jQuery.type( obj ) === "object" ) {
+		// Serialize object item.
+		for ( name in obj ) {
+			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
+		}
+
+	} else {
+		// Serialize scalar item.
+		add( prefix, obj );
+	}
+}
+
+// Serialize an array of form elements or a set of
+// key/values into a query string
+jQuery.param = function( a, traditional ) {
+	var prefix,
+		s = [],
+		add = function( key, value ) {
+			// If value is a function, invoke it and return its value
+			value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
+			s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
+		};
+
+	// Set traditional to true for jQuery <= 1.3.2 behavior.
+	if ( traditional === undefined ) {
+		traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
+	}
+
+	// If an array was passed in, assume that it is an array of form elements.
+	if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
+		// Serialize the form elements
+		jQuery.each( a, function() {
+			add( this.name, this.value );
+		});
+
+	} else {
+		// If traditional, encode the "old" way (the way 1.3.2 or older
+		// did it), otherwise encode params recursively.
+		for ( prefix in a ) {
+			buildParams( prefix, a[ prefix ], traditional, add );
+		}
+	}
+
+	// Return the resulting serialization
+	return s.join( "&" ).replace( r20, "+" );
+};
+
+jQuery.fn.extend({
+	serialize: function() {
+		return jQuery.param( this.serializeArray() );
+	},
+	serializeArray: function() {
+		return this.map(function() {
+			// Can add propHook for "elements" to filter or add form elements
+			var elements = jQuery.prop( this, "elements" );
+			return elements ? jQuery.makeArray( elements ) : this;
+		})
+		.filter(function() {
+			var type = this.type;
+			// Use .is(":disabled") so that fieldset[disabled] works
+			return this.name && !jQuery( this ).is( ":disabled" ) &&
+				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
+				( this.checked || !rcheckableType.test( type ) );
+		})
+		.map(function( i, elem ) {
+			var val = jQuery( this ).val();
+
+			return val == null ?
+				null :
+				jQuery.isArray( val ) ?
+					jQuery.map( val, function( val ) {
+						return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
+					}) :
+					{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
+		}).get();
+	}
+});
+
+
+// Create the request object
+// (This is still attached to ajaxSettings for backward compatibility)
+jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?
+	// Support: IE6+
+	function() {
+
+		// XHR cannot access local files, always use ActiveX for that case
+		return !this.isLocal &&
+
+			// Support: IE7-8
+			// oldIE XHR does not support non-RFC2616 methods (#13240)
+			// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx
+			// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9
+			// Although this check for six methods instead of eight
+			// since IE also does not support "trace" and "connect"
+			/^(get|post|head|put|delete|options)$/i.test( this.type ) &&
+
+			createStandardXHR() || createActiveXHR();
+	} :
+	// For all other browsers, use the standard XMLHttpRequest object
+	createStandardXHR;
+
+var xhrId = 0,
+	xhrCallbacks = {},
+	xhrSupported = jQuery.ajaxSettings.xhr();
+
+// Support: IE<10
+// Open requests must be manually aborted on unload (#5280)
+if ( window.ActiveXObject ) {
+	jQuery( window ).on( "unload", function() {
+		for ( var key in xhrCallbacks ) {
+			xhrCallbacks[ key ]( undefined, true );
+		}
+	});
+}
+
+// Determine support properties
+support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
+xhrSupported = support.ajax = !!xhrSupported;
+
+// Create transport if the browser can provide an xhr
+if ( xhrSupported ) {
+
+	jQuery.ajaxTransport(function( options ) {
+		// Cross domain only allowed if supported through XMLHttpRequest
+		if ( !options.crossDomain || support.cors ) {
+
+			var callback;
+
+			return {
+				send: function( headers, complete ) {
+					var i,
+						xhr = options.xhr(),
+						id = ++xhrId;
+
+					// Open the socket
+					xhr.open( options.type, options.url, options.async, options.username, options.password );
+
+					// Apply custom fields if provided
+					if ( options.xhrFields ) {
+						for ( i in options.xhrFields ) {
+							xhr[ i ] = options.xhrFields[ i ];
+						}
+					}
+
+					// Override mime type if needed
+					if ( options.mimeType && xhr.overrideMimeType ) {
+						xhr.overrideMimeType( options.mimeType );
+					}
+
+					// X-Requested-With header
+					// For cross-domain requests, seeing as conditions for a preflight are
+					// akin to a jigsaw puzzle, we simply never set it to be sure.
+					// (it can always be set on a per-request basis or even using ajaxSetup)
+					// For same-domain requests, won't change header if already provided.
+					if ( !options.crossDomain && !headers["X-Requested-With"] ) {
+						headers["X-Requested-With"] = "XMLHttpRequest";
+					}
+
+					// Set headers
+					for ( i in headers ) {
+						// Support: IE<9
+						// IE's ActiveXObject throws a 'Type Mismatch' exception when setting
+						// request header to a null-value.
+						//
+						// To keep consistent with other XHR implementations, cast the value
+						// to string and ignore `undefined`.
+						if ( headers[ i ] !== undefined ) {
+							xhr.setRequestHeader( i, headers[ i ] + "" );
+						}
+					}
+
+					// Do send the request
+					// This may raise an exception which is actually
+					// handled in jQuery.ajax (so no try/catch here)
+					xhr.send( ( options.hasContent && options.data ) || null );
+
+					// Listener
+					callback = function( _, isAbort ) {
+						var status, statusText, responses;
+
+						// Was never called and is aborted or complete
+						if ( callback && ( isAbort || xhr.readyState === 4 ) ) {
+							// Clean up
+							delete xhrCallbacks[ id ];
+							callback = undefined;
+							xhr.onreadystatechange = jQuery.noop;
+
+							// Abort manually if needed
+							if ( isAbort ) {
+								if ( xhr.readyState !== 4 ) {
+									xhr.abort();
+								}
+							} else {
+								responses = {};
+								status = xhr.status;
+
+								// Support: IE<10
+								// Accessing binary-data responseText throws an exception
+								// (#11426)
+								if ( typeof xhr.responseText === "string" ) {
+									responses.text = xhr.responseText;
+								}
+
+								// Firefox throws an exception when accessing
+								// statusText for faulty cross-domain requests
+								try {
+									statusText = xhr.statusText;
+								} catch( e ) {
+									// We normalize with Webkit giving an empty statusText
+									statusText = "";
+								}
+
+								// Filter status for non standard behaviors
+
+								// If the request is local and we have data: assume a success
+								// (success with no data won't get notified, that's the best we
+								// can do given current implementations)
+								if ( !status && options.isLocal && !options.crossDomain ) {
+									status = responses.text ? 200 : 404;
+								// IE - #1450: sometimes returns 1223 when it should be 204
+								} else if ( status === 1223 ) {
+									status = 204;
+								}
+							}
+						}
+
+						// Call complete if needed
+						if ( responses ) {
+							complete( status, statusText, responses, xhr.getAllResponseHeaders() );
+						}
+					};
+
+					if ( !options.async ) {
+						// if we're in sync mode we fire the callback
+						callback();
+					} else if ( xhr.readyState === 4 ) {
+						// (IE6 & IE7) if it's in cache and has been
+						// retrieved directly we need to fire the callback
+						setTimeout( callback );
+					} else {
+						// Add to the list of active xhr callbacks
+						xhr.onreadystatechange = xhrCallbacks[ id ] = callback;
+					}
+				},
+
+				abort: function() {
+					if ( callback ) {
+						callback( undefined, true );
+					}
+				}
+			};
+		}
+	});
+}
+
+// Functions to create xhrs
+function createStandardXHR() {
+	try {
+		return new window.XMLHttpRequest();
+	} catch( e ) {}
+}
+
+function createActiveXHR() {
+	try {
+		return new window.ActiveXObject( "Microsoft.XMLHTTP" );
+	} catch( e ) {}
+}
+
+
+
+
+// Install script dataType
+jQuery.ajaxSetup({
+	accepts: {
+		script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
+	},
+	contents: {
+		script: /(?:java|ecma)script/
+	},
+	converters: {
+		"text script": function( text ) {
+			jQuery.globalEval( text );
+			return text;
+		}
+	}
+});
+
+// Handle cache's special case and global
+jQuery.ajaxPrefilter( "script", function( s ) {
+	if ( s.cache === undefined ) {
+		s.cache = false;
+	}
+	if ( s.crossDomain ) {
+		s.type = "GET";
+		s.global = false;
+	}
+});
+
+// Bind script tag hack transport
+jQuery.ajaxTransport( "script", function(s) {
+
+	// This transport only deals with cross domain requests
+	if ( s.crossDomain ) {
+
+		var script,
+			head = document.head || jQuery("head")[0] || document.documentElement;
+
+		return {
+
+			send: function( _, callback ) {
+
+				script = document.createElement("script");
+
+				script.async = true;
+
+				if ( s.scriptCharset ) {
+					script.charset = s.scriptCharset;
+				}
+
+				script.src = s.url;
+
+				// Attach handlers for all browsers
+				script.onload = script.onreadystatechange = function( _, isAbort ) {
+
+					if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
+
+						// Handle memory leak in IE
+						script.onload = script.onreadystatechange = null;
+
+						// Remove the script
+						if ( script.parentNode ) {
+							script.parentNode.removeChild( script );
+						}
+
+						// Dereference the script
+						script = null;
+
+						// Callback if not abort
+						if ( !isAbort ) {
+							callback( 200, "success" );
+						}
+					}
+				};
+
+				// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending
+				// Use native DOM manipulation to avoid our domManip AJAX trickery
+				head.insertBefore( script, head.firstChild );
+			},
+
+			abort: function() {
+				if ( script ) {
+					script.onload( undefined, true );
+				}
+			}
+		};
+	}
+});
+
+
+
+
+var oldCallbacks = [],
+	rjsonp = /(=)\?(?=&|$)|\?\?/;
+
+// Default jsonp settings
+jQuery.ajaxSetup({
+	jsonp: "callback",
+	jsonpCallback: function() {
+		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
+		this[ callback ] = true;
+		return callback;
+	}
+});
+
+// Detect, normalize options and install callbacks for jsonp requests
+jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
+
+	var callbackName, overwritten, responseContainer,
+		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
+			"url" :
+			typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data"
+		);
+
+	// Handle iff the expected data type is "jsonp" or we have a parameter to set
+	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
+
+		// Get callback name, remembering preexisting value associated with it
+		callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
+			s.jsonpCallback() :
+			s.jsonpCallback;
+
+		// Insert callback into url or form data
+		if ( jsonProp ) {
+			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
+		} else if ( s.jsonp !== false ) {
+			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
+		}
+
+		// Use data converter to retrieve json after script execution
+		s.converters["script json"] = function() {
+			if ( !responseContainer ) {
+				jQuery.error( callbackName + " was not called" );
+			}
+			return responseContainer[ 0 ];
+		};
+
+		// force json dataType
+		s.dataTypes[ 0 ] = "json";
+
+		// Install callback
+		overwritten = window[ callbackName ];
+		window[ callbackName ] = function() {
+			responseContainer = arguments;
+		};
+
+		// Clean-up function (fires after converters)
+		jqXHR.always(function() {
+			// Restore preexisting value
+			window[ callbackName ] = overwritten;
+
+			// Save back as free
+			if ( s[ callbackName ] ) {
+				// make sure that re-using the options doesn't screw things around
+				s.jsonpCallback = originalSettings.jsonpCallback;
+
+				// save the callback name for future use
+				oldCallbacks.push( callbackName );
+			}
+
+			// Call if it was a function and we have a response
+			if ( responseContainer && jQuery.isFunction( overwritten ) ) {
+				overwritten( responseContainer[ 0 ] );
+			}
+
+			responseContainer = overwritten = undefined;
+		});
+
+		// Delegate to script
+		return "script";
+	}
+});
+
+
+
+
+// data: string of html
+// context (optional): If specified, the fragment will be created in this context, defaults to document
+// keepScripts (optional): If true, will include scripts passed in the html string
+jQuery.parseHTML = function( data, context, keepScripts ) {
+	if ( !data || typeof data !== "string" ) {
+		return null;
+	}
+	if ( typeof context === "boolean" ) {
+		keepScripts = context;
+		context = false;
+	}
+	context = context || document;
+
+	var parsed = rsingleTag.exec( data ),
+		scripts = !keepScripts && [];
+
+	// Single tag
+	if ( parsed ) {
+		return [ context.createElement( parsed[1] ) ];
+	}
+
+	parsed = jQuery.buildFragment( [ data ], context, scripts );
+
+	if ( scripts && scripts.length ) {
+		jQuery( scripts ).remove();
+	}
+
+	return jQuery.merge( [], parsed.childNodes );
+};
+
+
+// Keep a copy of the old load method
+var _load = jQuery.fn.load;
+
+/**
+ * Load a url into a page
+ */
+jQuery.fn.load = function( url, params, callback ) {
+	if ( typeof url !== "string" && _load ) {
+		return _load.apply( this, arguments );
+	}
+
+	var selector, response, type,
+		self = this,
+		off = url.indexOf(" ");
+
+	if ( off >= 0 ) {
+		selector = url.slice( off, url.length );
+		url = url.slice( 0, off );
+	}
+
+	// If it's a function
+	if ( jQuery.isFunction( params ) ) {
+
+		// We assume that it's the callback
+		callback = params;
+		params = undefined;
+
+	// Otherwise, build a param string
+	} else if ( params && typeof params === "object" ) {
+		type = "POST";
+	}
+
+	// If we have elements to modify, make the request
+	if ( self.length > 0 ) {
+		jQuery.ajax({
+			url: url,
+
+			// if "type" variable is undefined, then "GET" method will be used
+			type: type,
+			dataType: "html",
+			data: params
+		}).done(function( responseText ) {
+
+			// Save response for use in complete callback
+			response = arguments;
+
+			self.html( selector ?
+
+				// If a selector was specified, locate the right elements in a dummy div
+				// Exclude scripts to avoid IE 'Permission Denied' errors
+				jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) :
+
+				// Otherwise use the full result
+				responseText );
+
+		}).complete( callback && function( jqXHR, status ) {
+			self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
+		});
+	}
+
+	return this;
+};
+
+
+
+
+jQuery.expr.filters.animated = function( elem ) {
+	return jQuery.grep(jQuery.timers, function( fn ) {
+		return elem === fn.elem;
+	}).length;
+};
+
+
+
+
+
+var docElem = window.document.documentElement;
+
+/**
+ * Gets a window from an element
+ */
+function getWindow( elem ) {
+	return jQuery.isWindow( elem ) ?
+		elem :
+		elem.nodeType === 9 ?
+			elem.defaultView || elem.parentWindow :
+			false;
+}
+
+jQuery.offset = {
+	setOffset: function( elem, options, i ) {
+		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
+			position = jQuery.css( elem, "position" ),
+			curElem = jQuery( elem ),
+			props = {};
+
+		// set position first, in-case top/left are set even on static elem
+		if ( position === "static" ) {
+			elem.style.position = "relative";
+		}
+
+		curOffset = curElem.offset();
+		curCSSTop = jQuery.css( elem, "top" );
+		curCSSLeft = jQuery.css( elem, "left" );
+		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
+			jQuery.inArray("auto", [ curCSSTop, curCSSLeft ] ) > -1;
+
+		// need to be able to calculate position if either top or left is auto and position is either absolute or fixed
+		if ( calculatePosition ) {
+			curPosition = curElem.position();
+			curTop = curPosition.top;
+			curLeft = curPosition.left;
+		} else {
+			curTop = parseFloat( curCSSTop ) || 0;
+			curLeft = parseFloat( curCSSLeft ) || 0;
+		}
+
+		if ( jQuery.isFunction( options ) ) {
+			options = options.call( elem, i, curOffset );
+		}
+
+		if ( options.top != null ) {
+			props.top = ( options.top - curOffset.top ) + curTop;
+		}
+		if ( options.left != null ) {
+			props.left = ( options.left - curOffset.left ) + curLeft;
+		}
+
+		if ( "using" in options ) {
+			options.using.call( elem, props );
+		} else {
+			curElem.css( props );
+		}
+	}
+};
+
+jQuery.fn.extend({
+	offset: function( options ) {
+		if ( arguments.length ) {
+			return options === undefined ?
+				this :
+				this.each(function( i ) {
+					jQuery.offset.setOffset( this, options, i );
+				});
+		}
+
+		var docElem, win,
+			box = { top: 0, left: 0 },
+			elem = this[ 0 ],
+			doc = elem && elem.ownerDocument;
+
+		if ( !doc ) {
+			return;
+		}
+
+		docElem = doc.documentElement;
+
+		// Make sure it's not a disconnected DOM node
+		if ( !jQuery.contains( docElem, elem ) ) {
+			return box;
+		}
+
+		// If we don't have gBCR, just use 0,0 rather than error
+		// BlackBerry 5, iOS 3 (original iPhone)
+		if ( typeof elem.getBoundingClientRect !== strundefined ) {
+			box = elem.getBoundingClientRect();
+		}
+		win = getWindow( doc );
+		return {
+			top: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),
+			left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )
+		};
+	},
+
+	position: function() {
+		if ( !this[ 0 ] ) {
+			return;
+		}
+
+		var offsetParent, offset,
+			parentOffset = { top: 0, left: 0 },
+			elem = this[ 0 ];
+
+		// fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent
+		if ( jQuery.css( elem, "position" ) === "fixed" ) {
+			// we assume that getBoundingClientRect is available when computed position is fixed
+			offset = elem.getBoundingClientRect();
+		} else {
+			// Get *real* offsetParent
+			offsetParent = this.offsetParent();
+
+			// Get correct offsets
+			offset = this.offset();
+			if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) {
+				parentOffset = offsetParent.offset();
+			}
+
+			// Add offsetParent borders
+			parentOffset.top  += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true );
+			parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true );
+		}
+
+		// Subtract parent offsets and element margins
+		// note: when an element has margin: auto the offsetLeft and marginLeft
+		// are the same in Safari causing offset.left to incorrectly be 0
+		return {
+			top:  offset.top  - parentOffset.top - jQuery.css( elem, "marginTop", true ),
+			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true)
+		};
+	},
+
+	offsetParent: function() {
+		return this.map(function() {
+			var offsetParent = this.offsetParent || docElem;
+
+			while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) {
+				offsetParent = offsetParent.offsetParent;
+			}
+			return offsetParent || docElem;
+		});
+	}
+});
+
+// Create scrollLeft and scrollTop methods
+jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
+	var top = /Y/.test( prop );
+
+	jQuery.fn[ method ] = function( val ) {
+		return access( this, function( elem, method, val ) {
+			var win = getWindow( elem );
+
+			if ( val === undefined ) {
+				return win ? (prop in win) ? win[ prop ] :
+					win.document.documentElement[ method ] :
+					elem[ method ];
+			}
+
+			if ( win ) {
+				win.scrollTo(
+					!top ? val : jQuery( win ).scrollLeft(),
+					top ? val : jQuery( win ).scrollTop()
+				);
+
+			} else {
+				elem[ method ] = val;
+			}
+		}, method, val, arguments.length, null );
+	};
+});
+
+// Add the top/left cssHooks using jQuery.fn.position
+// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
+// getComputedStyle returns percent when specified for top/left/bottom/right
+// rather than make the css module depend on the offset module, we just check for it here
+jQuery.each( [ "top", "left" ], function( i, prop ) {
+	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
+		function( elem, computed ) {
+			if ( computed ) {
+				computed = curCSS( elem, prop );
+				// if curCSS returns percentage, fallback to offset
+				return rnumnonpx.test( computed ) ?
+					jQuery( elem ).position()[ prop ] + "px" :
+					computed;
+			}
+		}
+	);
+});
+
+
+// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
+jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
+	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
+		// margin is only for outerHeight, outerWidth
+		jQuery.fn[ funcName ] = function( margin, value ) {
+			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
+				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
+
+			return access( this, function( elem, type, value ) {
+				var doc;
+
+				if ( jQuery.isWindow( elem ) ) {
+					// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
+					// isn't a whole lot we can do. See pull request at this URL for discussion:
+					// https://github.com/jquery/jquery/pull/764
+					return elem.document.documentElement[ "client" + name ];
+				}
+
+				// Get document width or height
+				if ( elem.nodeType === 9 ) {
+					doc = elem.documentElement;
+
+					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
+					// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
+					return Math.max(
+						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
+						elem.body[ "offset" + name ], doc[ "offset" + name ],
+						doc[ "client" + name ]
+					);
+				}
+
+				return value === undefined ?
+					// Get width or height on the element, requesting but not forcing parseFloat
+					jQuery.css( elem, type, extra ) :
+
+					// Set width or height on the element
+					jQuery.style( elem, type, value, extra );
+			}, type, chainable ? margin : undefined, chainable, null );
+		};
+	});
+});
+
+
+// The number of elements contained in the matched element set
+jQuery.fn.size = function() {
+	return this.length;
+};
+
+jQuery.fn.andSelf = jQuery.fn.addBack;
+
+
+
+
+// Register as a named AMD module, since jQuery can be concatenated with other
+// files that may use define, but not via a proper concatenation script that
+// understands anonymous AMD modules. A named AMD is safest and most robust
+// way to register. Lowercase jquery is used because AMD module names are
+// derived from file names, and jQuery is normally delivered in a lowercase
+// file name. Do this after creating the global so that if an AMD module wants
+// to call noConflict to hide this version of jQuery, it will work.
+if ( typeof define === "function" && define.amd ) {
+	define( "jquery", [], function() {
+		return jQuery;
+	});
+}
+
+
+
+
+var
+	// Map over jQuery in case of overwrite
+	_jQuery = window.jQuery,
+
+	// Map over the $ in case of overwrite
+	_$ = window.$;
+
+jQuery.noConflict = function( deep ) {
+	if ( window.$ === jQuery ) {
+		window.$ = _$;
+	}
+
+	if ( deep && window.jQuery === jQuery ) {
+		window.jQuery = _jQuery;
+	}
+
+	return jQuery;
+};
+
+// Expose jQuery and $ identifiers, even in
+// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
+// and CommonJS for browser emulators (#13566)
+if ( typeof noGlobal === strundefined ) {
+	window.jQuery = window.$ = jQuery;
+}
+
+
+
+
+return jQuery;
+
+}));

File diff suppressed because it is too large
+ 4 - 0
src/components/LeafletMap/LPlayback/jquery-ui.min.js


+ 236 - 0
src/components/LeafletMap/LPlayback/playback_control.js

@@ -0,0 +1,236 @@
+// L.Playback = L.Playback || {};
+// import './jquery-1.11.0';
+// import './bootstrap-timepicker';
+import L from 'leaflet';
+import './example_2.css';
+// import Playback from './LeafletPlayback';
+L.Playback.Control = L.Control.extend({
+
+  _html: 
+'<div class="lp">' +
+'  <div class="transport">' +
+'    <div class="navbar">' +
+'      <div class="navbar-inner">' +
+'        <ul class="nav">' +
+'          <li class="ctrl">' +
+'            <a id="play-pause" href="#"><i id="play-pause-icon" class="fa fa-play fa-lg"></i></a>' +
+'          </li>' +
+'          <li class="ctrl dropup">' +
+'            <a id="clock-btn" class="clock" data-toggle="dropdown" href="#">' +
+'              <span id="cursor-date"></span><br/>' +
+'              <span id="cursor-time"></span>' +
+'            </a>' +
+'            <div class="dropdown-menu" role="menu" aria-labelledby="clock-btn">' +
+'              <label>Playback Cursor Time</label>' +
+'              <div class="input-append bootstrap-timepicker">' +
+'                <input id="timepicker" type="text" class="input-small span2">' +
+'                <span class="add-on"><i class="fa fa-clock-o"></i></span>' +
+'              </div>' +
+'              <div id="calendar"></div>' +
+'              <div class="input-append">' +
+'                <input id="date-input" type="text" class="input-small">' +
+'                <span class="add-on"><i class="fa fa-calendar"></i></span>' +
+'              </div>' +
+'            </div>' +
+'          </li>' +
+'        </ul>' +
+'        <ul class="nav pull-right">' +
+'          <li>' +
+'            <div id="time-slider"><a class="time-slider-handle" href="#"></a></div>' +
+'          </li>' +
+'          <li class="ctrl dropup">' +
+'            <a id="speed-btn" data-toggle="dropdown" href="#"><i class="fa fa-dashboard fa-lg"></i> <span id="speed-icon-val" class="speed">1</span>x</a>' +
+'            <div class="speed-menu dropdown-menu" role="menu" aria-labelledby="speed-btn">' +
+'              <label>Playback<br/>Speed</label>' +
+'              <input id="speed-input" class="span1 speed" type="text" value="1" />' +
+'              <div id="speed-slider"></div>' +
+'            </div>' +
+'          </li>' +
+'        </ul>' +
+'      </div>' +
+'    </div>' +
+'  </div>' +
+'</div>',
+
+  initialize: function(playback) {
+    this.playback = playback;
+    playback.addCallback(this._clockCallback);
+  },
+ 
+  onAdd: function(map) {
+    var html = this._html;
+    
+    if(!this.container){
+      this.container = document.createElement('div');
+      this.container.classList.add("leaflet-playback-control");
+      this.container.innerHTML = html;
+    }
+
+    var mapContainer = document.querySelector('#'+map._container.id);
+    mapContainer.append(this.container);
+    this._setup();
+
+    return L.DomUtil.create('div');
+  },
+
+  _setup: function() {
+    // var self = this;
+    // var playback = this.playback;
+    // $('#play-pause').click(function() {
+    //   if (playback.isPlaying() === false) {
+    //     playback.start();
+    //     $('#play-pause-icon').removeClass('fa-play');
+    //     $('#play-pause-icon').addClass('fa-pause');
+    //   } else {
+    //     playback.stop();
+    //     $('#play-pause-icon').removeClass('fa-pause');
+    //     $('#play-pause-icon').addClass('fa-play');
+    //   }
+    // });
+
+    // var startTime = playback.getStartTime();
+    // $('#cursor-date').html(L.Playback.Util.DateStr(startTime));
+    // $('#cursor-time').html(L.Playback.Util.TimeStr(startTime));
+
+    // $('#time-slider').slider({
+    //   min: playback.getStartTime(),
+    //   max: playback.getEndTime(),
+    //   step: playback.getTickLen(),
+    //   value: playback.getTime(),
+    //   slide: function( event, ui ) {
+    //     playback.setCursor(ui.value);
+    //     $('#cursor-time').val(ui.value.toString());
+    //     $('#cursor-time-txt').html(new Date(ui.value).toString());
+    //   }
+    // });
+
+    // $('#speed-slider').slider({
+    //   min: -9,
+    //   max: 9,
+    //   step: .1,
+    //   value: self._speedToSliderVal(this.playback.getSpeed()),
+    //   orientation: 'vertical',
+    //   slide: function( event, ui ) {
+    //     var speed = self._sliderValToSpeed(parseFloat(ui.value));
+    //     playback.setSpeed(speed);
+    //     $('.speed').html(speed).val(speed);
+    //   }
+    // });
+
+    // $('#speed-input').on('keyup', function(e) {
+    //   var speed = parseFloat($('#speed-input').val());
+    //   if (!speed) return;
+    //   playback.setSpeed(speed);
+    //   $('#speed-slider').slider('value', speedToSliderVal(speed));
+    //   $('#speed-icon-val').html(speed);
+    //   if (e.keyCode === 13) {
+    //     $('.speed-menu').dropdown('toggle');
+    //   }
+    // });
+
+    // $('#calendar').datepicker({
+    //   changeMonth: true,
+    //   changeYear: true,
+    //   altField: '#date-input',
+    //   altFormat: 'mm/dd/yy',
+    //   defaultDate: new Date(playback.getTime()),
+    //   onSelect: function(date) {
+    //     var date = new Date(date);
+    //     var time = $('#timepicker').data('timepicker');
+    //     var ts = self._combineDateAndTime(date, time);
+    //     playback.setCursor(ts);
+    //     $('#time-slider').slider('value', ts);
+    //   }
+    // }); 
+
+    // $('#date-input').on('keyup', function(e) {
+    //   $('#calendar').datepicker('setDate', $('#date-input').val());
+    // });
+
+    // $('.dropdown-menu').on('click', function(e) {
+    //   e.stopPropagation();
+    // });
+
+    // $('#timepicker').timepicker({
+    //   showSeconds: true
+    // });
+    
+    // $('#timepicker').timepicker('setTime', 
+    //     new Date(playback.getTime()).toTimeString());
+
+    // $('#timepicker').timepicker().on('changeTime.timepicker', function(e) {
+    //   var date = $('#calendar').datepicker('getDate');
+    //   var ts = self._combineDateAndTime(date, e.time);
+    //   playback.setCursor(ts);
+    //   $('#time-slider').slider('value', ts);
+    // });
+
+    // $('#load-tracks-btn').on('click', function(e) {
+    //   $('#load-tracks-modal').modal();
+    // });
+
+    // $('#load-tracks-save').on('click', function(e) {
+    //   var file = $('#load-tracks-file').get(0).files[0];
+    //   self._loadTracksFromFile(file);
+    // });
+
+  },
+
+  _clockCallback: function(ms) {
+    // $('#cursor-date').html(L.Playback.Util.DateStr(ms));
+    // $('#cursor-time').html(L.Playback.Util.TimeStr(ms));
+    // $('#time-slider').slider('value', ms);
+  },
+
+  _speedToSliderVal: function(speed) {
+    if (speed < 1) return -10+speed*10;
+    return speed - 1;    
+  },
+
+  _sliderValToSpeed: function(val) {
+    if (val < 0) return parseFloat((1+val/10).toFixed(2));
+    return val + 1;    
+  },
+
+  _combineDateAndTime: function(date, time) {
+    var yr = date.getFullYear();
+    var mo = date.getMonth();
+    var dy = date.getDate();
+    // the calendar uses hour and the timepicker uses hours...
+    var hr = time.hours || time.hour;
+    if (time.meridian === 'PM' && hr !== 12) hr += 12;
+    var min = time.minutes || time.minute;
+    var sec = time.seconds || time.second;
+    return new Date(yr, mo, dy, hr, min, sec).getTime();    
+  },
+
+  _loadTracksFromFile: function(file) {
+    // var self = this;
+    // var reader = new FileReader();
+    // reader.readAsText(file);
+    // reader.onload = function(e) {
+    //   var fileStr = e.target.result;
+
+    //   /**
+    //    * See if we can do GeoJSON...
+    //    */
+    //   try {
+    //     var tracks = JSON.parse(fileStr);
+    //   } catch (e) {
+    //     /**
+    //      * See if we can do GPX...
+    //      */
+    //     try {
+    //       var tracks = L.Playback.Util.ParseGPX(fileStr);
+    //     } catch (e) {
+    //       console.error('Unable to load tracks!');
+    //       return;
+    //     }
+    //   }
+
+    //   self.playback.addData(tracks);
+    //   $('#load-tracks-modal').modal('hide');
+    // };    
+  }
+
+});

+ 45 - 0
src/components/LeafletMap/Utils.js

@@ -0,0 +1,45 @@
+import L from 'leaflet';
+const mapbox_token = "pk.eyJ1IjoiaHVkYWxpbmciLCJhIjoiY2thN2xobWU1MDQ5ZTMwbWt3dHdzZzNiNSJ9.h8fncaoyA-IUhfWcjFZWiw";
+
+export function streetView(latlng){
+    window.open("https://www.google.com/maps/@?api=1&map_action=pano&viewpoint="+latlng.lat + "," +latlng.lng, '_blank');
+}
+
+export function fontAwesomeIcon(name, color, size = 'md'){
+    var _html = '<i class="' + name;
+    if(size == 'sm') _html += ' fa-1x"';
+    else if(size == 'lg') _html += ' fa-3x"';
+    else _html += ' fa-2x"';
+
+    _html += ' style="position: absolute; bottom: 0; left: -50%; color: ' + (color || 'black') + '"></i>';
+
+    return L.divIcon({
+        html: _html,
+        className: 'fontAwesomeIcon'
+    });
+}
+
+export function getDirections(data, callback){
+    if(!data) return;
+    if(!data.coordinates) return;
+
+    let profiles = ['driving-traffic', 'driving', 'walking', 'cycling'];
+    var profile = data.profile && profiles.includes(data.profile) ? data.profile : 'driving';
+    
+    var start = data.coordinates.start;
+    var end = data.coordinates.end;
+    if(!start || !end) return;
+
+
+    let url = 'https://api.mapbox.com/directions/v5/mapbox/' + profile + '/' + start.lat + ',' + start.lng + ';' + end.lat + ',' + end.lng;
+    url += '?overview=false&alternatives=true&steps=true&access_token=' + mapbox_token;
+
+    var HttpRequest = new XMLHttpRequest();
+    HttpRequest.onreadystatechange = function() { 
+        if (HttpRequest.readyState == 4 && HttpRequest.status == 200)
+            callback(HttpRequest.responseText);
+    }
+
+    HttpRequest.open( "GET", url, true );            
+    HttpRequest.send( null );
+}

+ 0 - 50
src/components/LeafletMap/contextMenus.js

@@ -1,50 +0,0 @@
-export var MapMenu = {
-    contextmenu: true,
-    contextmenuWidth: 140,
-    contextmenuItems: [{
-        text: 'Show coordinates',
-        // callback: showCoordinates
-    }, {
-        text: 'Center map here',
-        // callback: centerMap
-    }, '-', {
-        text: 'Zoom in',
-        // icon: 'images/zoom-in.png',
-        // callback: zoomIn
-    }, {
-        text: 'Zoom out',
-        // icon: 'images/zoom-out.png',
-        // callback: zoomOut
-    }]
-}
-
-export var MarkerMenu = function(name){
-
-    return {
-        contextmenu: true,
-        contextmenuInheritItems	: false,
-        contextmenuItems: [{
-            text: name,
-        }, '-' ,{
-            text: 'StreetView',
-            callback: showStreetView
-        },{
-            text: 'Center map here',
-            // callback: centerMap
-        }, '-', {
-            text: 'Zoom in',
-            // icon: 'images/zoom-in.png',
-            // callback: zoomIn
-        }, {
-            text: 'Zoom out',
-            // icon: 'images/zoom-out.png',
-            // callback: zoomOut
-        }]
-    }
-}
-
-function showStreetView(e){
-    var latlng = e.relatedTarget._latlng;
-    window.open("https://www.google.com/maps/@?api=1&map_action=pano&viewpoint="+latlng.lat + "," +latlng.lng, '_blank');
-    console.log(e);
-}

+ 35458 - 0
src/components/LeafletMap/demo-tracks.js

@@ -0,0 +1,35458 @@
+var tillicum = {
+  "type": "Feature",
+  "geometry": {
+    "type": "MultiPoint",
+    "coordinates": [
+      [
+        -123.77252789,
+        44.37857221
+      ],
+      [
+        -123.77317087,
+        44.37864694
+      ],
+      [
+        -123.77383407,
+        44.37875853
+      ],
+      [
+        -123.7744676,
+        44.37886305
+      ],
+      [
+        -123.77507677,
+        44.37893017
+      ],
+      [
+        -123.77566451,
+        44.37901047
+      ],
+      [
+        -123.77605842,
+        44.37892161
+      ],
+      [
+        -123.77660114,
+        44.37895724
+      ],
+      [
+        -123.77720403,
+        44.37897655
+      ],
+      [
+        -123.77781983,
+        44.37900344
+      ],
+      [
+        -123.77838906,
+        44.37898221
+      ],
+      [
+        -123.7789954,
+        44.37899854
+      ],
+      [
+        -123.77951988,
+        44.37891571
+      ],
+      [
+        -123.78004217,
+        44.37883105
+      ],
+      [
+        -123.78056503,
+        44.37875077
+      ],
+      [
+        -123.78105914,
+        44.37868172
+      ],
+      [
+        -123.78156765,
+        44.37852908
+      ],
+      [
+        -123.78211778,
+        44.37847079
+      ],
+      [
+        -123.78269313,
+        44.37840336
+      ],
+      [
+        -123.78319893,
+        44.37834025
+      ],
+      [
+        -123.79013846,
+        44.37675321
+      ],
+      [
+        -123.79067206,
+        44.37666117
+      ],
+      [
+        -123.79122235,
+        44.37667708
+      ],
+      [
+        -123.79156935,
+        44.37655781
+      ],
+      [
+        -123.79231801,
+        44.37652196
+      ],
+      [
+        -123.79301538,
+        44.37651473
+      ],
+      [
+        -123.79359988,
+        44.37656075
+      ],
+      [
+        -123.79428722,
+        44.37655133
+      ],
+      [
+        -123.79487322,
+        44.37661456
+      ],
+      [
+        -123.79548606,
+        44.37666101
+      ],
+      [
+        -123.79603541,
+        44.37670013
+      ],
+      [
+        -123.79660795,
+        44.37662235
+      ],
+      [
+        -123.79718365,
+        44.37650581
+      ],
+      [
+        -123.79780967,
+        44.37653439
+      ],
+      [
+        -123.79831292,
+        44.37685522
+      ],
+      [
+        -123.79883296,
+        44.37696685
+      ],
+      [
+        -123.7993581,
+        44.37709195
+      ],
+      [
+        -123.79988118,
+        44.37718879
+      ],
+      [
+        -123.80039793,
+        44.37728202
+      ],
+      [
+        -123.80089376,
+        44.37738925
+      ],
+      [
+        -123.80142092,
+        44.37766936
+      ],
+      [
+        -123.80179753,
+        44.37789379
+      ],
+      [
+        -123.80233272,
+        44.37795562
+      ],
+      [
+        -123.80277717,
+        44.37816047
+      ],
+      [
+        -123.80331138,
+        44.3783486
+      ],
+      [
+        -123.80381643,
+        44.37850233
+      ],
+      [
+        -123.80420021,
+        44.37865152
+      ],
+      [
+        -123.80474815,
+        44.37882091
+      ],
+      [
+        -123.80522525,
+        44.37906232
+      ],
+      [
+        -123.80570349,
+        44.37922411
+      ],
+      [
+        -123.80620571,
+        44.37941275
+      ],
+      [
+        -123.80673037,
+        44.37965326
+      ],
+      [
+        -123.80735339,
+        44.37979863
+      ],
+      [
+        -123.80784469,
+        44.37999957
+      ],
+      [
+        -123.80837458,
+        44.37998017
+      ],
+      [
+        -123.80899232,
+        44.380014
+      ],
+      [
+        -123.80952307,
+        44.37993165
+      ],
+      [
+        -123.80987634,
+        44.37978153
+      ],
+      [
+        -123.81017161,
+        44.37953295
+      ],
+      [
+        -123.81074873,
+        44.37925199
+      ],
+      [
+        -123.81119243,
+        44.37897587
+      ],
+      [
+        -123.81154793,
+        44.37873989
+      ],
+      [
+        -123.81198778,
+        44.37842102
+      ],
+      [
+        -123.81235373,
+        44.37816192
+      ],
+      [
+        -123.81275348,
+        44.37788448
+      ],
+      [
+        -123.81310351,
+        44.37766604
+      ],
+      [
+        -123.81337983,
+        44.37730145
+      ],
+      [
+        -123.81357531,
+        44.37692989
+      ],
+      [
+        -123.81361254,
+        44.37647844
+      ],
+      [
+        -123.81353376,
+        44.37594116
+      ],
+      [
+        -123.813198,
+        44.37561605
+      ],
+      [
+        -123.81284754,
+        44.37547955
+      ],
+      [
+        -123.81254975,
+        44.37524719
+      ],
+      [
+        -123.81227721,
+        44.37500803
+      ],
+      [
+        -123.81207289,
+        44.3746695
+      ],
+      [
+        -123.81171276,
+        44.37434638
+      ],
+      [
+        -123.81097859,
+        44.37413431
+      ],
+      [
+        -123.81041401,
+        44.37394429
+      ],
+      [
+        -123.80976458,
+        44.37373029
+      ],
+      [
+        -123.80923389,
+        44.37352906
+      ],
+      [
+        -123.80863022,
+        44.37335692
+      ],
+      [
+        -123.80827452,
+        44.37322894
+      ],
+      [
+        -123.8079216,
+        44.37304699
+      ],
+      [
+        -123.80755687,
+        44.37290854
+      ],
+      [
+        -123.80710749,
+        44.37269837
+      ],
+      [
+        -123.80659847,
+        44.37245911
+      ],
+      [
+        -123.80613857,
+        44.37221401
+      ],
+      [
+        -123.80573546,
+        44.37193255
+      ],
+      [
+        -123.80540784,
+        44.37151577
+      ],
+      [
+        -123.80511308,
+        44.37120469
+      ],
+      [
+        -123.80500888,
+        44.37078896
+      ],
+      [
+        -123.80529524,
+        44.37037566
+      ],
+      [
+        -123.80558562,
+        44.37019806
+      ],
+      [
+        -123.80585412,
+        44.36996992
+      ],
+      [
+        -123.80610692,
+        44.36970942
+      ],
+      [
+        -123.80661414,
+        44.36946727
+      ],
+      [
+        -123.80708477,
+        44.36926607
+      ],
+      [
+        -123.80747679,
+        44.36907467
+      ],
+      [
+        -123.80784949,
+        44.368733
+      ],
+      [
+        -123.80826348,
+        44.36838459
+      ],
+      [
+        -123.80868817,
+        44.36802111
+      ],
+      [
+        -123.80912729,
+        44.36773598
+      ],
+      [
+        -123.80960812,
+        44.36738742
+      ],
+      [
+        -123.81008551,
+        44.36707347
+      ],
+      [
+        -123.81063481,
+        44.36684946
+      ],
+      [
+        -123.81115119,
+        44.36661789
+      ],
+      [
+        -123.811705,
+        44.36640043
+      ],
+      [
+        -123.81227943,
+        44.36624681
+      ],
+      [
+        -123.81272103,
+        44.36622733
+      ],
+      [
+        -123.81348991,
+        44.36635102
+      ],
+      [
+        -123.81411031,
+        44.36622347
+      ],
+      [
+        -123.81475065,
+        44.3661859
+      ],
+      [
+        -123.81536292,
+        44.36625908
+      ],
+      [
+        -123.8160232,
+        44.36634012
+      ],
+      [
+        -123.81661561,
+        44.36646415
+      ],
+      [
+        -123.81719049,
+        44.36652826
+      ],
+      [
+        -123.81784426,
+        44.36665079
+      ],
+      [
+        -123.81846565,
+        44.36680154
+      ],
+      [
+        -123.81905878,
+        44.36690594
+      ],
+      [
+        -123.81970058,
+        44.36704457
+      ],
+      [
+        -123.82030833,
+        44.36728783
+      ],
+      [
+        -123.82091327,
+        44.36747762
+      ],
+      [
+        -123.82156675,
+        44.36747158
+      ],
+      [
+        -123.82213205,
+        44.36750236
+      ],
+      [
+        -123.8227688,
+        44.36753587
+      ],
+      [
+        -123.82339934,
+        44.36749609
+      ],
+      [
+        -123.82400308,
+        44.36747441
+      ],
+      [
+        -123.82437384,
+        44.36736178
+      ],
+      [
+        -123.82498006,
+        44.36711433
+      ],
+      [
+        -123.82554355,
+        44.36692204
+      ],
+      [
+        -123.82599663,
+        44.36659999
+      ],
+      [
+        -123.82653738,
+        44.36631833
+      ],
+      [
+        -123.82687629,
+        44.36595919
+      ],
+      [
+        -123.82730895,
+        44.36559104
+      ],
+      [
+        -123.82752535,
+        44.36508675
+      ],
+      [
+        -123.82778797,
+        44.36466732
+      ],
+      [
+        -123.8280572,
+        44.36424929
+      ],
+      [
+        -123.82826364,
+        44.36381812
+      ],
+      [
+        -123.8284935,
+        44.36337296
+      ],
+      [
+        -123.82872595,
+        44.36288338
+      ],
+      [
+        -123.82894503,
+        44.36243078
+      ],
+      [
+        -123.82914801,
+        44.36196883
+      ],
+      [
+        -123.82942984,
+        44.36158184
+      ],
+      [
+        -123.82967989,
+        44.36114209
+      ],
+      [
+        -123.82984482,
+        44.36067615
+      ],
+      [
+        -123.83000072,
+        44.36021653
+      ],
+      [
+        -123.8302136,
+        44.35975596
+      ],
+      [
+        -123.83043508,
+        44.35927715
+      ],
+      [
+        -123.83043676,
+        44.35897974
+      ],
+      [
+        -123.83066164,
+        44.3585452
+      ],
+      [
+        -123.83087389,
+        44.35808419
+      ],
+      [
+        -123.83123077,
+        44.35771716
+      ],
+      [
+        -123.83149219,
+        44.35730191
+      ],
+      [
+        -123.8317935,
+        44.35689183
+      ],
+      [
+        -123.83221309,
+        44.35652466
+      ],
+      [
+        -123.83264602,
+        44.35620468
+      ],
+      [
+        -123.83295909,
+        44.35604074
+      ],
+      [
+        -123.83322863,
+        44.35582838
+      ],
+      [
+        -123.83363274,
+        44.35546781
+      ],
+      [
+        -123.8339284,
+        44.35504505
+      ],
+      [
+        -123.83421101,
+        44.35462757
+      ],
+      [
+        -123.83441642,
+        44.35420053
+      ],
+      [
+        -123.83459364,
+        44.35374425
+      ],
+      [
+        -123.83484153,
+        44.35328064
+      ],
+      [
+        -123.83503992,
+        44.35279836
+      ],
+      [
+        -123.83532486,
+        44.35239401
+      ],
+      [
+        -123.83558141,
+        44.35190388
+      ],
+      [
+        -123.83584591,
+        44.35144822
+      ],
+      [
+        -123.8362086,
+        44.35106632
+      ],
+      [
+        -123.83646984,
+        44.35061601
+      ],
+      [
+        -123.83682396,
+        44.35027306
+      ],
+      [
+        -123.83741823,
+        44.35002993
+      ],
+      [
+        -123.83797977,
+        44.34977041
+      ],
+      [
+        -123.8384272,
+        44.34973236
+      ],
+      [
+        -123.83891831,
+        44.34973886
+      ],
+      [
+        -123.8393342,
+        44.34980157
+      ],
+      [
+        -123.83983914,
+        44.34970795
+      ],
+      [
+        -123.8402702,
+        44.34971164
+      ],
+      [
+        -123.84067923,
+        44.34973058
+      ],
+      [
+        -123.8410633,
+        44.34970312
+      ],
+      [
+        -123.84147372,
+        44.34971455
+      ],
+      [
+        -123.84204825,
+        44.3498711
+      ],
+      [
+        -123.84264285,
+        44.34994949
+      ],
+      [
+        -123.84321946,
+        44.35001037
+      ],
+      [
+        -123.84377642,
+        44.35003907
+      ],
+      [
+        -123.84432658,
+        44.35025777
+      ],
+      [
+        -123.84203507,
+        44.35487086
+      ],
+      [
+        -123.84165892,
+        44.35522761
+      ],
+      [
+        -123.84141926,
+        44.35562524
+      ],
+      [
+        -123.8411565,
+        44.35599439
+      ],
+      [
+        -123.8410185,
+        44.3562787
+      ],
+      [
+        -123.84055746,
+        44.35664891
+      ],
+      [
+        -123.8402963,
+        44.35698133
+      ],
+      [
+        -123.83992088,
+        44.35727933
+      ],
+      [
+        -123.83973137,
+        44.35754806
+      ],
+      [
+        -123.83932875,
+        44.35773088
+      ],
+      [
+        -123.83914337,
+        44.3580173
+      ],
+      [
+        -123.83895031,
+        44.35825633
+      ],
+      [
+        -123.83850815,
+        44.35862331
+      ],
+      [
+        -123.83822746,
+        44.35907347
+      ],
+      [
+        -123.83796045,
+        44.35949625
+      ],
+      [
+        -123.83768553,
+        44.35990376
+      ],
+      [
+        -123.83745996,
+        44.3604108
+      ],
+      [
+        -123.83714948,
+        44.36078632
+      ],
+      [
+        -123.83691018,
+        44.36125106
+      ],
+      [
+        -123.83671357,
+        44.36176473
+      ],
+      [
+        -123.83643361,
+        44.36221479
+      ],
+      [
+        -123.83615206,
+        44.36264813
+      ],
+      [
+        -123.83578463,
+        44.36307576
+      ],
+      [
+        -123.83542661,
+        44.36349149
+      ],
+      [
+        -123.83506758,
+        44.36384017
+      ],
+      [
+        -123.83472312,
+        44.36423027
+      ],
+      [
+        -123.83433282,
+        44.36461474
+      ],
+      [
+        -123.83404859,
+        44.36509528
+      ],
+      [
+        -123.83375641,
+        44.36552674
+      ],
+      [
+        -123.83348665,
+        44.36592645
+      ],
+      [
+        -123.83352719,
+        44.36641625
+      ],
+      [
+        -123.83354167,
+        44.36687226
+      ],
+      [
+        -123.83352598,
+        44.36733983
+      ],
+      [
+        -123.83357856,
+        44.36781268
+      ],
+      [
+        -123.83358707,
+        44.36828114
+      ],
+      [
+        -123.83361502,
+        44.36877025
+      ],
+      [
+        -123.83363983,
+        44.36924809
+      ],
+      [
+        -123.83386927,
+        44.36974131
+      ],
+      [
+        -123.83398366,
+        44.37020602
+      ],
+      [
+        -123.83411017,
+        44.37066634
+      ],
+      [
+        -123.83422771,
+        44.37115498
+      ],
+      [
+        -123.83440837,
+        44.37157793
+      ],
+      [
+        -123.83451758,
+        44.37203463
+      ],
+      [
+        -123.83466984,
+        44.37246002
+      ],
+      [
+        -123.83476675,
+        44.3729088
+      ],
+      [
+        -123.834789,
+        44.37317881
+      ],
+      [
+        -123.8346991,
+        44.37369173
+      ],
+      [
+        -123.83454395,
+        44.37417495
+      ],
+      [
+        -123.83441269,
+        44.37465505
+      ],
+      [
+        -123.83417986,
+        44.37507302
+      ],
+      [
+        -123.83364152,
+        44.37526
+      ],
+      [
+        -123.83321353,
+        44.37557739
+      ],
+      [
+        -123.83285218,
+        44.37595532
+      ],
+      [
+        -123.83248264,
+        44.37637684
+      ],
+      [
+        -123.83225679,
+        44.37665008
+      ],
+      [
+        -123.83191251,
+        44.37707752
+      ],
+      [
+        -123.83159357,
+        44.37751562
+      ],
+      [
+        -123.83134601,
+        44.37796816
+      ],
+      [
+        -123.83118921,
+        44.37842778
+      ],
+      [
+        -123.83090169,
+        44.37889258
+      ],
+      [
+        -123.83070078,
+        44.37934341
+      ],
+      [
+        -123.83056763,
+        44.37979938
+      ],
+      [
+        -123.83053986,
+        44.38025897
+      ],
+      [
+        -123.83063844,
+        44.38064949
+      ],
+      [
+        -123.8307725,
+        44.38109651
+      ],
+      [
+        -123.83083629,
+        44.38148235
+      ],
+      [
+        -123.83082114,
+        44.3819181
+      ],
+      [
+        -123.83065815,
+        44.38231241
+      ],
+      [
+        -123.83050646,
+        44.38273143
+      ],
+      [
+        -123.83030168,
+        44.38315663
+      ],
+      [
+        -123.82998372,
+        44.38356024
+      ],
+      [
+        -123.82974685,
+        44.38396369
+      ],
+      [
+        -123.82954343,
+        44.38431339
+      ],
+      [
+        -123.82937698,
+        44.38464023
+      ],
+      [
+        -123.82929339,
+        44.38499412
+      ],
+      [
+        -123.82929866,
+        44.38537351
+      ],
+      [
+        -123.82929649,
+        44.38572262
+      ],
+      [
+        -123.82939712,
+        44.3861449
+      ],
+      [
+        -123.82974721,
+        44.38640976
+      ],
+      [
+        -123.83006661,
+        44.38665424
+      ],
+      [
+        -123.83047099,
+        44.38693426
+      ],
+      [
+        -123.83085114,
+        44.38712547
+      ],
+      [
+        -123.83131994,
+        44.38731023
+      ],
+      [
+        -123.83186324,
+        44.38761938
+      ],
+      [
+        -123.83217948,
+        44.38780359
+      ],
+      [
+        -123.83273301,
+        44.3880341
+      ],
+      [
+        -123.83332735,
+        44.38824105
+      ],
+      [
+        -123.8340571,
+        44.38841128
+      ],
+      [
+        -123.83465999,
+        44.38859294
+      ],
+      [
+        -123.83528877,
+        44.38859602
+      ],
+      [
+        -123.83569405,
+        44.38844339
+      ],
+      [
+        -123.83638628,
+        44.3884207
+      ],
+      [
+        -123.8370251,
+        44.38844967
+      ],
+      [
+        -123.83739577,
+        44.38837795
+      ],
+      [
+        -123.83776722,
+        44.38831733
+      ],
+      [
+        -123.83837884,
+        44.38836701
+      ],
+      [
+        -123.83900529,
+        44.38838659
+      ],
+      [
+        -123.83961918,
+        44.38831371
+      ],
+      [
+        -123.84021405,
+        44.38829042
+      ],
+      [
+        -123.84086954,
+        44.38828232
+      ],
+      [
+        -123.84151231,
+        44.3883489
+      ],
+      [
+        -123.84204361,
+        44.38864686
+      ],
+      [
+        -123.84250872,
+        44.38883971
+      ],
+      [
+        -123.84286235,
+        44.38913828
+      ],
+      [
+        -123.84327839,
+        44.38943857
+      ],
+      [
+        -123.84351162,
+        44.38965811
+      ],
+      [
+        -123.8437019,
+        44.38990892
+      ],
+      [
+        -123.84414825,
+        44.39024774
+      ],
+      [
+        -123.84457698,
+        44.39057986
+      ],
+      [
+        -123.8450298,
+        44.39091025
+      ],
+      [
+        -123.84540377,
+        44.39127727
+      ],
+      [
+        -123.84576513,
+        44.39169169
+      ],
+      [
+        -123.84620505,
+        44.3920822
+      ],
+      [
+        -123.84662036,
+        44.39243773
+      ],
+      [
+        -123.84701835,
+        44.39281331
+      ],
+      [
+        -123.84736426,
+        44.39303992
+      ],
+      [
+        -123.84774171,
+        44.39336675
+      ],
+      [
+        -123.84750211,
+        44.39375524
+      ],
+      [
+        -123.84730976,
+        44.39415078
+      ],
+      [
+        -123.84716074,
+        44.39450914
+      ],
+      [
+        -123.83325795,
+        44.39231346
+      ],
+      [
+        -123.83287897,
+        44.39233478
+      ],
+      [
+        -123.83242812,
+        44.39225423
+      ],
+      [
+        -123.8320242,
+        44.39214754
+      ],
+      [
+        -123.831443,
+        44.39216949
+      ],
+      [
+        -123.83081285,
+        44.39222948
+      ],
+      [
+        -123.83042339,
+        44.39237674
+      ],
+      [
+        -123.8298725,
+        44.39246101
+      ],
+      [
+        -123.82948222,
+        44.39289454
+      ],
+      [
+        -123.82948876,
+        44.39341478
+      ],
+      [
+        -123.82929042,
+        44.39364585
+      ],
+      [
+        -123.82889206,
+        44.39403331
+      ],
+      [
+        -123.82849602,
+        44.39438788
+      ],
+      [
+        -123.82814269,
+        44.39466477
+      ],
+      [
+        -123.82774371,
+        44.39497413
+      ],
+      [
+        -123.82797044,
+        44.39558031
+      ],
+      [
+        -123.82824962,
+        44.39610349
+      ],
+      [
+        -123.82823647,
+        44.39653022
+      ],
+      [
+        -123.82841452,
+        44.3970331
+      ],
+      [
+        -123.82846666,
+        44.39744215
+      ],
+      [
+        -123.82881905,
+        44.39761326
+      ],
+      [
+        -123.82910502,
+        44.39782317
+      ],
+      [
+        -123.82933156,
+        44.39827824
+      ],
+      [
+        -123.82958303,
+        44.39860292
+      ],
+      [
+        -123.82970897,
+        44.39887799
+      ],
+      [
+        -123.82998729,
+        44.39910031
+      ],
+      [
+        -123.83048205,
+        44.39929464
+      ],
+      [
+        -123.83095576,
+        44.3995244
+      ],
+      [
+        -123.83147986,
+        44.39985473
+      ],
+      [
+        -123.83202919,
+        44.40011745
+      ],
+      [
+        -123.83272727,
+        44.40023748
+      ],
+      [
+        -123.83340891,
+        44.40029896
+      ],
+      [
+        -123.8340274,
+        44.40029109
+      ],
+      [
+        -123.83472264,
+        44.40026772
+      ],
+      [
+        -123.83508238,
+        44.40017841
+      ],
+      [
+        -123.83575472,
+        44.40010627
+      ],
+      [
+        -123.83643769,
+        44.40001533
+      ],
+      [
+        -123.8370988,
+        44.39997518
+      ],
+      [
+        -123.83747722,
+        44.39992662
+      ],
+      [
+        -123.83818459,
+        44.39988528
+      ],
+      [
+        -123.83883679,
+        44.3997823
+      ],
+      [
+        -123.8394548,
+        44.39967891
+      ],
+      [
+        -123.84008445,
+        44.39954732
+      ],
+      [
+        -123.84070208,
+        44.39939815
+      ],
+      [
+        -123.84131372,
+        44.39917183
+      ],
+      [
+        -123.84187299,
+        44.39896379
+      ],
+      [
+        -123.84244572,
+        44.39868752
+      ],
+      [
+        -123.84296973,
+        44.3984023
+      ],
+      [
+        -123.84350996,
+        44.3981352
+      ],
+      [
+        -123.84392876,
+        44.39799545
+      ],
+      [
+        -123.8447125,
+        44.39786568
+      ],
+      [
+        -123.84510842,
+        44.39787915
+      ],
+      [
+        -123.84579844,
+        44.39787518
+      ],
+      [
+        -123.84650467,
+        44.39794333
+      ],
+      [
+        -123.84717138,
+        44.39808825
+      ],
+      [
+        -123.84788597,
+        44.39825368
+      ],
+      [
+        -123.84843146,
+        44.3984778
+      ],
+      [
+        -123.84908022,
+        44.39868748
+      ],
+      [
+        -123.84973524,
+        44.39883781
+      ],
+      [
+        -123.85018943,
+        44.39913399
+      ],
+      [
+        -123.85072511,
+        44.39937269
+      ],
+      [
+        -123.85126588,
+        44.39963369
+      ],
+      [
+        -123.85183667,
+        44.39984811
+      ],
+      [
+        -123.85253322,
+        44.39995526
+      ],
+      [
+        -123.85315519,
+        44.40007652
+      ],
+      [
+        -123.85383831,
+        44.40018159
+      ],
+      [
+        -123.85422651,
+        44.4002215
+      ],
+      [
+        -123.85489009,
+        44.40030811
+      ],
+      [
+        -123.85557778,
+        44.40030578
+      ],
+      [
+        -123.85617964,
+        44.40025503
+      ],
+      [
+        -123.85685093,
+        44.40020889
+      ],
+      [
+        -123.85749307,
+        44.40014005
+      ],
+      [
+        -123.85815502,
+        44.39999251
+      ],
+      [
+        -123.85878967,
+        44.39987297
+      ],
+      [
+        -123.85940186,
+        44.39975461
+      ],
+      [
+        -123.86014717,
+        44.39970844
+      ],
+      [
+        -123.86067393,
+        44.39969683
+      ],
+      [
+        -123.86126228,
+        44.39957493
+      ],
+      [
+        -123.86187423,
+        44.39946623
+      ],
+      [
+        -123.86252734,
+        44.39941413
+      ],
+      [
+        -123.86316943,
+        44.39930916
+      ],
+      [
+        -123.86376752,
+        44.39917205
+      ],
+      [
+        -123.86436596,
+        44.39901877
+      ],
+      [
+        -123.86498829,
+        44.39890866
+      ],
+      [
+        -123.86564018,
+        44.39889606
+      ],
+      [
+        -123.86633351,
+        44.39891627
+      ],
+      [
+        -123.86693144,
+        44.39910351
+      ],
+      [
+        -123.86755934,
+        44.39920612
+      ],
+      [
+        -123.86821285,
+        44.39938466
+      ],
+      [
+        -123.86888417,
+        44.39956356
+      ],
+      [
+        -123.86935838,
+        44.3997763
+      ],
+      [
+        -123.86982656,
+        44.40003146
+      ],
+      [
+        -123.87021351,
+        44.40040625
+      ],
+      [
+        -123.87070082,
+        44.40066815
+      ],
+      [
+        -123.8712128,
+        44.40097838
+      ],
+      [
+        -123.87173204,
+        44.40127655
+      ],
+      [
+        -123.8722167,
+        44.40153571
+      ],
+      [
+        -123.87257382,
+        44.40162574
+      ],
+      [
+        -123.87310406,
+        44.40189762
+      ],
+      [
+        -123.87359914,
+        44.40206826
+      ],
+      [
+        -123.87412929,
+        44.40230976
+      ],
+      [
+        -123.87488722,
+        44.40247685
+      ],
+      [
+        -123.87547359,
+        44.40268243
+      ],
+      [
+        -123.87591649,
+        44.40303744
+      ],
+      [
+        -123.87639193,
+        44.40329141
+      ],
+      [
+        -123.87685593,
+        44.403575
+      ],
+      [
+        -123.8773683,
+        44.40388809
+      ],
+      [
+        -123.87787402,
+        44.40421161
+      ],
+      [
+        -123.87830627,
+        44.40450556
+      ],
+      [
+        -123.87875463,
+        44.40481816
+      ],
+      [
+        -123.87921462,
+        44.4051345
+      ],
+      [
+        -123.87965761,
+        44.40550009
+      ],
+      [
+        -123.88006274,
+        44.40581375
+      ],
+      [
+        -123.880311,
+        44.40601844
+      ],
+      [
+        -123.88050868,
+        44.40625212
+      ],
+      [
+        -123.88092865,
+        44.40670517
+      ],
+      [
+        -123.88140728,
+        44.40695894
+      ],
+      [
+        -123.88196001,
+        44.40719543
+      ],
+      [
+        -123.88246063,
+        44.40746501
+      ],
+      [
+        -123.88290241,
+        44.40761001
+      ],
+      [
+        -123.88326407,
+        44.40770471
+      ],
+      [
+        -123.88369986,
+        44.4077935
+      ],
+      [
+        -123.88410483,
+        44.40781332
+      ],
+      [
+        -123.88477941,
+        44.40788478
+      ],
+      [
+        -123.88546521,
+        44.40792777
+      ],
+      [
+        -123.88613991,
+        44.40800486
+      ],
+      [
+        -123.88679371,
+        44.40802335
+      ],
+      [
+        -123.88743945,
+        44.40803797
+      ],
+      [
+        -123.88778308,
+        44.40792528
+      ],
+      [
+        -123.88816662,
+        44.40788622
+      ],
+      [
+        -123.88878509,
+        44.4077292
+      ],
+      [
+        -123.88939277,
+        44.40746818
+      ],
+      [
+        -123.88992761,
+        44.40728381
+      ],
+      [
+        -123.89042965,
+        44.40706805
+      ],
+      [
+        -123.89091789,
+        44.40679144
+      ],
+      [
+        -123.89146513,
+        44.40661118
+      ],
+      [
+        -123.89204869,
+        44.40645954
+      ],
+      [
+        -123.8924492,
+        44.40642341
+      ],
+      [
+        -123.89306481,
+        44.40632346
+      ],
+      [
+        -123.89363697,
+        44.4061784
+      ],
+      [
+        -123.89424605,
+        44.40607274
+      ],
+      [
+        -123.89472907,
+        44.40585515
+      ],
+      [
+        -123.89529258,
+        44.4055676
+      ],
+      [
+        -123.89577479,
+        44.40534867
+      ],
+      [
+        -123.89623146,
+        44.40510029
+      ],
+      [
+        -123.89669813,
+        44.4049264
+      ],
+      [
+        -123.89703676,
+        44.40479792
+      ],
+      [
+        -123.89759604,
+        44.40489638
+      ],
+      [
+        -123.89796954,
+        44.40480068
+      ],
+      [
+        -123.89776908,
+        44.40510428
+      ],
+      [
+        -123.89763026,
+        44.40537959
+      ],
+      [
+        -123.89775748,
+        44.40570888
+      ],
+      [
+        -123.89798825,
+        44.40635395
+      ],
+      [
+        -123.89807914,
+        44.40680006
+      ],
+      [
+        -123.8981605,
+        44.40723602
+      ],
+      [
+        -123.89851731,
+        44.40788018
+      ],
+      [
+        -123.89870319,
+        44.40827993
+      ],
+      [
+        -123.89885188,
+        44.40854481
+      ],
+      [
+        -123.89912201,
+        44.4090699
+      ],
+      [
+        -123.89931266,
+        44.40932872
+      ],
+      [
+        -123.89955343,
+        44.40989939
+      ],
+      [
+        -123.89964612,
+        44.41020136
+      ],
+      [
+        -123.89998865,
+        44.41067162
+      ],
+      [
+        -123.90009915,
+        44.41095871
+      ],
+      [
+        -123.90046547,
+        44.41136472
+      ],
+      [
+        -123.90081575,
+        44.41179523
+      ],
+      [
+        -123.90126973,
+        44.41207393
+      ],
+      [
+        -123.90161867,
+        44.41223466
+      ],
+      [
+        -123.90219707,
+        44.41242756
+      ],
+      [
+        -123.90279124,
+        44.41262141
+      ],
+      [
+        -123.90336856,
+        44.41283241
+      ],
+      [
+        -123.90394765,
+        44.41301175
+      ],
+      [
+        -123.90452798,
+        44.4132305
+      ],
+      [
+        -123.90508748,
+        44.41340748
+      ],
+      [
+        -123.90568275,
+        44.41360401
+      ],
+      [
+        -123.90619128,
+        44.41366257
+      ],
+      [
+        -123.90681799,
+        44.41364594
+      ],
+      [
+        -123.90740832,
+        44.41355112
+      ],
+      [
+        -123.90794155,
+        44.41343054
+      ],
+      [
+        -123.9084303,
+        44.41325435
+      ],
+      [
+        -123.90894564,
+        44.41307826
+      ],
+      [
+        -123.90948204,
+        44.41291141
+      ],
+      [
+        -123.90995774,
+        44.41274009
+      ],
+      [
+        -123.91036825,
+        44.41253823
+      ],
+      [
+        -123.91080595,
+        44.41227071
+      ],
+      [
+        -123.91134941,
+        44.41206608
+      ],
+      [
+        -123.91180342,
+        44.41179606
+      ],
+      [
+        -123.91209543,
+        44.41147776
+      ],
+      [
+        -123.91238624,
+        44.41111112
+      ],
+      [
+        -123.91263172,
+        44.41080515
+      ],
+      [
+        -123.91286336,
+        44.41047062
+      ],
+      [
+        -123.91307648,
+        44.41010501
+      ],
+      [
+        -123.91325976,
+        44.40971712
+      ],
+      [
+        -123.91339298,
+        44.4093358
+      ],
+      [
+        -123.91354334,
+        44.40889929
+      ],
+      [
+        -123.91359042,
+        44.40842761
+      ],
+      [
+        -123.9136534,
+        44.40793958
+      ],
+      [
+        -123.91371997,
+        44.40748378
+      ],
+      [
+        -123.91383764,
+        44.40705641
+      ],
+      [
+        -123.91391104,
+        44.40664034
+      ],
+      [
+        -123.91409615,
+        44.40628875
+      ],
+      [
+        -123.91423042,
+        44.40591397
+      ],
+      [
+        -123.91436732,
+        44.40559092
+      ],
+      [
+        -123.91472252,
+        44.40528978
+      ],
+      [
+        -123.91508271,
+        44.40495322
+      ],
+      [
+        -123.91541287,
+        44.40453829
+      ],
+      [
+        -123.91587899,
+        44.40423021
+      ],
+      [
+        -123.91632563,
+        44.40388354
+      ],
+      [
+        -123.91680777,
+        44.40357231
+      ],
+      [
+        -123.91735984,
+        44.40326839
+      ],
+      [
+        -123.91772488,
+        44.40295815
+      ],
+      [
+        -123.91819859,
+        44.4026917
+      ],
+      [
+        -123.91869704,
+        44.40248751
+      ],
+      [
+        -123.91955809,
+        44.40241698
+      ],
+      [
+        -123.92028749,
+        44.40232218
+      ],
+      [
+        -123.92093335,
+        44.4022829
+      ],
+      [
+        -123.92157021,
+        44.40219044
+      ],
+      [
+        -123.92214399,
+        44.40207362
+      ],
+      [
+        -123.92273745,
+        44.40191332
+      ],
+      [
+        -123.92329758,
+        44.40173306
+      ],
+      [
+        -123.92374441,
+        44.40145561
+      ],
+      [
+        -123.92426761,
+        44.4011692
+      ],
+      [
+        -123.92461559,
+        44.40083517
+      ],
+      [
+        -123.92494488,
+        44.40048791
+      ],
+      [
+        -123.92525406,
+        44.40014004
+      ],
+      [
+        -123.92551382,
+        44.39976282
+      ],
+      [
+        -123.92590109,
+        44.3994442
+      ],
+      [
+        -123.92633895,
+        44.399155
+      ],
+      [
+        -123.92704252,
+        44.39905127
+      ],
+      [
+        -123.92769566,
+        44.39898868
+      ],
+      [
+        -123.92830885,
+        44.39900414
+      ],
+      [
+        -123.92892625,
+        44.39895612
+      ],
+      [
+        -123.92954142,
+        44.39893004
+      ],
+      [
+        -123.93014359,
+        44.39889021
+      ],
+      [
+        -123.93069157,
+        44.3987535
+      ],
+      [
+        -123.93121382,
+        44.39858483
+      ],
+      [
+        -123.93179926,
+        44.39837244
+      ],
+      [
+        -123.9323001,
+        44.39811884
+      ],
+      [
+        -123.93286139,
+        44.39791318
+      ],
+      [
+        -123.93343306,
+        44.39771814
+      ],
+      [
+        -123.93402862,
+        44.39752484
+      ],
+      [
+        -123.93445539,
+        44.3974262
+      ],
+      [
+        -123.93507567,
+        44.39720532
+      ],
+      [
+        -123.93566616,
+        44.39703623
+      ],
+      [
+        -123.93608247,
+        44.39695579
+      ],
+      [
+        -123.93680653,
+        44.3968801
+      ],
+      [
+        -123.93748702,
+        44.39688852
+      ],
+      [
+        -123.93801284,
+        44.39704153
+      ],
+      [
+        -123.93862307,
+        44.39713536
+      ],
+      [
+        -123.93909178,
+        44.39738882
+      ],
+      [
+        -123.93958546,
+        44.39763696
+      ],
+      [
+        -123.94004078,
+        44.39791133
+      ],
+      [
+        -123.93992079,
+        44.39849658
+      ],
+      [
+        -123.93951288,
+        44.39911698
+      ],
+      [
+        -123.93937417,
+        44.39938235
+      ],
+      [
+        -123.93930383,
+        44.39977924
+      ],
+      [
+        -123.93916448,
+        44.4000305
+      ],
+      [
+        -123.93901945,
+        44.4003674
+      ],
+      [
+        -123.93904872,
+        44.40078397
+      ],
+      [
+        -123.93909322,
+        44.40129273
+      ],
+      [
+        -123.93915007,
+        44.40175556
+      ],
+      [
+        -123.93925609,
+        44.4022171
+      ],
+      [
+        -123.93943907,
+        44.40268108
+      ],
+      [
+        -123.93960631,
+        44.40322234
+      ],
+      [
+        -123.93982983,
+        44.40361487
+      ],
+      [
+        -123.94014536,
+        44.40397834
+      ],
+      [
+        -123.94026341,
+        44.40429241
+      ],
+      [
+        -123.94057373,
+        44.40447186
+      ],
+      [
+        -123.94105541,
+        44.40474705
+      ],
+      [
+        -123.94160399,
+        44.40494901
+      ],
+      [
+        -123.94220706,
+        44.40502569
+      ],
+      [
+        -123.94279816,
+        44.40506358
+      ],
+      [
+        -123.94340299,
+        44.40507666
+      ],
+      [
+        -123.94402474,
+        44.40510153
+      ],
+      [
+        -123.94462844,
+        44.40520934
+      ],
+      [
+        -123.94524185,
+        44.40526414
+      ],
+      [
+        -123.94588166,
+        44.40528919
+      ],
+      [
+        -123.94651777,
+        44.40533917
+      ],
+      [
+        -123.94717463,
+        44.40539583
+      ],
+      [
+        -123.94782596,
+        44.40545025
+      ],
+      [
+        -123.94847524,
+        44.40549078
+      ],
+      [
+        -123.94908205,
+        44.40554706
+      ],
+      [
+        -123.94968558,
+        44.40556505
+      ],
+      [
+        -123.95032322,
+        44.40564387
+      ],
+      [
+        -123.95088722,
+        44.40579685
+      ],
+      [
+        -123.951475,
+        44.40591513
+      ],
+      [
+        -123.95203642,
+        44.40600215
+      ],
+      [
+        -123.95262381,
+        44.40610039
+      ],
+      [
+        -123.95320377,
+        44.40618497
+      ],
+      [
+        -123.95380631,
+        44.40626162
+      ],
+      [
+        -123.95437712,
+        44.40634471
+      ],
+      [
+        -123.95493238,
+        44.40645369
+      ],
+      [
+        -123.95548339,
+        44.40657689
+      ],
+      [
+        -123.95596045,
+        44.40677881
+      ],
+      [
+        -123.95634357,
+        44.40692054
+      ],
+      [
+        -123.95678154,
+        44.40725095
+      ],
+      [
+        -123.95728515,
+        44.40745667
+      ],
+      [
+        -123.9578236,
+        44.4076733
+      ],
+      [
+        -123.95841299,
+        44.40795093
+      ],
+      [
+        -123.95895545,
+        44.40818203
+      ],
+      [
+        -123.95949965,
+        44.40842223
+      ],
+      [
+        -123.95978424,
+        44.40863051
+      ],
+      [
+        -123.96033444,
+        44.40888121
+      ],
+      [
+        -123.96087367,
+        44.4091309
+      ],
+      [
+        -123.96145696,
+        44.40940761
+      ],
+      [
+        -123.96197166,
+        44.4096763
+      ],
+      [
+        -123.96254326,
+        44.40995239
+      ],
+      [
+        -123.96291887,
+        44.41004019
+      ],
+      [
+        -123.96345949,
+        44.41039994
+      ],
+      [
+        -123.96382274,
+        44.4104883
+      ],
+      [
+        -123.96448741,
+        44.41064768
+      ],
+      [
+        -123.96507192,
+        44.41089011
+      ],
+      [
+        -123.96567255,
+        44.41110579
+      ],
+      [
+        -123.96628875,
+        44.41130712
+      ],
+      [
+        -123.96687554,
+        44.4115252
+      ],
+      [
+        -123.96748682,
+        44.41170485
+      ],
+      [
+        -123.96812516,
+        44.4118425
+      ],
+      [
+        -123.96879175,
+        44.41195063
+      ],
+      [
+        -123.96940244,
+        44.41210901
+      ],
+      [
+        -123.96998386,
+        44.41215632
+      ],
+      [
+        -123.97070257,
+        44.41207678
+      ],
+      [
+        -123.97121878,
+        44.41188922
+      ],
+      [
+        -123.9719615,
+        44.41184233
+      ],
+      [
+        -123.97264813,
+        44.41178434
+      ],
+      [
+        -123.97333195,
+        44.41170379
+      ],
+      [
+        -123.9740139,
+        44.41166369
+      ],
+      [
+        -123.974735,
+        44.41159337
+      ],
+      [
+        -123.97534859,
+        44.41154521
+      ],
+      [
+        -123.97597454,
+        44.41151545
+      ],
+      [
+        -123.97657051,
+        44.41142758
+      ],
+      [
+        -123.977225,
+        44.41141165
+      ],
+      [
+        -123.97789065,
+        44.41136242
+      ],
+      [
+        -123.97855006,
+        44.411291
+      ],
+      [
+        -123.97922159,
+        44.41131766
+      ],
+      [
+        -123.97987871,
+        44.41131188
+      ],
+      [
+        -123.98055407,
+        44.41134369
+      ],
+      [
+        -123.98121029,
+        44.41132718
+      ],
+      [
+        -123.98184957,
+        44.4114154
+      ],
+      [
+        -123.98245005,
+        44.41138605
+      ],
+      [
+        -123.98307313,
+        44.41141705
+      ],
+      [
+        -123.98369401,
+        44.41139145
+      ],
+      [
+        -123.98440539,
+        44.41135395
+      ],
+      [
+        -123.98511358,
+        44.4113503
+      ],
+      [
+        -123.98671941,
+        44.41152246
+      ],
+      [
+        -123.98748945,
+        44.41152462
+      ],
+      [
+        -123.9882401,
+        44.41152883
+      ],
+      [
+        -123.98889219,
+        44.41159485
+      ],
+      [
+        -123.98946553,
+        44.41174715
+      ],
+      [
+        -123.99005421,
+        44.41187194
+      ],
+      [
+        -123.99053595,
+        44.41199176
+      ],
+      [
+        -123.99112282,
+        44.41208699
+      ],
+      [
+        -123.9917098,
+        44.41221487
+      ],
+      [
+        -123.9923444,
+        44.41227068
+      ],
+      [
+        -123.99298967,
+        44.41233859
+      ],
+      [
+        -123.99366116,
+        44.4123239
+      ],
+      [
+        -123.99425938,
+        44.41231871
+      ],
+      [
+        -123.99488136,
+        44.41231232
+      ],
+      [
+        -123.99551957,
+        44.41230265
+      ],
+      [
+        -123.99616306,
+        44.41226539
+      ],
+      [
+        -123.99679546,
+        44.41222111
+      ],
+      [
+        -123.99739403,
+        44.41220866
+      ],
+      [
+        -123.99802346,
+        44.41219235
+      ],
+      [
+        -123.99863466,
+        44.41223578
+      ],
+      [
+        -123.99926345,
+        44.41228427
+      ],
+      [
+        -123.99984754,
+        44.41237385
+      ],
+      [
+        -124.00048214,
+        44.41239248
+      ],
+      [
+        -124.00114048,
+        44.41245646
+      ],
+      [
+        -124.00178649,
+        44.41250322
+      ],
+      [
+        -124.00242568,
+        44.41254112
+      ],
+      [
+        -124.00302101,
+        44.41260424
+      ],
+      [
+        -124.00366056,
+        44.41272726
+      ],
+      [
+        -124.00431346,
+        44.41279803
+      ],
+      [
+        -124.00495665,
+        44.4128499
+      ],
+      [
+        -124.00579352,
+        44.41288924
+      ],
+      [
+        -124.00624914,
+        44.41287201
+      ],
+      [
+        -124.0068697,
+        44.41285621
+      ],
+      [
+        -124.00755761,
+        44.41290728
+      ],
+      [
+        -124.00823004,
+        44.41289992
+      ],
+      [
+        -124.00860708,
+        44.41299905
+      ],
+      [
+        -124.00932836,
+        44.41308644
+      ],
+      [
+        -124.00997898,
+        44.41306819
+      ],
+      [
+        -124.01056621,
+        44.41316267
+      ],
+      [
+        -124.0111938,
+        44.41317779
+      ],
+      [
+        -124.01185685,
+        44.41324235
+      ],
+      [
+        -124.01249612,
+        44.41327547
+      ],
+      [
+        -124.01314373,
+        44.41326774
+      ],
+      [
+        -124.01379886,
+        44.41329262
+      ],
+      [
+        -124.01443035,
+        44.41329667
+      ],
+      [
+        -124.01504742,
+        44.41325602
+      ],
+      [
+        -124.01567696,
+        44.41326543
+      ],
+      [
+        -124.0163176,
+        44.41323321
+      ],
+      [
+        -124.01697681,
+        44.41320211
+      ],
+      [
+        -124.0176808,
+        44.41319297
+      ],
+      [
+        -124.01830344,
+        44.41318806
+      ],
+      [
+        -124.01892875,
+        44.41316995
+      ],
+      [
+        -124.01957479,
+        44.41310311
+      ],
+      [
+        -124.02028666,
+        44.41296881
+      ],
+      [
+        -124.02096835,
+        44.41287308
+      ],
+      [
+        -124.02159251,
+        44.41281857
+      ],
+      [
+        -124.02222162,
+        44.41283223
+      ],
+      [
+        -124.02293347,
+        44.41285626
+      ],
+      [
+        -124.02358937,
+        44.4128672
+      ],
+      [
+        -124.02419598,
+        44.41289626
+      ],
+      [
+        -124.02482112,
+        44.41293497
+      ],
+      [
+        -124.02548339,
+        44.41297929
+      ],
+      [
+        -124.02611148,
+        44.41299481
+      ],
+      [
+        -124.0266979,
+        44.41313225
+      ],
+      [
+        -124.02736855,
+        44.41333595
+      ],
+      [
+        -124.02783454,
+        44.41368598
+      ],
+      [
+        -124.02836911,
+        44.41389146
+      ],
+      [
+        -124.02897219,
+        44.41403678
+      ],
+      [
+        -124.029629,
+        44.41416364
+      ],
+      [
+        -124.03033955,
+        44.41430962
+      ],
+      [
+        -124.03100129,
+        44.41447188
+      ],
+      [
+        -124.03157854,
+        44.4145831
+      ],
+      [
+        -124.03213505,
+        44.41468656
+      ],
+      [
+        -124.03269749,
+        44.41490901
+      ],
+      [
+        -124.033154,
+        44.41508231
+      ],
+      [
+        -124.03359996,
+        44.41520344
+      ],
+      [
+        -124.03408523,
+        44.41530917
+      ],
+      [
+        -124.0346166,
+        44.41543075
+      ],
+      [
+        -124.03512713,
+        44.41554203
+      ],
+      [
+        -124.03564424,
+        44.41566261
+      ],
+      [
+        -124.03605195,
+        44.41585219
+      ],
+      [
+        -124.03654838,
+        44.41591092
+      ],
+      [
+        -124.03701368,
+        44.41610872
+      ],
+      [
+        -124.03751824,
+        44.41637551
+      ],
+      [
+        -124.03799254,
+        44.41658715
+      ],
+      [
+        -124.0384103,
+        44.41683276
+      ],
+      [
+        -124.03883734,
+        44.41708857
+      ],
+      [
+        -124.03925739,
+        44.41737799
+      ],
+      [
+        -124.03971456,
+        44.41764979
+      ],
+      [
+        -124.04013647,
+        44.41789315
+      ],
+      [
+        -124.04054395,
+        44.41813668
+      ],
+      [
+        -124.04097723,
+        44.41838177
+      ],
+      [
+        -124.04146112,
+        44.4186056
+      ],
+      [
+        -124.04185121,
+        44.41889254
+      ],
+      [
+        -124.04228709,
+        44.41915181
+      ],
+      [
+        -124.04260596,
+        44.41950951
+      ],
+      [
+        -124.04295319,
+        44.41978532
+      ],
+      [
+        -124.0433162,
+        44.42011499
+      ],
+      [
+        -124.0436819,
+        44.42043111
+      ],
+      [
+        -124.04408065,
+        44.42071266
+      ],
+      [
+        -124.04439889,
+        44.42100308
+      ],
+      [
+        -124.04478977,
+        44.4212684
+      ],
+      [
+        -124.04517681,
+        44.42157563
+      ],
+      [
+        -124.04553017,
+        44.42187406
+      ],
+      [
+        -124.04588278,
+        44.42214059
+      ],
+      [
+        -124.04625229,
+        44.42241312
+      ],
+      [
+        -124.04662308,
+        44.42269237
+      ],
+      [
+        -124.04695262,
+        44.42303343
+      ],
+      [
+        -124.04714038,
+        44.42343828
+      ],
+      [
+        -124.04741315,
+        44.42376849
+      ],
+      [
+        -124.04768053,
+        44.42407676
+      ],
+      [
+        -124.04780435,
+        44.42435651
+      ],
+      [
+        -124.04732634,
+        44.42489447
+      ],
+      [
+        -124.04702656,
+        44.42523888
+      ],
+      [
+        -124.04687808,
+        44.4257034
+      ],
+      [
+        -124.04689221,
+        44.42611206
+      ],
+      [
+        -124.04694745,
+        44.42650644
+      ],
+      [
+        -124.04699714,
+        44.42683515
+      ],
+      [
+        -124.04711255,
+        44.42722664
+      ],
+      [
+        -124.04718166,
+        44.42755012
+      ],
+      [
+        -124.04735098,
+        44.42792237
+      ],
+      [
+        -124.04744022,
+        44.42823233
+      ],
+      [
+        -124.04763186,
+        44.42858768
+      ],
+      [
+        -124.04782294,
+        44.42893506
+      ],
+      [
+        -124.04795772,
+        44.42927056
+      ],
+      [
+        -124.04812008,
+        44.42954357
+      ],
+      [
+        -124.0482655,
+        44.42985726
+      ],
+      [
+        -124.04841015,
+        44.43016916
+      ],
+      [
+        -124.04959029,
+        44.43019059
+      ],
+      [
+        -124.04958402,
+        44.43058002
+      ],
+      [
+        -124.05003768,
+        44.43060595
+      ],
+      [
+        -124.05056385,
+        44.43056855
+      ],
+      [
+        -124.0509838,
+        44.43054737
+      ],
+      [
+        -124.05142502,
+        44.4304973
+      ],
+      [
+        -124.05188644,
+        44.43042265
+      ],
+      [
+        -124.05234342,
+        44.4303942
+      ],
+      [
+        -124.05285804,
+        44.43048907
+      ],
+      [
+        -124.05322937,
+        44.43062561
+      ],
+      [
+        -124.05355872,
+        44.43079039
+      ],
+      [
+        -124.05393383,
+        44.43093127
+      ],
+      [
+        -124.05434019,
+        44.4310527
+      ],
+      [
+        -124.05478282,
+        44.43112744
+      ],
+      [
+        -124.05524487,
+        44.43116655
+      ],
+      [
+        -124.05570963,
+        44.43125383
+      ],
+      [
+        -124.05620541,
+        44.43119684
+      ],
+      [
+        -124.0566196,
+        44.43110111
+      ],
+      [
+        -124.05700451,
+        44.43095856
+      ],
+      [
+        -124.05735068,
+        44.4308297
+      ],
+      [
+        -124.0576967,
+        44.4306475
+      ],
+      [
+        -124.05806766,
+        44.43046741
+      ],
+      [
+        -124.05842788,
+        44.43029024
+      ],
+      [
+        -124.0587761,
+        44.43014354
+      ],
+      [
+        -124.05919087,
+        44.42992754
+      ],
+      [
+        -124.05955409,
+        44.42970128
+      ],
+      [
+        -124.05993269,
+        44.42959332
+      ],
+      [
+        -124.0600291,
+        44.42991412
+      ],
+      [
+        -124.06039563,
+        44.42997867
+      ],
+      [
+        -124.06040845,
+        44.42966802
+      ],
+      [
+        -124.06039705,
+        44.42937148
+      ],
+      [
+        -124.06062818,
+        44.42914606
+      ],
+      [
+        -124.06099005,
+        44.42900989
+      ],
+      [
+        -124.06106585,
+        44.42873816
+      ],
+      [
+        -124.06133563,
+        44.42851991
+      ],
+      [
+        -124.06164997,
+        44.42832205
+      ],
+      [
+        -124.06198476,
+        44.42810412
+      ],
+      [
+        -124.06232868,
+        44.42788506
+      ],
+      [
+        -124.0626385,
+        44.42768829
+      ],
+      [
+        -124.06294375,
+        44.42749466
+      ],
+      [
+        -124.06324718,
+        44.42728655
+      ],
+      [
+        -124.06356995,
+        44.42711808
+      ],
+      [
+        -124.06394055,
+        44.42699164
+      ],
+      [
+        -124.06434683,
+        44.42693523
+      ],
+      [
+        -124.06477167,
+        44.42693652
+      ],
+      [
+        -124.06518523,
+        44.42695944
+      ],
+      [
+        -124.06558096,
+        44.42698015
+      ],
+      [
+        -124.0659813,
+        44.42700063
+      ],
+      [
+        -124.06638206,
+        44.42699874
+      ],
+      [
+        -124.066768,
+        44.42700564
+      ],
+      [
+        -124.06714626,
+        44.42700383
+      ],
+      [
+        -124.06733695,
+        44.42673471
+      ],
+      [
+        -124.06735524,
+        44.42643001
+      ],
+      [
+        -124.06741351,
+        44.42614907
+      ],
+      [
+        -124.06751697,
+        44.42582062
+      ],
+      [
+        -124.06767438,
+        44.42549643
+      ],
+      [
+        -124.06783809,
+        44.42525326
+      ],
+      [
+        -124.06804478,
+        44.42500646
+      ],
+      [
+        -124.06828641,
+        44.42478841
+      ],
+      [
+        -124.06867087,
+        44.42453262
+      ],
+      [
+        -124.06911546,
+        44.42428148
+      ],
+      [
+        -124.06962386,
+        44.42408709
+      ],
+      [
+        -124.0699778,
+        44.42397249
+      ],
+      [
+        -124.07046375,
+        44.42374579
+      ],
+      [
+        -124.07076916,
+        44.4235611
+      ],
+      [
+        -124.07104161,
+        44.42335428
+      ],
+      [
+        -124.07130694,
+        44.42312002
+      ],
+      [
+        -124.07160346,
+        44.42287778
+      ],
+      [
+        -124.07193864,
+        44.42264133
+      ],
+      [
+        -124.07229798,
+        44.42242491
+      ],
+      [
+        -124.07268246,
+        44.42218728
+      ],
+      [
+        -124.0730827,
+        44.42194548
+      ],
+      [
+        -124.07350536,
+        44.42171291
+      ],
+      [
+        -124.07391474,
+        44.42147584
+      ],
+      [
+        -124.07431838,
+        44.42125
+      ],
+      [
+        -124.07469786,
+        44.42101658
+      ],
+      [
+        -124.07507283,
+        44.4207555
+      ],
+      [
+        -124.07544303,
+        44.42051063
+      ],
+      [
+        -124.07584042,
+        44.42027326
+      ],
+      [
+        -124.07619407,
+        44.42003165
+      ],
+      [
+        -124.07656189,
+        44.41980864
+      ],
+      [
+        -124.07690587,
+        44.41959394
+      ],
+      [
+        -124.07721702,
+        44.41933004
+      ],
+      [
+        -124.07750715,
+        44.41906131
+      ],
+      [
+        -124.07779686,
+        44.41879036
+      ],
+      [
+        -124.07809044,
+        44.41852666
+      ],
+      [
+        -124.07838983,
+        44.41828726
+      ],
+      [
+        -124.07869746,
+        44.41803038
+      ],
+      [
+        -124.07899261,
+        44.41776279
+      ],
+      [
+        -124.07928888,
+        44.41749579
+      ],
+      [
+        -124.07959817,
+        44.4172429
+      ],
+      [
+        -124.07991585,
+        44.41697402
+      ],
+      [
+        -124.08021911,
+        44.41670149
+      ],
+      [
+        -124.08051445,
+        44.41644058
+      ],
+      [
+        -124.08081398,
+        44.41617324
+      ],
+      [
+        -124.08111657,
+        44.41591081
+      ],
+      [
+        -124.08140945,
+        44.41563878
+      ],
+      [
+        -124.08169799,
+        44.41537443
+      ],
+      [
+        -124.08196931,
+        44.41511894
+      ],
+      [
+        -124.08223731,
+        44.41484764
+      ],
+      [
+        -124.08248837,
+        44.41455977
+      ],
+      [
+        -124.08273127,
+        44.41426732
+      ],
+      [
+        -124.08295988,
+        44.41394897
+      ],
+      [
+        -124.08318646,
+        44.41361575
+      ],
+      [
+        -124.08339613,
+        44.41326079
+      ],
+      [
+        -124.08360565,
+        44.41286803
+      ],
+      [
+        -124.08378138,
+        44.41243915
+      ],
+      [
+        -124.08392812,
+        44.41199675
+      ],
+      [
+        -124.08407669,
+        44.41155153
+      ],
+      [
+        -124.08416379,
+        44.41110435
+      ],
+      [
+        -124.08424807,
+        44.41065802
+      ],
+      [
+        -124.08433027,
+        44.41021677
+      ],
+      [
+        -124.08440363,
+        44.40977697
+      ],
+      [
+        -124.0844971,
+        44.40934979
+      ],
+      [
+        -124.08457662,
+        44.40890334
+      ],
+      [
+        -124.08463357,
+        44.40843865
+      ],
+      [
+        -124.08470493,
+        44.40798972
+      ],
+      [
+        -124.08478255,
+        44.40755327
+      ],
+      [
+        -124.08485464,
+        44.40710002
+      ],
+      [
+        -124.084937,
+        44.40665373
+      ],
+      [
+        -124.08500794,
+        44.4062263
+      ],
+      [
+        -124.08509662,
+        44.40579608
+      ],
+      [
+        -124.0851855,
+        44.40537637
+      ],
+      [
+        -124.08526469,
+        44.40493355
+      ],
+      [
+        -124.0853604,
+        44.40448814
+      ],
+      [
+        -124.0854256,
+        44.40405236
+      ],
+      [
+        -124.08549662,
+        44.40364048
+      ],
+      [
+        -124.08556736,
+        44.40322146
+      ],
+      [
+        -124.08563999,
+        44.40282071
+      ],
+      [
+        -124.08569912,
+        44.40241828
+      ],
+      [
+        -124.08575541,
+        44.40200769
+      ],
+      [
+        -124.08579996,
+        44.40158931
+      ],
+      [
+        -124.08583788,
+        44.40116359
+      ],
+      [
+        -124.08586248,
+        44.40074857
+      ],
+      [
+        -124.08588751,
+        44.40032682
+      ],
+      [
+        -124.08591715,
+        44.39990584
+      ],
+      [
+        -124.08594765,
+        44.3994889
+      ],
+      [
+        -124.08598338,
+        44.39907611
+      ],
+      [
+        -124.08601174,
+        44.39866195
+      ],
+      [
+        -124.08602915,
+        44.3982504
+      ],
+      [
+        -124.08605424,
+        44.39785357
+      ],
+      [
+        -124.08608075,
+        44.39746382
+      ],
+      [
+        -124.08610102,
+        44.39706608
+      ],
+      [
+        -124.08612618,
+        44.39666548
+      ],
+      [
+        -124.08614935,
+        44.3962578
+      ],
+      [
+        -124.08617283,
+        44.3958356
+      ],
+      [
+        -124.08619864,
+        44.39539612
+      ],
+      [
+        -124.08622245,
+        44.39494482
+      ],
+      [
+        -124.08625353,
+        44.39448402
+      ],
+      [
+        -124.08627856,
+        44.39402613
+      ],
+      [
+        -124.08632344,
+        44.39356685
+      ],
+      [
+        -124.08635422,
+        44.39310132
+      ],
+      [
+        -124.08641151,
+        44.39265309
+      ],
+      [
+        -124.08655568,
+        44.39222757
+      ],
+      [
+        -124.0867262,
+        44.39180388
+      ],
+      [
+        -124.08690547,
+        44.39139068
+      ],
+      [
+        -124.08709086,
+        44.39098651
+      ],
+      [
+        -124.0872532,
+        44.39059634
+      ],
+      [
+        -124.0874169,
+        44.39021887
+      ],
+      [
+        -124.08759701,
+        44.38985034
+      ],
+      [
+        -124.08773617,
+        44.38947703
+      ],
+      [
+        -124.08786768,
+        44.38909557
+      ],
+      [
+        -124.08799708,
+        44.38870543
+      ],
+      [
+        -124.08812654,
+        44.38832237
+      ],
+      [
+        -124.08824476,
+        44.38795648
+      ],
+      [
+        -124.08836949,
+        44.38759741
+      ],
+      [
+        -124.08848898,
+        44.38723755
+      ],
+      [
+        -124.0886004,
+        44.38688288
+      ],
+      [
+        -124.08868703,
+        44.38652479
+      ],
+      [
+        -124.0887235,
+        44.38615643
+      ],
+      [
+        -124.0887073,
+        44.38578298
+      ],
+      [
+        -124.08866765,
+        44.3854133
+      ],
+      [
+        -124.08862364,
+        44.38502272
+      ],
+      [
+        -124.08857869,
+        44.38464463
+      ],
+      [
+        -124.08852475,
+        44.38428098
+      ],
+      [
+        -124.08848203,
+        44.383933
+      ],
+      [
+        -124.08842158,
+        44.383597
+      ],
+      [
+        -124.08835965,
+        44.3832785
+      ],
+      [
+        -124.08830479,
+        44.38294095
+      ],
+      [
+        -124.08826863,
+        44.38260108
+      ],
+      [
+        -124.08820845,
+        44.3822522
+      ],
+      [
+        -124.08816678,
+        44.38191104
+      ],
+      [
+        -124.08809489,
+        44.38155442
+      ],
+      [
+        -124.08801834,
+        44.38118953
+      ],
+      [
+        -124.08799307,
+        44.38083131
+      ],
+      [
+        -124.08798255,
+        44.38046027
+      ],
+      [
+        -124.08795659,
+        44.38011778
+      ],
+      [
+        -124.08794419,
+        44.37976553
+      ],
+      [
+        -124.08797682,
+        44.37942379
+      ],
+      [
+        -124.08800555,
+        44.37907677
+      ],
+      [
+        -124.08807389,
+        44.37872006
+      ],
+      [
+        -124.08815757,
+        44.37836394
+      ],
+      [
+        -124.08825646,
+        44.37800067
+      ],
+      [
+        -124.08831758,
+        44.37758827
+      ],
+      [
+        -124.0884206,
+        44.37717262
+      ],
+      [
+        -124.08853293,
+        44.37672522
+      ],
+      [
+        -124.08862997,
+        44.37627187
+      ],
+      [
+        -124.0887306,
+        44.37582995
+      ],
+      [
+        -124.08882129,
+        44.37538556
+      ],
+      [
+        -124.08891044,
+        44.37493614
+      ],
+      [
+        -124.08902176,
+        44.37449193
+      ],
+      [
+        -124.08912412,
+        44.37403556
+      ],
+      [
+        -124.08922632,
+        44.37359816
+      ],
+      [
+        -124.08932993,
+        44.37315501
+      ],
+      [
+        -124.08943379,
+        44.37270285
+      ],
+      [
+        -124.08953036,
+        44.37224868
+      ],
+      [
+        -124.08962632,
+        44.37178984
+      ],
+      [
+        -124.0897062,
+        44.37134743
+      ],
+      [
+        -124.08979663,
+        44.37090437
+      ],
+      [
+        -124.08989389,
+        44.37045203
+      ],
+      [
+        -124.08998729,
+        44.36999483
+      ],
+      [
+        -124.09008152,
+        44.36954793
+      ],
+      [
+        -124.09017757,
+        44.36911563
+      ],
+      [
+        -124.09026309,
+        44.36870016
+      ],
+      [
+        -124.09033758,
+        44.36829176
+      ],
+      [
+        -124.09042925,
+        44.36791484
+      ],
+      [
+        -124.09051605,
+        44.36755222
+      ],
+      [
+        -124.09059652,
+        44.36722549
+      ],
+      [
+        -124.09067102,
+        44.36688946
+      ],
+      [
+        -124.09073613,
+        44.36658666
+      ],
+      [
+        -124.0908498,
+        44.3663165
+      ],
+      [
+        -124.09123576,
+        44.36621449
+      ],
+      [
+        -124.09152652,
+        44.3664172
+      ],
+      [
+        -124.09150175,
+        44.36675248
+      ],
+      [
+        -124.09151938,
+        44.36705164
+      ],
+      [
+        -124.0918594,
+        44.36718891
+      ],
+      [
+        -124.0922132,
+        44.36698833
+      ],
+      [
+        -124.09238998,
+        44.3666993
+      ],
+      [
+        -124.0924104,
+        44.36642336
+      ],
+      [
+        -124.09232828,
+        44.36610462
+      ],
+      [
+        -124.09243297,
+        44.36578117
+      ],
+      [
+        -124.0925485,
+        44.36547432
+      ]
+    ]
+  },
+  "properties": {
+    "title" : "tillicum",
+    "path_options" : { "color" : "red" },
+    "time": [
+      1369786338000,
+      1369786340000,
+      1369786342000,
+      1369786344000,
+      1369786346000,
+      1369786348000,
+      1369786349000,
+      1369786351000,
+      1369786353000,
+      1369786355000,
+      1369786357000,
+      1369786359000,
+      1369786361000,
+      1369786363000,
+      1369786365000,
+      1369786367000,
+      1369786369000,
+      1369786371000,
+      1369786373000,
+      1369786375000,
+      1369786399000,
+      1369786401000,
+      1369786403000,
+      1369786404000,
+      1369786406000,
+      1369786408000,
+      1369786410000,
+      1369786412000,
+      1369786414000,
+      1369786416000,
+      1369786418000,
+      1369786420000,
+      1369786422000,
+      1369786424000,
+      1369786426000,
+      1369786428000,
+      1369786430000,
+      1369786432000,
+      1369786434000,
+      1369786436000,
+      1369786438000,
+      1369786440000,
+      1369786442000,
+      1369786444000,
+      1369786446000,
+      1369786448000,
+      1369786449000,
+      1369786451000,
+      1369786453000,
+      1369786455000,
+      1369786457000,
+      1369786459000,
+      1369786461000,
+      1369786463000,
+      1369786465000,
+      1369786467000,
+      1369786469000,
+      1369786471000,
+      1369786472000,
+      1369786474000,
+      1369786476000,
+      1369786478000,
+      1369786480000,
+      1369786482000,
+      1369786484000,
+      1369786486000,
+      1369786488000,
+      1369786490000,
+      1369786492000,
+      1369786494000,
+      1369786495000,
+      1369786496000,
+      1369786498000,
+      1369786500000,
+      1369786502000,
+      1369786504000,
+      1369786506000,
+      1369786508000,
+      1369786510000,
+      1369786512000,
+      1369786514000,
+      1369786515000,
+      1369786516000,
+      1369786517000,
+      1369786519000,
+      1369786521000,
+      1369786523000,
+      1369786525000,
+      1369786527000,
+      1369786529000,
+      1369786531000,
+      1369786533000,
+      1369786534000,
+      1369786536000,
+      1369786537000,
+      1369786539000,
+      1369786541000,
+      1369786542000,
+      1369786544000,
+      1369786546000,
+      1369786548000,
+      1369786550000,
+      1369786552000,
+      1369786554000,
+      1369786556000,
+      1369786558000,
+      1369786560000,
+      1369786562000,
+      1369786563000,
+      1369786564000,
+      1369786566000,
+      1369786568000,
+      1369786570000,
+      1369786572000,
+      1369786574000,
+      1369786576000,
+      1369786578000,
+      1369786580000,
+      1369786582000,
+      1369786584000,
+      1369786586000,
+      1369786588000,
+      1369786590000,
+      1369786592000,
+      1369786594000,
+      1369786596000,
+      1369786598000,
+      1369786599000,
+      1369786601000,
+      1369786603000,
+      1369786605000,
+      1369786607000,
+      1369786609000,
+      1369786611000,
+      1369786613000,
+      1369786615000,
+      1369786617000,
+      1369786619000,
+      1369786621000,
+      1369786623000,
+      1369786625000,
+      1369786627000,
+      1369786629000,
+      1369786631000,
+      1369786633000,
+      1369786635000,
+      1369786637000,
+      1369786639000,
+      1369786640000,
+      1369786642000,
+      1369786644000,
+      1369786646000,
+      1369786648000,
+      1369786650000,
+      1369786652000,
+      1369786654000,
+      1369786655000,
+      1369786656000,
+      1369786658000,
+      1369786660000,
+      1369786662000,
+      1369786664000,
+      1369786666000,
+      1369786668000,
+      1369786670000,
+      1369786672000,
+      1369786674000,
+      1369786676000,
+      1369786678000,
+      1369786680000,
+      1369786682000,
+      1369786684000,
+      1369786686000,
+      1369786687000,
+      1369786688000,
+      1369786689000,
+      1369786691000,
+      1369786692000,
+      1369786693000,
+      1369786694000,
+      1369786695000,
+      1369786697000,
+      1369786699000,
+      1369786701000,
+      1369786703000,
+      1369786705000,
+      1369786715000,
+      1369786716000,
+      1369786717000,
+      1369786718000,
+      1369786719000,
+      1369786720000,
+      1369786721000,
+      1369786722000,
+      1369786723000,
+      1369786724000,
+      1369786725000,
+      1369786726000,
+      1369786728000,
+      1369786730000,
+      1369786732000,
+      1369786734000,
+      1369786736000,
+      1369786738000,
+      1369786740000,
+      1369786742000,
+      1369786744000,
+      1369786746000,
+      1369786748000,
+      1369786750000,
+      1369786752000,
+      1369786754000,
+      1369786756000,
+      1369786758000,
+      1369786760000,
+      1369786762000,
+      1369786764000,
+      1369786766000,
+      1369786768000,
+      1369786770000,
+      1369786772000,
+      1369786774000,
+      1369786776000,
+      1369786778000,
+      1369786780000,
+      1369786782000,
+      1369786784000,
+      1369786786000,
+      1369786788000,
+      1369786790000,
+      1369786792000,
+      1369786793000,
+      1369786795000,
+      1369786797000,
+      1369786799000,
+      1369786801000,
+      1369786803000,
+      1369786805000,
+      1369786807000,
+      1369786809000,
+      1369786810000,
+      1369786812000,
+      1369786814000,
+      1369786816000,
+      1369786818000,
+      1369786820000,
+      1369786822000,
+      1369786824000,
+      1369786826000,
+      1369786828000,
+      1369786830000,
+      1369786832000,
+      1369786834000,
+      1369786836000,
+      1369786838000,
+      1369786840000,
+      1369786842000,
+      1369786844000,
+      1369786846000,
+      1369786848000,
+      1369786850000,
+      1369786852000,
+      1369786854000,
+      1369786856000,
+      1369786857000,
+      1369786859000,
+      1369786861000,
+      1369786862000,
+      1369786864000,
+      1369786866000,
+      1369786867000,
+      1369786869000,
+      1369786871000,
+      1369786873000,
+      1369786875000,
+      1369786877000,
+      1369786878000,
+      1369786880000,
+      1369786882000,
+      1369786883000,
+      1369786884000,
+      1369786886000,
+      1369786888000,
+      1369786890000,
+      1369786892000,
+      1369786894000,
+      1369786896000,
+      1369786898000,
+      1369786900000,
+      1369786902000,
+      1369786904000,
+      1369786905000,
+      1369786906000,
+      1369786908000,
+      1369786910000,
+      1369786912000,
+      1369786914000,
+      1369786916000,
+      1369786918000,
+      1369786920000,
+      1369786922000,
+      1369786924000,
+      1369786926000,
+      1369786927000,
+      1369786928000,
+      1369786929000,
+      1369786960000,
+      1369786961000,
+      1369786962000,
+      1369786963000,
+      1369786965000,
+      1369786967000,
+      1369786969000,
+      1369786971000,
+      1369786972000,
+      1369786973000,
+      1369786974000,
+      1369786976000,
+      1369786978000,
+      1369786980000,
+      1369786982000,
+      1369786984000,
+      1369786986000,
+      1369786988000,
+      1369786990000,
+      1369786992000,
+      1369786993000,
+      1369786994000,
+      1369786996000,
+      1369786998000,
+      1369786999000,
+      1369787000000,
+      1369787001000,
+      1369787003000,
+      1369787005000,
+      1369787007000,
+      1369787009000,
+      1369787011000,
+      1369787013000,
+      1369787015000,
+      1369787016000,
+      1369787018000,
+      1369787020000,
+      1369787022000,
+      1369787023000,
+      1369787025000,
+      1369787027000,
+      1369787029000,
+      1369787031000,
+      1369787033000,
+      1369787035000,
+      1369787037000,
+      1369787039000,
+      1369787041000,
+      1369787043000,
+      1369787045000,
+      1369787047000,
+      1369787048000,
+      1369787050000,
+      1369787052000,
+      1369787054000,
+      1369787056000,
+      1369787058000,
+      1369787060000,
+      1369787062000,
+      1369787064000,
+      1369787066000,
+      1369787068000,
+      1369787070000,
+      1369787072000,
+      1369787074000,
+      1369787076000,
+      1369787077000,
+      1369787079000,
+      1369787081000,
+      1369787083000,
+      1369787085000,
+      1369787087000,
+      1369787089000,
+      1369787091000,
+      1369787093000,
+      1369787095000,
+      1369787097000,
+      1369787099000,
+      1369787101000,
+      1369787103000,
+      1369787105000,
+      1369787107000,
+      1369787109000,
+      1369787111000,
+      1369787113000,
+      1369787115000,
+      1369787117000,
+      1369787119000,
+      1369787121000,
+      1369787123000,
+      1369787125000,
+      1369787127000,
+      1369787129000,
+      1369787131000,
+      1369787133000,
+      1369787135000,
+      1369787137000,
+      1369787138000,
+      1369787140000,
+      1369787142000,
+      1369787144000,
+      1369787146000,
+      1369787148000,
+      1369787150000,
+      1369787152000,
+      1369787154000,
+      1369787156000,
+      1369787158000,
+      1369787160000,
+      1369787162000,
+      1369787164000,
+      1369787166000,
+      1369787168000,
+      1369787169000,
+      1369787170000,
+      1369787172000,
+      1369787174000,
+      1369787176000,
+      1369787178000,
+      1369787180000,
+      1369787181000,
+      1369787182000,
+      1369787183000,
+      1369787185000,
+      1369787187000,
+      1369787189000,
+      1369787191000,
+      1369787193000,
+      1369787194000,
+      1369787195000,
+      1369787197000,
+      1369787199000,
+      1369787201000,
+      1369787203000,
+      1369787205000,
+      1369787207000,
+      1369787209000,
+      1369787210000,
+      1369787212000,
+      1369787214000,
+      1369787216000,
+      1369787218000,
+      1369787220000,
+      1369787222000,
+      1369787224000,
+      1369787226000,
+      1369787228000,
+      1369787230000,
+      1369787232000,
+      1369787236000,
+      1369787238000,
+      1369787240000,
+      1369787243000,
+      1369787244000,
+      1369787245000,
+      1369787247000,
+      1369787248000,
+      1369787249000,
+      1369787251000,
+      1369787252000,
+      1369787254000,
+      1369787255000,
+      1369787257000,
+      1369787258000,
+      1369787260000,
+      1369787262000,
+      1369787264000,
+      1369787265000,
+      1369787267000,
+      1369787269000,
+      1369787271000,
+      1369787273000,
+      1369787275000,
+      1369787277000,
+      1369787279000,
+      1369787281000,
+      1369787283000,
+      1369787285000,
+      1369787287000,
+      1369787289000,
+      1369787291000,
+      1369787293000,
+      1369787295000,
+      1369787297000,
+      1369787299000,
+      1369787301000,
+      1369787303000,
+      1369787305000,
+      1369787307000,
+      1369787309000,
+      1369787311000,
+      1369787313000,
+      1369787315000,
+      1369787317000,
+      1369787319000,
+      1369787321000,
+      1369787323000,
+      1369787325000,
+      1369787327000,
+      1369787329000,
+      1369787331000,
+      1369787333000,
+      1369787335000,
+      1369787337000,
+      1369787339000,
+      1369787341000,
+      1369787343000,
+      1369787345000,
+      1369787347000,
+      1369787349000,
+      1369787351000,
+      1369787353000,
+      1369787355000,
+      1369787357000,
+      1369787359000,
+      1369787361000,
+      1369787363000,
+      1369787365000,
+      1369787367000,
+      1369787369000,
+      1369787371000,
+      1369787373000,
+      1369787375000,
+      1369787377000,
+      1369787379000,
+      1369787381000,
+      1369787383000,
+      1369787385000,
+      1369787387000,
+      1369787389000,
+      1369787391000,
+      1369787393000,
+      1369787395000,
+      1369787397000,
+      1369787399000,
+      1369787401000,
+      1369787403000,
+      1369787405000,
+      1369787407000,
+      1369787409000,
+      1369787411000,
+      1369787412000,
+      1369787414000,
+      1369787416000,
+      1369787417000,
+      1369787419000,
+      1369787421000,
+      1369787423000,
+      1369787425000,
+      1369787427000,
+      1369787429000,
+      1369787431000,
+      1369787435000,
+      1369787436000,
+      1369787437000,
+      1369787439000,
+      1369787440000,
+      1369787441000,
+      1369787443000,
+      1369787445000,
+      1369787447000,
+      1369787449000,
+      1369787451000,
+      1369787453000,
+      1369787454000,
+      1369787456000,
+      1369787457000,
+      1369787458000,
+      1369787460000,
+      1369787462000,
+      1369787464000,
+      1369787466000,
+      1369787468000,
+      1369787470000,
+      1369787472000,
+      1369787474000,
+      1369787476000,
+      1369787478000,
+      1369787480000,
+      1369787482000,
+      1369787484000,
+      1369787486000,
+      1369787488000,
+      1369787490000,
+      1369787492000,
+      1369787494000,
+      1369787496000,
+      1369787498000,
+      1369787500000,
+      1369787502000,
+      1369787504000,
+      1369787506000,
+      1369787508000,
+      1369787510000,
+      1369787512000,
+      1369787514000,
+      1369787516000,
+      1369787518000,
+      1369787520000,
+      1369787522000,
+      1369787524000,
+      1369787525000,
+      1369787527000,
+      1369787529000,
+      1369787531000,
+      1369787533000,
+      1369787535000,
+      1369787536000,
+      1369787538000,
+      1369787539000,
+      1369787541000,
+      1369787543000,
+      1369787545000,
+      1369787547000,
+      1369787549000,
+      1369787551000,
+      1369787553000,
+      1369787555000,
+      1369787557000,
+      1369787559000,
+      1369787561000,
+      1369787562000,
+      1369787564000,
+      1369787566000,
+      1369787568000,
+      1369787570000,
+      1369787572000,
+      1369787574000,
+      1369787576000,
+      1369787578000,
+      1369787580000,
+      1369787582000,
+      1369787584000,
+      1369787586000,
+      1369787588000,
+      1369787590000,
+      1369787592000,
+      1369787594000,
+      1369787596000,
+      1369787598000,
+      1369787600000,
+      1369787602000,
+      1369787604000,
+      1369787610000,
+      1369787612000,
+      1369787614000,
+      1369787616000,
+      1369787618000,
+      1369787620000,
+      1369787622000,
+      1369787624000,
+      1369787626000,
+      1369787628000,
+      1369787630000,
+      1369787632000,
+      1369787634000,
+      1369787636000,
+      1369787638000,
+      1369787640000,
+      1369787642000,
+      1369787644000,
+      1369787646000,
+      1369787648000,
+      1369787650000,
+      1369787652000,
+      1369787654000,
+      1369787656000,
+      1369787658000,
+      1369787660000,
+      1369787662000,
+      1369787664000,
+      1369787666000,
+      1369787668000,
+      1369787670000,
+      1369787671000,
+      1369787673000,
+      1369787675000,
+      1369787677000,
+      1369787678000,
+      1369787680000,
+      1369787682000,
+      1369787684000,
+      1369787686000,
+      1369787688000,
+      1369787690000,
+      1369787692000,
+      1369787694000,
+      1369787696000,
+      1369787698000,
+      1369787700000,
+      1369787702000,
+      1369787704000,
+      1369787706000,
+      1369787708000,
+      1369787710000,
+      1369787712000,
+      1369787714000,
+      1369787716000,
+      1369787718000,
+      1369787720000,
+      1369787722000,
+      1369787724000,
+      1369787726000,
+      1369787728000,
+      1369787730000,
+      1369787732000,
+      1369787734000,
+      1369787736000,
+      1369787738000,
+      1369787740000,
+      1369787742000,
+      1369787744000,
+      1369787746000,
+      1369787748000,
+      1369787750000,
+      1369787752000,
+      1369787754000,
+      1369787756000,
+      1369787758000,
+      1369787760000,
+      1369787762000,
+      1369787764000,
+      1369787766000,
+      1369787768000,
+      1369787770000,
+      1369787772000,
+      1369787774000,
+      1369787776000,
+      1369787778000,
+      1369787780000,
+      1369787782000,
+      1369787784000,
+      1369787786000,
+      1369787788000,
+      1369787790000,
+      1369787792000,
+      1369787794000,
+      1369787796000,
+      1369787798000,
+      1369787800000,
+      1369787802000,
+      1369787804000,
+      1369787806000,
+      1369787808000,
+      1369787810000,
+      1369787812000,
+      1369787814000,
+      1369787816000,
+      1369787818000,
+      1369787820000,
+      1369787822000,
+      1369787824000,
+      1369787826000,
+      1369787828000,
+      1369787830000,
+      1369787832000,
+      1369787833000,
+      1369787835000,
+      1369787837000,
+      1369787839000,
+      1369787841000,
+      1369787843000,
+      1369787845000,
+      1369787847000,
+      1369787849000,
+      1369787851000,
+      1369787853000,
+      1369787855000,
+      1369787857000,
+      1369787859000,
+      1369787861000,
+      1369787865000,
+      1369787866000,
+      1369787867000,
+      1369787869000,
+      1369787871000,
+      1369787873000,
+      1369787875000,
+      1369787877000,
+      1369787880000,
+      1369787882000,
+      1369787884000,
+      1369787886000,
+      1369787888000,
+      1369787890000,
+      1369787892000,
+      1369787895000,
+      1369787898000,
+      1369787901000,
+      1369787904000,
+      1369787906000,
+      1369787908000,
+      1369787910000,
+      1369787912000,
+      1369787914000,
+      1369787917000,
+      1369787920000,
+      1369787925000,
+      1369787930000,
+      1369787937000,
+      1369788765000,
+      1369788771000,
+      1369788777000,
+      1369788782000,
+      1369788789000,
+      1369788793000,
+      1369788796000,
+      1369788799000,
+      1369788802000,
+      1369788805000,
+      1369788808000,
+      1369788811000,
+      1369788814000,
+      1369788817000,
+      1369788820000,
+      1369788823000,
+      1369788826000,
+      1369788829000,
+      1369788832000,
+      1369788835000,
+      1369788839000,
+      1369788857000,
+      1369788864000,
+      1369788870000,
+      1369788874000,
+      1369788878000,
+      1369788882000,
+      1369788885000,
+      1369788889000,
+      1369788892000,
+      1369788895000,
+      1369788898000,
+      1369788901000,
+      1369788903000,
+      1369788906000,
+      1369788908000,
+      1369788910000,
+      1369788912000,
+      1369788914000,
+      1369788916000,
+      1369788918000,
+      1369788920000,
+      1369788922000,
+      1369788924000,
+      1369788926000,
+      1369788928000,
+      1369788930000,
+      1369788932000,
+      1369788934000,
+      1369788936000,
+      1369788938000,
+      1369788940000,
+      1369788942000,
+      1369788944000,
+      1369788946000,
+      1369788948000,
+      1369788950000,
+      1369788952000,
+      1369788954000,
+      1369788956000,
+      1369788958000,
+      1369788960000,
+      1369788962000,
+      1369788964000,
+      1369788966000,
+      1369788968000,
+      1369788970000,
+      1369788972000,
+      1369788974000,
+      1369788976000,
+      1369788978000,
+      1369788980000,
+      1369788982000,
+      1369788984000,
+      1369788986000,
+      1369788988000,
+      1369788990000,
+      1369788992000,
+      1369788994000,
+      1369788996000,
+      1369788998000,
+      1369789000000,
+      1369789002000,
+      1369789004000,
+      1369789006000,
+      1369789008000,
+      1369789010000,
+      1369789012000,
+      1369789014000,
+      1369789016000,
+      1369789018000,
+      1369789020000,
+      1369789022000,
+      1369789024000,
+      1369789026000,
+      1369789028000,
+      1369789030000,
+      1369789032000,
+      1369789034000,
+      1369789036000,
+      1369789038000,
+      1369789040000,
+      1369789042000,
+      1369789044000,
+      1369789046000,
+      1369789048000,
+      1369789050000,
+      1369789052000,
+      1369789054000,
+      1369789056000,
+      1369789058000,
+      1369789060000,
+      1369789062000,
+      1369789064000,
+      1369789066000,
+      1369789068000,
+      1369789070000,
+      1369789072000,
+      1369789074000,
+      1369789076000,
+      1369789078000,
+      1369789080000,
+      1369789082000,
+      1369789084000,
+      1369789086000,
+      1369789088000,
+      1369789090000,
+      1369789092000,
+      1369789094000,
+      1369789096000,
+      1369789098000,
+      1369789100000,
+      1369789102000,
+      1369789104000,
+      1369789106000,
+      1369789108000,
+      1369789110000,
+      1369789112000,
+      1369789114000,
+      1369789116000,
+      1369789118000,
+      1369789120000,
+      1369789122000,
+      1369789124000,
+      1369789126000,
+      1369789128000,
+      1369789130000,
+      1369789132000,
+      1369789134000,
+      1369789136000,
+      1369789138000,
+      1369789140000,
+      1369789142000,
+      1369789144000,
+      1369789146000,
+      1369789148000,
+      1369789150000,
+      1369789152000,
+      1369789154000,
+      1369789156000,
+      1369789158000,
+      1369789160000,
+      1369789162000,
+      1369789164000,
+      1369789166000,
+      1369789168000,
+      1369789170000,
+      1369789172000,
+      1369789174000,
+      1369789176000,
+      1369789178000,
+      1369789180000,
+      1369789182000,
+      1369789184000,
+      1369789186000,
+      1369789188000,
+      1369789190000,
+      1369789192000,
+      1369789194000,
+      1369789196000,
+      1369789198000,
+      1369789200000,
+      1369789202000,
+      1369789204000,
+      1369789206000,
+      1369789208000,
+      1369789210000,
+      1369789212000,
+      1369789214000,
+      1369789216000,
+      1369789218000,
+      1369789221000,
+      1369789226000,
+      1369789233000,
+      1369789244000,
+      1369789249000,
+      1369789255000,
+      1369789260000,
+      1369789265000,
+      1369789270000,
+      1369789275000,
+      1369789280000,
+      1369789285000
+    ],
+    "speed": [
+      85,
+      88,
+      90,
+      91,
+      91,
+      89,
+      88,
+      87,
+      88,
+      88,
+      88,
+      86,
+      85,
+      82,
+      80,
+      79,
+      79,
+      79,
+      80,
+      79,
+      85,
+      86,
+      85,
+      86,
+      88,
+      89,
+      88,
+      86,
+      87,
+      87,
+      82,
+      79,
+      82,
+      85,
+      80,
+      77,
+      77,
+      77,
+      77,
+      77,
+      77,
+      77,
+      77,
+      76,
+      79,
+      79,
+      86,
+      86,
+      85,
+      81,
+      80,
+      80,
+      78,
+      78,
+      79,
+      85,
+      81,
+      71,
+      77,
+      85,
+      84,
+      77,
+      78,
+      77,
+      77,
+      75,
+      77,
+      77,
+      78,
+      83,
+      86,
+      81,
+      77,
+      71,
+      70,
+      69,
+      76,
+      77,
+      80,
+      81,
+      83,
+      85,
+      84,
+      85,
+      83,
+      82,
+      82,
+      80,
+      85,
+      81,
+      79,
+      71,
+      69,
+      63,
+      68,
+      69,
+      70,
+      75,
+      76,
+      82,
+      84,
+      84,
+      86,
+      87,
+      87,
+      86,
+      88,
+      87,
+      92,
+      95,
+      94,
+      95,
+      93,
+      93,
+      91,
+      90,
+      93,
+      93,
+      92,
+      94,
+      93,
+      90,
+      90,
+      88,
+      89,
+      89,
+      87,
+      93,
+      93,
+      91,
+      94,
+      96,
+      94,
+      95,
+      95,
+      95,
+      94,
+      92,
+      93,
+      95,
+      95,
+      95,
+      93,
+      94,
+      93,
+      93,
+      95,
+      95,
+      95,
+      95,
+      95,
+      94,
+      91,
+      90,
+      92,
+      92,
+      95,
+      95,
+      92,
+      92,
+      92,
+      90,
+      90,
+      92,
+      95,
+      94,
+      97,
+      98,
+      97,
+      95,
+      90,
+      91,
+      90,
+      94,
+      95,
+      93,
+      91,
+      95,
+      97,
+      99,
+      102,
+      88,
+      87,
+      86,
+      85,
+      85,
+      89,
+      92,
+      93,
+      95,
+      95,
+      99,
+      100,
+      99,
+      99,
+      98,
+      97,
+      97,
+      95,
+      97,
+      95,
+      95,
+      95,
+      95,
+      97,
+      97,
+      97,
+      96,
+      99,
+      99,
+      98,
+      95,
+      95,
+      96,
+      96,
+      94,
+      91,
+      90,
+      92,
+      95,
+      95,
+      95,
+      95,
+      98,
+      97,
+      96,
+      97,
+      95,
+      94,
+      92,
+      94,
+      95,
+      97,
+      97,
+      100,
+      95,
+      86,
+      88,
+      89,
+      94,
+      95,
+      95,
+      97,
+      96,
+      95,
+      95,
+      96,
+      93,
+      89,
+      83,
+      85,
+      81,
+      86,
+      84,
+      85,
+      88,
+      88,
+      86,
+      82,
+      79,
+      77,
+      77,
+      74,
+      78,
+      82,
+      79,
+      76,
+      83,
+      80,
+      86,
+      89,
+      89,
+      90,
+      89,
+      88,
+      86,
+      88,
+      91,
+      91,
+      94,
+      94,
+      91,
+      90,
+      88,
+      89,
+      91,
+      93,
+      91,
+      86,
+      80,
+      80,
+      86,
+      90,
+      92,
+      92,
+      92,
+      92,
+      93,
+      95,
+      95,
+      95,
+      87,
+      87,
+      86,
+      88,
+      91,
+      93,
+      91,
+      92,
+      90,
+      88,
+      90,
+      79,
+      79,
+      89,
+      86,
+      86,
+      89,
+      90,
+      86,
+      86,
+      82,
+      85,
+      86,
+      90,
+      90,
+      91,
+      92,
+      92,
+      88,
+      89,
+      93,
+      96,
+      94,
+      96,
+      95,
+      95,
+      95,
+      92,
+      94,
+      95,
+      96,
+      98,
+      96,
+      96,
+      96,
+      94,
+      91,
+      93,
+      94,
+      96,
+      94,
+      95,
+      95,
+      94,
+      87,
+      88,
+      93,
+      95,
+      100,
+      99,
+      102,
+      96,
+      98,
+      98,
+      95,
+      94,
+      96,
+      97,
+      96,
+      96,
+      96,
+      96,
+      95,
+      97,
+      95,
+      95,
+      94,
+      95,
+      95,
+      93,
+      96,
+      93,
+      92,
+      92,
+      91,
+      92,
+      91,
+      92,
+      91,
+      92,
+      94,
+      89,
+      92,
+      95,
+      98,
+      93,
+      87,
+      86,
+      86,
+      88,
+      90,
+      92,
+      94,
+      92,
+      87,
+      87,
+      90,
+      92,
+      92,
+      93,
+      94,
+      94,
+      95,
+      91,
+      89,
+      90,
+      93,
+      92,
+      94,
+      94,
+      96,
+      95,
+      93,
+      90,
+      85,
+      88,
+      94,
+      95,
+      94,
+      95,
+      95,
+      93,
+      92,
+      91,
+      95,
+      94,
+      95,
+      96,
+      95,
+      93,
+      89,
+      91,
+      91,
+      90,
+      89,
+      86,
+      85,
+      87,
+      85,
+      83,
+      80,
+      71,
+      72,
+      71,
+      29,
+      23,
+      30,
+      53,
+      67,
+      78,
+      94,
+      98,
+      100,
+      101,
+      103,
+      103,
+      103,
+      103,
+      103,
+      101,
+      97,
+      89,
+      93,
+      92,
+      93,
+      95,
+      94,
+      95,
+      94,
+      92,
+      85,
+      84,
+      82,
+      79,
+      77,
+      77,
+      80,
+      79,
+      77,
+      77,
+      82,
+      85,
+      83,
+      85,
+      85,
+      84,
+      83,
+      83,
+      81,
+      86,
+      88,
+      91,
+      90,
+      90,
+      86,
+      83,
+      84,
+      82,
+      83,
+      86,
+      87,
+      88,
+      90,
+      89,
+      92,
+      90,
+      86,
+      83,
+      88,
+      90,
+      89,
+      89,
+      87,
+      88,
+      86,
+      83,
+      89,
+      90,
+      93,
+      91,
+      91,
+      87,
+      86,
+      86,
+      87,
+      86,
+      86,
+      86,
+      86,
+      85,
+      86,
+      89,
+      89,
+      89,
+      91,
+      92,
+      96,
+      97,
+      97,
+      99,
+      100,
+      95,
+      85,
+      86,
+      81,
+      84,
+      83,
+      59,
+      72,
+      74,
+      74,
+      75,
+      80,
+      81,
+      86,
+      87,
+      88,
+      88,
+      90,
+      95,
+      89,
+      92,
+      92,
+      90,
+      86,
+      85,
+      85,
+      85,
+      86,
+      89,
+      89,
+      91,
+      91,
+      94,
+      94,
+      94,
+      92,
+      91,
+      93,
+      91,
+      91,
+      88,
+      87,
+      86,
+      87,
+      86,
+      85,
+      83,
+      82,
+      81,
+      81,
+      82,
+      85,
+      89,
+      90,
+      90,
+      94,
+      95,
+      95,
+      97,
+      97,
+      98,
+      100,
+      102,
+      101,
+      100,
+      100,
+      98,
+      97,
+      95,
+      96,
+      96,
+      95,
+      94,
+      89,
+      89,
+      92,
+      95,
+      94,
+      94,
+      96,
+      98,
+      95,
+      94,
+      92,
+      94,
+      95,
+      95,
+      95,
+      95,
+      95,
+      95,
+      94,
+      93,
+      93,
+      92,
+      94,
+      96,
+      92,
+      92,
+      95,
+      93,
+      93,
+      91,
+      88,
+      87,
+      89,
+      89,
+      90,
+      93,
+      91,
+      90,
+      91,
+      91,
+      88,
+      89,
+      89,
+      89,
+      89,
+      91,
+      91,
+      93,
+      93,
+      93,
+      90,
+      93,
+      95,
+      95,
+      100,
+      101,
+      97,
+      97,
+      96,
+      97,
+      96,
+      96,
+      92,
+      91,
+      93,
+      92,
+      92,
+      92,
+      90,
+      90,
+      91,
+      90,
+      92,
+      94,
+      93,
+      91,
+      91,
+      93,
+      94,
+      94,
+      92,
+      92,
+      91,
+      91,
+      92,
+      94,
+      92,
+      89,
+      93,
+      92,
+      93,
+      95,
+      97,
+      100,
+      98,
+      94,
+      90,
+      87,
+      82,
+      79,
+      77,
+      79,
+      78,
+      78,
+      75,
+      76,
+      79,
+      78,
+      79,
+      77,
+      77,
+      78,
+      79,
+      78,
+      77,
+      77,
+      78,
+      79,
+      79,
+      78,
+      77,
+      78,
+      78,
+      80,
+      79,
+      78,
+      80,
+      81,
+      77,
+      79,
+      77,
+      77,
+      77,
+      77,
+      77,
+      71,
+      76,
+      80,
+      79,
+      77,
+      77,
+      73,
+      73,
+      69,
+      68,
+      69,
+      70,
+      70,
+      70,
+      67,
+      67,
+      67,
+      60,
+      62,
+      64,
+      67,
+      62,
+      63,
+      66,
+      65,
+      57,
+      60,
+      59,
+      61,
+      60,
+      64,
+      60,
+      50,
+      52,
+      42,
+      43,
+      53,
+      59,
+      61,
+      58,
+      55,
+      50,
+      45,
+      23,
+      30,
+      18,
+      21,
+      17,
+      26,
+      20,
+      21,
+      34,
+      41,
+      45,
+      41,
+      40,
+      39,
+      40,
+      39,
+      40,
+      41,
+      41,
+      40,
+      38,
+      39,
+      37,
+      21,
+      16,
+      16,
+      23,
+      32,
+      33,
+      36,
+      35,
+      24,
+      41,
+      52,
+      54,
+      57,
+      56,
+      56,
+      57,
+      59,
+      61,
+      64,
+      68,
+      68,
+      72,
+      74,
+      75,
+      75,
+      74,
+      73,
+      72,
+      72,
+      72,
+      69,
+      69,
+      68,
+      68,
+      68,
+      68,
+      67,
+      68,
+      68,
+      68,
+      68,
+      69,
+      69,
+      70,
+      69,
+      69,
+      68,
+      68,
+      65,
+      65,
+      67,
+      68,
+      71,
+      73,
+      73,
+      78,
+      86,
+      89,
+      91,
+      91,
+      90,
+      89,
+      89,
+      88,
+      87,
+      89,
+      90,
+      89,
+      90,
+      91,
+      89,
+      88,
+      86,
+      86,
+      88,
+      89,
+      86,
+      85,
+      83,
+      81,
+      82,
+      83,
+      85,
+      86,
+      85,
+      84,
+      85,
+      85,
+      84,
+      83,
+      82,
+      79,
+      79,
+      79,
+      81,
+      82,
+      86,
+      88,
+      91,
+      93,
+      92,
+      92,
+      94,
+      91,
+      88,
+      87,
+      87,
+      84,
+      81,
+      79,
+      77,
+      77,
+      79,
+      80,
+      78,
+      76,
+      75,
+      73,
+      73,
+      73,
+      73,
+      75,
+      74,
+      77,
+      76,
+      74,
+      69,
+      68,
+      68,
+      66,
+      68,
+      70,
+      70,
+      72,
+      74,
+      71,
+      70,
+      70,
+      70,
+      68,
+      68,
+      72,
+      74,
+      75,
+      81,
+      85,
+      87,
+      89,
+      90,
+      89,
+      90,
+      90,
+      91,
+      89,
+      91,
+      91,
+      92,
+      92,
+      90,
+      92,
+      91,
+      91,
+      90,
+      86,
+      83,
+      82,
+      78,
+      75,
+      70,
+      68,
+      63,
+      41,
+      23,
+      14,
+      20,
+      21,
+      22,
+      26,
+      23,
+      23,
+      26,
+      26,
+      25
+    ],
+    "altitude": [
+      49,
+      50,
+      49,
+      50,
+      50,
+      50,
+      49,
+      49,
+      49,
+      49,
+      49,
+      50,
+      49,
+      49,
+      49,
+      48,
+      48,
+      48,
+      48,
+      48,
+      47,
+      46,
+      47,
+      47,
+      46,
+      45,
+      45,
+      44,
+      45,
+      45,
+      44,
+      43,
+      43,
+      43,
+      42,
+      42,
+      43,
+      43,
+      43,
+      43,
+      41,
+      41,
+      41,
+      41,
+      41,
+      41,
+      40,
+      40,
+      41,
+      40,
+      40,
+      41,
+      40,
+      39,
+      39,
+      39,
+      38,
+      39,
+      39,
+      39,
+      40,
+      38,
+      34,
+      32,
+      33,
+      32,
+      31,
+      31,
+      30,
+      29,
+      27,
+      24,
+      24,
+      24,
+      24,
+      24,
+      24,
+      25,
+      25,
+      25,
+      26,
+      28,
+      31,
+      34,
+      34,
+      36,
+      36,
+      36,
+      35,
+      36,
+      37,
+      39,
+      40,
+      40,
+      40,
+      40,
+      40,
+      37,
+      36,
+      35,
+      35,
+      35,
+      33,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      24,
+      23,
+      22,
+      23,
+      24,
+      23,
+      23,
+      24,
+      25,
+      24,
+      24,
+      24,
+      23,
+      25,
+      26,
+      26,
+      26,
+      26,
+      26,
+      25,
+      25,
+      22,
+      23,
+      24,
+      24,
+      24,
+      23,
+      23,
+      23,
+      23,
+      23,
+      21,
+      21,
+      21,
+      20,
+      19,
+      18,
+      18,
+      17,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      17,
+      16,
+      16,
+      16,
+      16,
+      15,
+      16,
+      16,
+      16,
+      17,
+      15,
+      15,
+      14,
+      14,
+      13,
+      13,
+      13,
+      13,
+      13,
+      12,
+      13,
+      13,
+      13,
+      14,
+      14,
+      14,
+      15,
+      15,
+      15,
+      15,
+      17,
+      17,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      19,
+      19,
+      19,
+      19,
+      20,
+      20,
+      21,
+      19,
+      20,
+      21,
+      21,
+      22,
+      22,
+      22,
+      23,
+      23,
+      23,
+      24,
+      24,
+      24,
+      25,
+      25,
+      25,
+      25,
+      25,
+      25,
+      26,
+      26,
+      26,
+      26,
+      26,
+      26,
+      26,
+      25,
+      26,
+      28,
+      30,
+      30,
+      29,
+      29,
+      29,
+      30,
+      30,
+      30,
+      29,
+      30,
+      30,
+      30,
+      30,
+      30,
+      31,
+      30,
+      30,
+      30,
+      31,
+      31,
+      32,
+      33,
+      35,
+      35,
+      35,
+      34,
+      34,
+      35,
+      35,
+      36,
+      36,
+      36,
+      36,
+      36,
+      36,
+      33,
+      32,
+      31,
+      32,
+      32,
+      31,
+      31,
+      31,
+      31,
+      31,
+      31,
+      31,
+      30,
+      30,
+      30,
+      30,
+      29,
+      29,
+      29,
+      29,
+      29,
+      29,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      30,
+      29,
+      26,
+      26,
+      26,
+      27,
+      27,
+      27,
+      28,
+      28,
+      28,
+      29,
+      29,
+      29,
+      29,
+      28,
+      28,
+      28,
+      27,
+      27,
+      27,
+      27,
+      27,
+      27,
+      28,
+      28,
+      28,
+      28,
+      28,
+      28,
+      29,
+      29,
+      30,
+      30,
+      31,
+      30,
+      30,
+      28,
+      27,
+      27,
+      26,
+      25,
+      25,
+      25,
+      25,
+      24,
+      24,
+      24,
+      24,
+      24,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      24,
+      24,
+      24,
+      24,
+      24,
+      24,
+      23,
+      23,
+      23,
+      22,
+      22,
+      22,
+      20,
+      20,
+      20,
+      19,
+      18,
+      18,
+      18,
+      17,
+      16,
+      16,
+      17,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      18,
+      17,
+      17,
+      17,
+      17,
+      17,
+      16,
+      15,
+      15,
+      16,
+      15,
+      15,
+      15,
+      15,
+      16,
+      16,
+      15,
+      14,
+      15,
+      14,
+      15,
+      14,
+      13,
+      13,
+      13,
+      13,
+      14,
+      15,
+      15,
+      14,
+      14,
+      14,
+      14,
+      14,
+      14,
+      14,
+      14,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      22,
+      22,
+      22,
+      22,
+      22,
+      22,
+      22,
+      22,
+      23,
+      23,
+      23,
+      23,
+      23,
+      23,
+      24,
+      24,
+      25,
+      27,
+      28,
+      28,
+      29,
+      29,
+      29,
+      29,
+      29,
+      29,
+      30,
+      30,
+      30,
+      30,
+      30,
+      31,
+      31,
+      31,
+      31,
+      32,
+      31,
+      30,
+      28,
+      28,
+      27,
+      26,
+      26,
+      26,
+      26,
+      25,
+      25,
+      26,
+      25,
+      25,
+      25,
+      25,
+      25,
+      25,
+      25,
+      23,
+      20,
+      16,
+      13,
+      11,
+      10,
+      10,
+      10,
+      9,
+      9,
+      9,
+      9,
+      8,
+      8,
+      7,
+      6,
+      5,
+      6,
+      5,
+      5,
+      4,
+      4,
+      3,
+      22,
+      22,
+      22,
+      21,
+      20,
+      20,
+      20,
+      20,
+      20,
+      20,
+      19,
+      19,
+      18,
+      16,
+      15,
+      13,
+      12,
+      12,
+      12,
+      11,
+      12,
+      11,
+      11,
+      11,
+      10,
+      10,
+      10,
+      9,
+      9,
+      9,
+      9,
+      8,
+      8,
+      8,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      9,
+      9,
+      9,
+      9,
+      10,
+      10,
+      10,
+      11,
+      11,
+      12,
+      12,
+      13,
+      11,
+      11,
+      11,
+      8,
+      7,
+      6,
+      6,
+      6,
+      7,
+      7,
+      7,
+      7,
+      7,
+      9,
+      10,
+      10,
+      10,
+      9,
+      10,
+      9,
+      9,
+      9,
+      9,
+      10,
+      12,
+      12,
+      12,
+      11,
+      11,
+      12,
+      11,
+      11,
+      12,
+      12,
+      12,
+      12,
+      12,
+      12,
+      12,
+      12,
+      12,
+      13,
+      13,
+      13,
+      13,
+      13,
+      13,
+      13,
+      13,
+      13,
+      10,
+      9,
+      9,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      10,
+      10,
+      12,
+      14,
+      13,
+      11,
+      9,
+      9,
+      6,
+      6,
+      7,
+      7,
+      7,
+      8,
+      8,
+      9,
+      9,
+      10,
+      10,
+      10,
+      10,
+      9,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      8,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      9,
+      10,
+      10,
+      9,
+      10,
+      10,
+      10,
+      10,
+      10,
+      11,
+      11,
+      11,
+      11,
+      11,
+      12,
+      12,
+      12,
+      11,
+      12,
+      11,
+      6,
+      3,
+      5,
+      4,
+      3,
+      2,
+      4,
+      3,
+      3,
+      3,
+      3,
+      5,
+      3,
+      1,
+      -4,
+      0,
+      0,
+      -1,
+      -2,
+      -4,
+      -3,
+      -4,
+      -6,
+      -8,
+      -8,
+      -8,
+      -10,
+      4,
+      2,
+      1,
+      1,
+      -2,
+      -3,
+      -3,
+      -4,
+      -2,
+      -3,
+      -3,
+      -4,
+      -5,
+      -5,
+      -6,
+      -6,
+      -6,
+      -7,
+      -8,
+      -8,
+      -8,
+      -7,
+      -6,
+      -10,
+      -11,
+      -11,
+      -10,
+      -10,
+      -10,
+      -11,
+      -12,
+      -11,
+      -11,
+      -12,
+      -12,
+      -12,
+      -12,
+      -12,
+      -13,
+      -13,
+      -13,
+      -12,
+      -13,
+      -12,
+      -12,
+      -12,
+      -12,
+      -12,
+      -12,
+      -13,
+      -12,
+      -12,
+      -11,
+      -11,
+      -11,
+      -10,
+      -10,
+      -9,
+      -8,
+      -9,
+      -9,
+      -9,
+      -10,
+      -9,
+      -9,
+      -8,
+      -7,
+      -6,
+      -6,
+      -5,
+      -5,
+      -6,
+      -6,
+      -5,
+      -7,
+      -8,
+      -9,
+      -8,
+      -7,
+      -8,
+      -8,
+      -7,
+      -8,
+      -8,
+      -7,
+      -8,
+      -8,
+      -9,
+      -10,
+      -10,
+      -11,
+      -11,
+      -12,
+      -12,
+      -11,
+      -11,
+      -11,
+      -8,
+      -6,
+      -6,
+      -6,
+      -7,
+      -7,
+      -8,
+      -9,
+      -10,
+      -11,
+      -10,
+      -10,
+      -10,
+      -8,
+      -7,
+      -6,
+      -6,
+      -7,
+      -9,
+      -10,
+      -12,
+      -13,
+      -14,
+      -15,
+      -15,
+      -16,
+      -17,
+      -17,
+      -16,
+      -15,
+      -13,
+      -12,
+      -11,
+      -11,
+      -10,
+      -11,
+      -11,
+      -10,
+      -9,
+      -9,
+      -8,
+      -9,
+      -9,
+      -9,
+      -9,
+      -10,
+      -10,
+      -11,
+      -10,
+      -11,
+      -11,
+      -10,
+      -10,
+      -10,
+      -10,
+      -10,
+      -10,
+      -10,
+      -10,
+      -10,
+      -10,
+      -9,
+      -9,
+      -9,
+      -8,
+      -8,
+      -9,
+      -10,
+      -10,
+      -11,
+      -12,
+      -12,
+      -13,
+      -14,
+      -13,
+      -14,
+      -14,
+      -15,
+      -15,
+      -15,
+      -15,
+      -13,
+      -14,
+      -14,
+      -13,
+      -13,
+      -11,
+      -11,
+      -12,
+      -12,
+      -12,
+      -12,
+      -12,
+      -12,
+      -12,
+      -13,
+      -11,
+      -11,
+      -12,
+      -13,
+      -12,
+      -11,
+      -9,
+      -9,
+      -10,
+      -10
+    ],
+    "heading": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "horizontal_accuracy": [
+      87,
+      79,
+      59,
+      43,
+      54,
+      55,
+      40,
+      33,
+      30,
+      32,
+      29,
+      33,
+      40,
+      53,
+      77,
+      92,
+      93,
+      103,
+      114,
+      139,
+      121,
+      130,
+      127,
+      102,
+      46,
+      28,
+      24,
+      22,
+      21,
+      28,
+      29,
+      30,
+      29,
+      30,
+      22,
+      21,
+      26,
+      30,
+      41,
+      61,
+      39,
+      34,
+      36,
+      39,
+      38,
+      38,
+      35,
+      41,
+      45,
+      44,
+      45,
+      45,
+      50,
+      45,
+      27,
+      22,
+      24,
+      25,
+      24,
+      22,
+      20,
+      15,
+      14,
+      13,
+      15,
+      15,
+      17,
+      22,
+      29,
+      34,
+      30,
+      29,
+      24,
+      23,
+      26,
+      27,
+      22,
+      19,
+      18,
+      15,
+      13,
+      13,
+      11,
+      10,
+      8,
+      9,
+      11,
+      13,
+      13,
+      16,
+      20,
+      23,
+      24,
+      27,
+      27,
+      27,
+      31,
+      27,
+      25,
+      22,
+      17,
+      18,
+      17,
+      14,
+      15,
+      13,
+      14,
+      18,
+      16,
+      11,
+      10,
+      11,
+      12,
+      12,
+      11,
+      11,
+      12,
+      14,
+      17,
+      17,
+      17,
+      12,
+      9,
+      10,
+      11,
+      13,
+      16,
+      16,
+      15,
+      16,
+      14,
+      12,
+      10,
+      11,
+      10,
+      11,
+      13,
+      12,
+      13,
+      13,
+      14,
+      15,
+      16,
+      17,
+      18,
+      18,
+      15,
+      15,
+      15,
+      17,
+      19,
+      20,
+      20,
+      19,
+      18,
+      16,
+      13,
+      13,
+      13,
+      12,
+      12,
+      13,
+      14,
+      15,
+      19,
+      20,
+      20,
+      21,
+      22,
+      20,
+      19,
+      20,
+      23,
+      22,
+      21,
+      20,
+      26,
+      30,
+      35,
+      40,
+      47,
+      50,
+      64,
+      84,
+      109,
+      138,
+      147,
+      140,
+      136,
+      129,
+      116,
+      97,
+      86,
+      70,
+      65,
+      62,
+      58,
+      52,
+      29,
+      25,
+      24,
+      25,
+      29,
+      21,
+      21,
+      19,
+      16,
+      15,
+      15,
+      16,
+      16,
+      18,
+      21,
+      19,
+      18,
+      18,
+      17,
+      16,
+      16,
+      13,
+      12,
+      11,
+      11,
+      12,
+      13,
+      15,
+      18,
+      16,
+      16,
+      17,
+      16,
+      14,
+      12,
+      12,
+      13,
+      15,
+      12,
+      11,
+      10,
+      9,
+      10,
+      9,
+      10,
+      9,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      8,
+      9,
+      9,
+      9,
+      10,
+      11,
+      14,
+      14,
+      14,
+      14,
+      18,
+      20,
+      22,
+      22,
+      21,
+      24,
+      28,
+      27,
+      28,
+      21,
+      19,
+      18,
+      18,
+      18,
+      19,
+      18,
+      17,
+      18,
+      22,
+      21,
+      20,
+      19,
+      16,
+      15,
+      17,
+      18,
+      23,
+      26,
+      33,
+      37,
+      40,
+      36,
+      30,
+      26,
+      24,
+      24,
+      30,
+      32,
+      35,
+      37,
+      50,
+      77,
+      113,
+      117,
+      123,
+      129,
+      107,
+      87,
+      70,
+      62,
+      62,
+      79,
+      98,
+      96,
+      80,
+      62,
+      48,
+      34,
+      28,
+      27,
+      31,
+      28,
+      21,
+      21,
+      24,
+      34,
+      38,
+      41,
+      46,
+      40,
+      38,
+      36,
+      29,
+      21,
+      18,
+      19,
+      17,
+      18,
+      15,
+      14,
+      14,
+      14,
+      14,
+      12,
+      13,
+      11,
+      9,
+      9,
+      8,
+      8,
+      8,
+      10,
+      11,
+      14,
+      18,
+      20,
+      22,
+      19,
+      24,
+      23,
+      22,
+      27,
+      32,
+      42,
+      50,
+      37,
+      26,
+      17,
+      16,
+      13,
+      12,
+      10,
+      10,
+      9,
+      8,
+      8,
+      9,
+      10,
+      11,
+      13,
+      14,
+      16,
+      20,
+      20,
+      16,
+      15,
+      15,
+      18,
+      21,
+      27,
+      29,
+      22,
+      19,
+      19,
+      19,
+      23,
+      33,
+      25,
+      22,
+      21,
+      18,
+      18,
+      16,
+      15,
+      15,
+      17,
+      19,
+      17,
+      17,
+      16,
+      14,
+      10,
+      9,
+      10,
+      10,
+      10,
+      11,
+      13,
+      19,
+      21,
+      19,
+      18,
+      17,
+      16,
+      16,
+      18,
+      19,
+      17,
+      19,
+      24,
+      27,
+      28,
+      32,
+      32,
+      28,
+      24,
+      19,
+      17,
+      18,
+      21,
+      26,
+      24,
+      25,
+      22,
+      19,
+      15,
+      13,
+      11,
+      10,
+      11,
+      12,
+      14,
+      14,
+      16,
+      24,
+      42,
+      58,
+      61,
+      59,
+      56,
+      51,
+      46,
+      43,
+      42,
+      40,
+      40,
+      34,
+      31,
+      26,
+      24,
+      23,
+      28,
+      26,
+      21,
+      17,
+      16,
+      14,
+      13,
+      12,
+      13,
+      15,
+      14,
+      12,
+      12,
+      13,
+      16,
+      16,
+      15,
+      17,
+      21,
+      25,
+      24,
+      19,
+      14,
+      11,
+      11,
+      11,
+      9,
+      10,
+      10,
+      12,
+      13,
+      15,
+      18,
+      19,
+      20,
+      20,
+      18,
+      14,
+      13,
+      11,
+      12,
+      12,
+      12,
+      13,
+      12,
+      11,
+      10,
+      10,
+      9,
+      8,
+      9,
+      11,
+      14,
+      15,
+      12,
+      10,
+      10,
+      11,
+      12,
+      12,
+      13,
+      13,
+      14,
+      12,
+      12,
+      10,
+      9,
+      9,
+      9,
+      9,
+      10,
+      9,
+      10,
+      12,
+      14,
+      18,
+      17,
+      23,
+      17,
+      15,
+      11,
+      10,
+      11,
+      14,
+      17,
+      21,
+      27,
+      51,
+      47,
+      48,
+      54,
+      56,
+      49,
+      49,
+      53,
+      56,
+      57,
+      46,
+      39,
+      36,
+      30,
+      24,
+      20,
+      15,
+      12,
+      11,
+      9,
+      7,
+      7,
+      6,
+      6,
+      6,
+      7,
+      8,
+      10,
+      12,
+      14,
+      14,
+      15,
+      13,
+      12,
+      11,
+      11,
+      11,
+      12,
+      14,
+      15,
+      16,
+      17,
+      14,
+      16,
+      21,
+      26,
+      29,
+      28,
+      30,
+      29,
+      30,
+      35,
+      38,
+      42,
+      45,
+      39,
+      32,
+      26,
+      20,
+      16,
+      15,
+      15,
+      17,
+      17,
+      14,
+      16,
+      16,
+      19,
+      21,
+      20,
+      20,
+      23,
+      26,
+      30,
+      39,
+      36,
+      33,
+      33,
+      34,
+      36,
+      40,
+      37,
+      48,
+      66,
+      78,
+      87,
+      76,
+      77,
+      88,
+      107,
+      148,
+      131,
+      63,
+      37,
+      25,
+      19,
+      15,
+      13,
+      12,
+      11,
+      9,
+      7,
+      7,
+      8,
+      9,
+      9,
+      9,
+      11,
+      12,
+      13,
+      12,
+      9,
+      9,
+      10,
+      13,
+      15,
+      19,
+      24,
+      36,
+      52,
+      77,
+      64,
+      47,
+      28,
+      23,
+      15,
+      14,
+      13,
+      13,
+      13,
+      11,
+      10,
+      10,
+      9,
+      11,
+      10,
+      10,
+      11,
+      10,
+      9,
+      8,
+      9,
+      10,
+      11,
+      12,
+      14,
+      15,
+      15,
+      12,
+      12,
+      15,
+      18,
+      25,
+      34,
+      39,
+      36,
+      28,
+      22,
+      22,
+      21,
+      17,
+      15,
+      13,
+      11,
+      11,
+      10,
+      10,
+      10,
+      9,
+      11,
+      11,
+      13,
+      14,
+      11,
+      10,
+      8,
+      8,
+      8,
+      9,
+      9,
+      10,
+      9,
+      8,
+      8,
+      8,
+      9,
+      10,
+      9,
+      8,
+      9,
+      9,
+      10,
+      10,
+      11,
+      12,
+      10,
+      10,
+      11,
+      11,
+      12,
+      14,
+      17,
+      20,
+      24,
+      18,
+      15,
+      16,
+      19,
+      20,
+      22,
+      24,
+      22,
+      24,
+      27,
+      32,
+      48,
+      69,
+      99,
+      138,
+      58,
+      18,
+      14,
+      10,
+      9,
+      8,
+      9,
+      7,
+      7,
+      6,
+      6,
+      7,
+      6,
+      6,
+      7,
+      7,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3
+    ],
+    "vertical_accuracy": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "raw": []
+  },
+  "bbox": [
+    [
+      -124.09386637,
+      44.34348063
+    ],
+    [
+      -124.09386637,
+      44.56531305
+    ],
+    [
+      -123.26148271,
+      44.56531305
+    ],
+    [
+      -123.26148271,
+      44.34348063
+    ]
+  ]
+};
+
+
+var blodgett = {
+  "type": "Feature",
+  "geometry": {
+    "type": "MultiPoint",
+    "coordinates": [
+      [
+        -123.4726739,
+        44.61131534
+      ],
+      [
+        -123.47325805,
+        44.61110968
+      ],
+      [
+        -123.47380499,
+        44.61089318
+      ],
+      [
+        -123.47437815,
+        44.61066423
+      ],
+      [
+        -123.47491991,
+        44.61043665
+      ],
+      [
+        -123.47548853,
+        44.61020037
+      ],
+      [
+        -123.47603784,
+        44.60996711
+      ],
+      [
+        -123.47659947,
+        44.60972882
+      ],
+      [
+        -123.4771447,
+        44.60950072
+      ],
+      [
+        -123.47770618,
+        44.60926437
+      ],
+      [
+        -123.47824884,
+        44.6090372
+      ],
+      [
+        -123.47880755,
+        44.60879594
+      ],
+      [
+        -123.47934622,
+        44.60857145
+      ],
+      [
+        -123.47990482,
+        44.60833384
+      ],
+      [
+        -123.48044567,
+        44.60810436
+      ],
+      [
+        -123.48100883,
+        44.60787689
+      ],
+      [
+        -123.48156337,
+        44.60765309
+      ],
+      [
+        -123.4821308,
+        44.60742613
+      ],
+      [
+        -123.48268061,
+        44.60720139
+      ],
+      [
+        -123.48324368,
+        44.60697042
+      ],
+      [
+        -123.48378774,
+        44.60674539
+      ],
+      [
+        -123.48435032,
+        44.60651595
+      ],
+      [
+        -123.48489649,
+        44.60629136
+      ],
+      [
+        -123.48545811,
+        44.60606201
+      ],
+      [
+        -123.48600065,
+        44.60583838
+      ],
+      [
+        -123.48656231,
+        44.60561176
+      ],
+      [
+        -123.4871044,
+        44.6053915
+      ],
+      [
+        -123.48767304,
+        44.60516673
+      ],
+      [
+        -123.48823125,
+        44.60495777
+      ],
+      [
+        -123.48882081,
+        44.60475065
+      ],
+      [
+        -123.48938509,
+        44.60456089
+      ],
+      [
+        -123.48997798,
+        44.60437439
+      ],
+      [
+        -123.49055132,
+        44.60420302
+      ],
+      [
+        -123.49114345,
+        44.60403242
+      ],
+      [
+        -123.49173052,
+        44.60387203
+      ],
+      [
+        -123.49233402,
+        44.60370008
+      ],
+      [
+        -123.49291634,
+        44.60353731
+      ],
+      [
+        -123.49351753,
+        44.60336769
+      ],
+      [
+        -123.49409706,
+        44.60320811
+      ],
+      [
+        -123.49469848,
+        44.60303879
+      ],
+      [
+        -123.4952793,
+        44.60287419
+      ],
+      [
+        -123.49587967,
+        44.60270246
+      ],
+      [
+        -123.49646569,
+        44.60253735
+      ],
+      [
+        -123.49707388,
+        44.60236732
+      ],
+      [
+        -123.49766092,
+        44.60219932
+      ],
+      [
+        -123.49826778,
+        44.60202536
+      ],
+      [
+        -123.4988548,
+        44.60186441
+      ],
+      [
+        -123.49945563,
+        44.60169573
+      ],
+      [
+        -123.50003981,
+        44.60152716
+      ],
+      [
+        -123.50064558,
+        44.60135566
+      ],
+      [
+        -123.5012233,
+        44.60118864
+      ],
+      [
+        -123.50182718,
+        44.60101511
+      ],
+      [
+        -123.50240563,
+        44.6008521
+      ],
+      [
+        -123.50300378,
+        44.60068172
+      ],
+      [
+        -123.50358512,
+        44.60051965
+      ],
+      [
+        -123.50417703,
+        44.60035323
+      ],
+      [
+        -123.50475501,
+        44.60019449
+      ],
+      [
+        -123.50536255,
+        44.6000267
+      ],
+      [
+        -123.50594015,
+        44.59986248
+      ],
+      [
+        -123.50654511,
+        44.59969236
+      ],
+      [
+        -123.50712867,
+        44.59952885
+      ],
+      [
+        -123.50773639,
+        44.59936041
+      ],
+      [
+        -123.50832404,
+        44.59919805
+      ],
+      [
+        -123.50892944,
+        44.59903455
+      ],
+      [
+        -123.50951996,
+        44.59887113
+      ],
+      [
+        -123.51012794,
+        44.59870279
+      ],
+      [
+        -123.5107048,
+        44.59855259
+      ],
+      [
+        -123.51131828,
+        44.59842473
+      ],
+      [
+        -123.51192378,
+        44.59833126
+      ],
+      [
+        -123.51256335,
+        44.5982544
+      ],
+      [
+        -123.5131799,
+        44.59818905
+      ],
+      [
+        -123.5138227,
+        44.59813502
+      ],
+      [
+        -123.51443986,
+        44.59808594
+      ],
+      [
+        -123.51508176,
+        44.59803367
+      ],
+      [
+        -123.51570485,
+        44.59798313
+      ],
+      [
+        -123.51634622,
+        44.59791916
+      ],
+      [
+        -123.51694811,
+        44.59784723
+      ],
+      [
+        -123.51752796,
+        44.59775271
+      ],
+      [
+        -123.51805394,
+        44.59763496
+      ],
+      [
+        -123.51855631,
+        44.59748786
+      ],
+      [
+        -123.51901543,
+        44.59730926
+      ],
+      [
+        -123.51947774,
+        44.5971021
+      ],
+      [
+        -123.51992478,
+        44.59687589
+      ],
+      [
+        -123.52039429,
+        44.59663225
+      ],
+      [
+        -123.5208592,
+        44.59639096
+      ],
+      [
+        -123.52133027,
+        44.59615191
+      ],
+      [
+        -123.52180719,
+        44.59591883
+      ],
+      [
+        -123.52231744,
+        44.5956585
+      ],
+      [
+        -123.52281085,
+        44.5954201
+      ],
+      [
+        -123.52330497,
+        44.59517156
+      ],
+      [
+        -123.52377938,
+        44.59493591
+      ],
+      [
+        -123.52424608,
+        44.59469516
+      ],
+      [
+        -123.52470466,
+        44.59445259
+      ],
+      [
+        -123.5251911,
+        44.59419782
+      ],
+      [
+        -123.52563584,
+        44.59398169
+      ],
+      [
+        -123.52608529,
+        44.59373351
+      ],
+      [
+        -123.5265565,
+        44.59351366
+      ],
+      [
+        -123.52703768,
+        44.59328545
+      ],
+      [
+        -123.52751427,
+        44.59304794
+      ],
+      [
+        -123.52797651,
+        44.59282008
+      ],
+      [
+        -123.52839667,
+        44.59264412
+      ],
+      [
+        -123.52874993,
+        44.59251794
+      ],
+      [
+        -123.52897358,
+        44.5922975
+      ],
+      [
+        -123.52879289,
+        44.59201283
+      ],
+      [
+        -123.52892756,
+        44.5916957
+      ],
+      [
+        -123.52923475,
+        44.59148973
+      ],
+      [
+        -123.52957974,
+        44.59125988
+      ],
+      [
+        -123.52990259,
+        44.59105059
+      ],
+      [
+        -123.53028588,
+        44.59086139
+      ],
+      [
+        -123.53076248,
+        44.59065468
+      ],
+      [
+        -123.53108611,
+        44.59050477
+      ],
+      [
+        -123.5314337,
+        44.59037435
+      ],
+      [
+        -123.5318166,
+        44.59023238
+      ],
+      [
+        -123.53219288,
+        44.59009044
+      ],
+      [
+        -123.5325797,
+        44.58993735
+      ],
+      [
+        -123.53290477,
+        44.58977143
+      ],
+      [
+        -123.53317997,
+        44.58957685
+      ],
+      [
+        -123.53333376,
+        44.58932192
+      ],
+      [
+        -123.53338855,
+        44.58904031
+      ],
+      [
+        -123.53330467,
+        44.58874879
+      ],
+      [
+        -123.5332362,
+        44.58844845
+      ],
+      [
+        -123.53337165,
+        44.58805362
+      ],
+      [
+        -123.53380601,
+        44.58778268
+      ],
+      [
+        -123.53424988,
+        44.58780669
+      ],
+      [
+        -123.53463559,
+        44.58789168
+      ],
+      [
+        -123.53502068,
+        44.58802744
+      ],
+      [
+        -123.53539127,
+        44.5881617
+      ],
+      [
+        -123.53573086,
+        44.58837847
+      ],
+      [
+        -123.53599543,
+        44.58861259
+      ],
+      [
+        -123.53623492,
+        44.58886852
+      ],
+      [
+        -123.53649668,
+        44.58910118
+      ],
+      [
+        -123.53684472,
+        44.58926159
+      ],
+      [
+        -123.53723683,
+        44.58931694
+      ],
+      [
+        -123.5376183,
+        44.58933306
+      ],
+      [
+        -123.53813455,
+        44.58916333
+      ],
+      [
+        -123.53847195,
+        44.58900644
+      ],
+      [
+        -123.53882567,
+        44.5888712
+      ],
+      [
+        -123.53921184,
+        44.58870254
+      ],
+      [
+        -123.53953866,
+        44.58856015
+      ],
+      [
+        -123.5398878,
+        44.58839803
+      ],
+      [
+        -123.54015108,
+        44.58819292
+      ],
+      [
+        -123.54034133,
+        44.58792612
+      ],
+      [
+        -123.5406222,
+        44.5875603
+      ],
+      [
+        -123.54085569,
+        44.58732734
+      ],
+      [
+        -123.5411684,
+        44.58713623
+      ],
+      [
+        -123.54158171,
+        44.58699983
+      ],
+      [
+        -123.54198831,
+        44.58695187
+      ],
+      [
+        -123.54242526,
+        44.58691293
+      ],
+      [
+        -123.54283848,
+        44.58689246
+      ],
+      [
+        -123.54327688,
+        44.58687232
+      ],
+      [
+        -123.54369849,
+        44.58682329
+      ],
+      [
+        -123.54412155,
+        44.58687981
+      ],
+      [
+        -123.54454644,
+        44.58691434
+      ],
+      [
+        -123.54492339,
+        44.58701763
+      ],
+      [
+        -123.54531597,
+        44.58712419
+      ],
+      [
+        -123.54571817,
+        44.58726377
+      ],
+      [
+        -123.54611995,
+        44.58739636
+      ],
+      [
+        -123.5464923,
+        44.58752415
+      ],
+      [
+        -123.54695914,
+        44.58771653
+      ],
+      [
+        -123.5471577,
+        44.58800807
+      ],
+      [
+        -123.54727514,
+        44.58831498
+      ],
+      [
+        -123.54731925,
+        44.58870443
+      ],
+      [
+        -123.54742897,
+        44.58897801
+      ],
+      [
+        -123.54766472,
+        44.58919527
+      ],
+      [
+        -123.54800842,
+        44.58936985
+      ],
+      [
+        -123.54851382,
+        44.58939424
+      ],
+      [
+        -123.5488953,
+        44.58937817
+      ],
+      [
+        -123.54930626,
+        44.58936143
+      ],
+      [
+        -123.54984489,
+        44.58931528
+      ],
+      [
+        -123.55033325,
+        44.58943195
+      ],
+      [
+        -123.55060032,
+        44.58965149
+      ],
+      [
+        -123.55079195,
+        44.58990844
+      ],
+      [
+        -123.55096365,
+        44.59017384
+      ],
+      [
+        -123.55111886,
+        44.59046676
+      ],
+      [
+        -123.55099135,
+        44.59084246
+      ],
+      [
+        -123.55056759,
+        44.59106572
+      ],
+      [
+        -123.55030835,
+        44.59138598
+      ],
+      [
+        -123.55044528,
+        44.59177206
+      ],
+      [
+        -123.55063441,
+        44.59201916
+      ],
+      [
+        -123.55083656,
+        44.59228091
+      ],
+      [
+        -123.55101038,
+        44.59254162
+      ],
+      [
+        -123.5511609,
+        44.59282469
+      ],
+      [
+        -123.55129598,
+        44.59310918
+      ],
+      [
+        -123.55142059,
+        44.59342225
+      ],
+      [
+        -123.55154807,
+        44.59373561
+      ],
+      [
+        -123.55167515,
+        44.59406911
+      ],
+      [
+        -123.55179935,
+        44.59440146
+      ],
+      [
+        -123.55190772,
+        44.59475043
+      ],
+      [
+        -123.5519773,
+        44.59509436
+      ],
+      [
+        -123.55199784,
+        44.59544852
+      ],
+      [
+        -123.55200419,
+        44.59578613
+      ],
+      [
+        -123.55200427,
+        44.59611833
+      ],
+      [
+        -123.55200809,
+        44.59644304
+      ],
+      [
+        -123.55202854,
+        44.59677264
+      ],
+      [
+        -123.55207432,
+        44.59709713
+      ],
+      [
+        -123.5521334,
+        44.59742518
+      ],
+      [
+        -123.55218682,
+        44.59774311
+      ],
+      [
+        -123.55224071,
+        44.59807476
+      ],
+      [
+        -123.55227429,
+        44.59839827
+      ],
+      [
+        -123.55229844,
+        44.59872023
+      ],
+      [
+        -123.55229346,
+        44.59901937
+      ],
+      [
+        -123.55228899,
+        44.59938772
+      ],
+      [
+        -123.55219875,
+        44.59971713
+      ],
+      [
+        -123.55179556,
+        44.59980373
+      ],
+      [
+        -123.55142269,
+        44.59956685
+      ],
+      [
+        -123.55112657,
+        44.59935323
+      ],
+      [
+        -123.5508253,
+        44.59911157
+      ],
+      [
+        -123.55051661,
+        44.59883203
+      ],
+      [
+        -123.55023111,
+        44.59854197
+      ],
+      [
+        -123.54995515,
+        44.59822422
+      ],
+      [
+        -123.54972763,
+        44.59789858
+      ],
+      [
+        -123.54951177,
+        44.59754172
+      ],
+      [
+        -123.54931426,
+        44.5971796
+      ],
+      [
+        -123.54910697,
+        44.59680099
+      ],
+      [
+        -123.54889791,
+        44.5964287
+      ],
+      [
+        -123.54868045,
+        44.59604162
+      ],
+      [
+        -123.54847295,
+        44.5956608
+      ],
+      [
+        -123.54824383,
+        44.59525814
+      ],
+      [
+        -123.5480192,
+        44.59486202
+      ],
+      [
+        -123.54779384,
+        44.59445254
+      ],
+      [
+        -123.54757662,
+        44.59404413
+      ],
+      [
+        -123.54734627,
+        44.59363929
+      ],
+      [
+        -123.54711864,
+        44.59324973
+      ],
+      [
+        -123.54688835,
+        44.59284274
+      ],
+      [
+        -123.54665391,
+        44.59244601
+      ],
+      [
+        -123.54640041,
+        44.59202795
+      ],
+      [
+        -123.54611371,
+        44.59163934
+      ],
+      [
+        -123.54575166,
+        44.59125998
+      ],
+      [
+        -123.54534236,
+        44.59092239
+      ],
+      [
+        -123.54486171,
+        44.59061837
+      ],
+      [
+        -123.54432008,
+        44.59039343
+      ],
+      [
+        -123.54370363,
+        44.59019951
+      ],
+      [
+        -123.54306408,
+        44.59007829
+      ],
+      [
+        -123.54238731,
+        44.59002638
+      ],
+      [
+        -123.54173718,
+        44.59001383
+      ],
+      [
+        -123.54102195,
+        44.59011876
+      ],
+      [
+        -123.54033504,
+        44.59022022
+      ],
+      [
+        -123.53962496,
+        44.59033154
+      ],
+      [
+        -123.53894969,
+        44.59044024
+      ],
+      [
+        -123.53825826,
+        44.59055709
+      ],
+      [
+        -123.53758376,
+        44.59067048
+      ],
+      [
+        -123.53688616,
+        44.59078509
+      ],
+      [
+        -123.53620994,
+        44.59089548
+      ],
+      [
+        -123.53550121,
+        44.5910112
+      ],
+      [
+        -123.53480607,
+        44.59112855
+      ],
+      [
+        -123.53407875,
+        44.59125272
+      ],
+      [
+        -123.53337569,
+        44.59136856
+      ],
+      [
+        -123.53267969,
+        44.59148196
+      ],
+      [
+        -123.53200701,
+        44.59159951
+      ],
+      [
+        -123.53136089,
+        44.59170819
+      ],
+      [
+        -123.53076799,
+        44.59182835
+      ],
+      [
+        -123.53022528,
+        44.59195191
+      ],
+      [
+        -123.52979059,
+        44.5920527
+      ],
+      [
+        -123.52941068,
+        44.59215249
+      ],
+      [
+        -123.52897054,
+        44.59218613
+      ],
+      [
+        -123.52871637,
+        44.59192182
+      ],
+      [
+        -123.52891346,
+        44.59164215
+      ],
+      [
+        -123.52922981,
+        44.59144538
+      ],
+      [
+        -123.52955429,
+        44.59123068
+      ],
+      [
+        -123.52977467,
+        44.59098445
+      ],
+      [
+        -123.52949492,
+        44.59067093
+      ],
+      [
+        -123.52920535,
+        44.59039549
+      ],
+      [
+        -123.52897051,
+        44.59018279
+      ],
+      [
+        -123.52869717,
+        44.5899692
+      ],
+      [
+        -123.52840998,
+        44.58966795
+      ],
+      [
+        -123.52831607,
+        44.58929611
+      ],
+      [
+        -123.52832006,
+        44.58893539
+      ],
+      [
+        -123.52824713,
+        44.58862156
+      ],
+      [
+        -123.52793436,
+        44.58840654
+      ],
+      [
+        -123.52755339,
+        44.58828619
+      ],
+      [
+        -123.52715044,
+        44.58817323
+      ],
+      [
+        -123.52680595,
+        44.58793904
+      ],
+      [
+        -123.52651586,
+        44.58766127
+      ],
+      [
+        -123.52627461,
+        44.58744922
+      ],
+      [
+        -123.52597571,
+        44.58713446
+      ],
+      [
+        -123.52585647,
+        44.58678768
+      ],
+      [
+        -123.52595901,
+        44.58641341
+      ],
+      [
+        -123.52602591,
+        44.58613874
+      ],
+      [
+        -123.52611415,
+        44.58587507
+      ],
+      [
+        -123.52631877,
+        44.58552485
+      ],
+      [
+        -123.52648557,
+        44.58522106
+      ],
+      [
+        -123.52655748,
+        44.58490527
+      ],
+      [
+        -123.52657427,
+        44.58458412
+      ],
+      [
+        -123.52661375,
+        44.58427732
+      ],
+      [
+        -123.52669767,
+        44.58396139
+      ],
+      [
+        -123.5268376,
+        44.58362124
+      ],
+      [
+        -123.52705939,
+        44.58325719
+      ],
+      [
+        -123.5273098,
+        44.58290819
+      ],
+      [
+        -123.52752268,
+        44.58259882
+      ],
+      [
+        -123.52771632,
+        44.58227507
+      ],
+      [
+        -123.52769539,
+        44.58199324
+      ],
+      [
+        -123.52760182,
+        44.58167437
+      ],
+      [
+        -123.52748639,
+        44.58134256
+      ],
+      [
+        -123.52728786,
+        44.5810439
+      ],
+      [
+        -123.52687793,
+        44.58077246
+      ],
+      [
+        -123.52652303,
+        44.58053126
+      ],
+      [
+        -123.52642731,
+        44.58017148
+      ],
+      [
+        -123.52642213,
+        44.57983704
+      ],
+      [
+        -123.52651442,
+        44.57953063
+      ],
+      [
+        -123.52673887,
+        44.57923303
+      ],
+      [
+        -123.5271593,
+        44.57904891
+      ],
+      [
+        -123.52769112,
+        44.57900546
+      ],
+      [
+        -123.52816685,
+        44.578944
+      ],
+      [
+        -123.52854449,
+        44.57877342
+      ],
+      [
+        -123.52879697,
+        44.57853675
+      ],
+      [
+        -123.52890666,
+        44.57825475
+      ],
+      [
+        -123.52891006,
+        44.57795805
+      ],
+      [
+        -123.52887927,
+        44.57765851
+      ],
+      [
+        -123.52884034,
+        44.57735974
+      ],
+      [
+        -123.52879513,
+        44.57706483
+      ],
+      [
+        -123.52879253,
+        44.57674758
+      ],
+      [
+        -123.52894317,
+        44.57649634
+      ],
+      [
+        -123.52916378,
+        44.57622337
+      ],
+      [
+        -123.52934924,
+        44.57592562
+      ],
+      [
+        -123.5295458,
+        44.57562303
+      ],
+      [
+        -123.52964617,
+        44.57529809
+      ],
+      [
+        -123.52974823,
+        44.57498846
+      ],
+      [
+        -123.52983482,
+        44.57466644
+      ],
+      [
+        -123.52986719,
+        44.5743592
+      ],
+      [
+        -123.5298585,
+        44.57400211
+      ],
+      [
+        -123.52986954,
+        44.57371044
+      ],
+      [
+        -123.53003531,
+        44.57336404
+      ],
+      [
+        -123.53041247,
+        44.57310889
+      ],
+      [
+        -123.53072336,
+        44.57287917
+      ],
+      [
+        -123.53098829,
+        44.57255024
+      ],
+      [
+        -123.53107834,
+        44.57223724
+      ],
+      [
+        -123.53113164,
+        44.57195277
+      ],
+      [
+        -123.53113648,
+        44.57166363
+      ],
+      [
+        -123.53107433,
+        44.57139067
+      ],
+      [
+        -123.53097579,
+        44.57105878
+      ],
+      [
+        -123.53079564,
+        44.57070936
+      ],
+      [
+        -123.53059643,
+        44.57038862
+      ],
+      [
+        -123.5304522,
+        44.57012234
+      ],
+      [
+        -123.53034784,
+        44.56977272
+      ],
+      [
+        -123.53027707,
+        44.56943436
+      ],
+      [
+        -123.53024816,
+        44.56910352
+      ],
+      [
+        -123.53026784,
+        44.56878667
+      ],
+      [
+        -123.53019702,
+        44.56849177
+      ],
+      [
+        -123.53008224,
+        44.56818725
+      ],
+      [
+        -123.52992845,
+        44.56785143
+      ],
+      [
+        -123.52980705,
+        44.56751603
+      ],
+      [
+        -123.52965392,
+        44.56714958
+      ],
+      [
+        -123.52949535,
+        44.5667989
+      ],
+      [
+        -123.52932483,
+        44.56644254
+      ],
+      [
+        -123.52918672,
+        44.5661223
+      ],
+      [
+        -123.5290462,
+        44.56580736
+      ],
+      [
+        -123.52890368,
+        44.56547945
+      ],
+      [
+        -123.52882116,
+        44.56513149
+      ],
+      [
+        -123.52882701,
+        44.56480659
+      ],
+      [
+        -123.52886996,
+        44.56450703
+      ],
+      [
+        -123.52900071,
+        44.56422308
+      ],
+      [
+        -123.52918755,
+        44.56394995
+      ],
+      [
+        -123.52939526,
+        44.56371349
+      ],
+      [
+        -123.52970029,
+        44.56343505
+      ],
+      [
+        -123.53002416,
+        44.56318889
+      ],
+      [
+        -123.53040051,
+        44.56303206
+      ],
+      [
+        -123.5308555,
+        44.5631295
+      ],
+      [
+        -123.53120306,
+        44.5632589
+      ],
+      [
+        -123.53158303,
+        44.56346995
+      ],
+      [
+        -123.53196578,
+        44.56365091
+      ],
+      [
+        -123.53231339,
+        44.56378398
+      ],
+      [
+        -123.53264953,
+        44.5640366
+      ],
+      [
+        -123.53309731,
+        44.56416631
+      ],
+      [
+        -123.53348628,
+        44.56422255
+      ],
+      [
+        -123.53389177,
+        44.56411839
+      ],
+      [
+        -123.53420491,
+        44.563891
+      ],
+      [
+        -123.53447142,
+        44.56362175
+      ],
+      [
+        -123.53460366,
+        44.56331469
+      ],
+      [
+        -123.53476471,
+        44.5630422
+      ],
+      [
+        -123.53494019,
+        44.56276909
+      ],
+      [
+        -123.53508752,
+        44.5624967
+      ],
+      [
+        -123.53497026,
+        44.56221225
+      ],
+      [
+        -123.53467565,
+        44.56202401
+      ],
+      [
+        -123.53460362,
+        44.56175498
+      ],
+      [
+        -123.53465344,
+        44.56143093
+      ],
+      [
+        -123.53457566,
+        44.56112069
+      ],
+      [
+        -123.53451811,
+        44.56082463
+      ],
+      [
+        -123.53472419,
+        44.56055549
+      ],
+      [
+        -123.53516305,
+        44.56050714
+      ],
+      [
+        -123.53545884,
+        44.56076109
+      ],
+      [
+        -123.53576676,
+        44.56092946
+      ],
+      [
+        -123.5360372,
+        44.56072062
+      ],
+      [
+        -123.53637677,
+        44.56051392
+      ],
+      [
+        -123.53672595,
+        44.56041031
+      ],
+      [
+        -123.53715821,
+        44.56040795
+      ],
+      [
+        -123.53732558,
+        44.56066606
+      ],
+      [
+        -123.53726161,
+        44.56097487
+      ],
+      [
+        -123.5372463,
+        44.56125271
+      ],
+      [
+        -123.53702633,
+        44.56152448
+      ],
+      [
+        -123.53686953,
+        44.56177831
+      ],
+      [
+        -123.53685645,
+        44.56207542
+      ]
+    ]
+  },
+  "properties": {
+    "time": [
+      1369786338000,
+      1369786340000,
+      1369786342000,
+      1369786344000,
+      1369786346000,
+      1369786348000,
+      1369786350000,
+      1369786352000,
+      1369786354000,
+      1369786356000,
+      1369786358000,
+      1369786360000,
+      1369786362000,
+      1369786364000,
+      1369786366000,
+      1369786368000,
+      1369786370000,
+      1369786372000,
+      1369786374000,
+      1369786376000,
+      1369786378000,
+      1369786380000,
+      1369786382000,
+      1369786384000,
+      1369786386000,
+      1369786388000,
+      1369786390000,
+      1369786392000,
+      1369786394000,
+      1369786396000,
+      1369786398000,
+      1369786400000,
+      1369786402000,
+      1369786404000,
+      1369786406000,
+      1369786408000,
+      1369786410000,
+      1369786412000,
+      1369786414000,
+      1369786416000,
+      1369786418000,
+      1369786420000,
+      1369786422000,
+      1369786424000,
+      1369786426000,
+      1369786428000,
+      1369786430000,
+      1369786432000,
+      1369786434000,
+      1369786436000,
+      1369786438000,
+      1369786440000,
+      1369786442000,
+      1369786444000,
+      1369786446000,
+      1369786448000,
+      1369786450000,
+      1369786452000,
+      1369786454000,
+      1369786456000,
+      1369786458000,
+      1369786460000,
+      1369786462000,
+      1369786464000,
+      1369786466000,
+      1369786468000,
+      1369786470000,
+      1369786472000,
+      1369786474000,
+      1369786476000,
+      1369786478000,
+      1369786480000,
+      1369786482000,
+      1369786484000,
+      1369786486000,
+      1369786488000,
+      1369786490000,
+      1369786492000,
+      1369786494000,
+      1369786496000,
+      1369786498000,
+      1369786500000,
+      1369786502000,
+      1369786504000,
+      1369786506000,
+      1369786508000,
+      1369786510000,
+      1369786512000,
+      1369786514000,
+      1369786516000,
+      1369786518000,
+      1369786520000,
+      1369786522000,
+      1369786524000,
+      1369786526000,
+      1369786528000,
+      1369786530000,
+      1369786532000,
+      1369786534000,
+      1369786536000,
+      1369786538000,
+      1369786540000,
+      1369786545000,
+      1369786549000,
+      1369786554000,
+      1369786557000,
+      1369786560000,
+      1369786563000,
+      1369786566000,
+      1369786569000,
+      1369786571000,
+      1369786573000,
+      1369786575000,
+      1369786577000,
+      1369786579000,
+      1369786581000,
+      1369786583000,
+      1369786585000,
+      1369786587000,
+      1369786589000,
+      1369786591000,
+      1369786594000,
+      1369786597000,
+      1369786599000,
+      1369786601000,
+      1369786603000,
+      1369786605000,
+      1369786607000,
+      1369786609000,
+      1369786611000,
+      1369786613000,
+      1369786615000,
+      1369786617000,
+      1369786619000,
+      1369786622000,
+      1369786624000,
+      1369786626000,
+      1369786628000,
+      1369786630000,
+      1369786632000,
+      1369786634000,
+      1369786636000,
+      1369786639000,
+      1369786641000,
+      1369786643000,
+      1369786645000,
+      1369786647000,
+      1369786649000,
+      1369786651000,
+      1369786653000,
+      1369786655000,
+      1369786657000,
+      1369786659000,
+      1369786661000,
+      1369786663000,
+      1369786665000,
+      1369786667000,
+      1369786669000,
+      1369786672000,
+      1369786675000,
+      1369786678000,
+      1369786681000,
+      1369786683000,
+      1369786685000,
+      1369786687000,
+      1369786690000,
+      1369786692000,
+      1369786694000,
+      1369786697000,
+      1369786700000,
+      1369786702000,
+      1369786704000,
+      1369786706000,
+      1369786708000,
+      1369786711000,
+      1369786714000,
+      1369786717000,
+      1369786720000,
+      1369786722000,
+      1369786724000,
+      1369786726000,
+      1369786728000,
+      1369786730000,
+      1369786732000,
+      1369786734000,
+      1369786736000,
+      1369786738000,
+      1369786740000,
+      1369786742000,
+      1369786744000,
+      1369786746000,
+      1369786748000,
+      1369786750000,
+      1369786752000,
+      1369786754000,
+      1369786756000,
+      1369786758000,
+      1369786760000,
+      1369786762000,
+      1369786764000,
+      1369786766000,
+      1369786769000,
+      1369786773000,
+      1369786786000,
+      1369786789000,
+      1369786791000,
+      1369786793000,
+      1369786795000,
+      1369786797000,
+      1369786799000,
+      1369786801000,
+      1369786803000,
+      1369786805000,
+      1369786807000,
+      1369786809000,
+      1369786811000,
+      1369786813000,
+      1369786815000,
+      1369786817000,
+      1369786819000,
+      1369786821000,
+      1369786823000,
+      1369786825000,
+      1369786827000,
+      1369786829000,
+      1369786831000,
+      1369786833000,
+      1369786835000,
+      1369786837000,
+      1369786839000,
+      1369786841000,
+      1369786843000,
+      1369786845000,
+      1369786847000,
+      1369786849000,
+      1369786851000,
+      1369786853000,
+      1369786855000,
+      1369786857000,
+      1369786859000,
+      1369786861000,
+      1369786863000,
+      1369786865000,
+      1369786867000,
+      1369786869000,
+      1369786871000,
+      1369786873000,
+      1369786875000,
+      1369786877000,
+      1369786879000,
+      1369786881000,
+      1369786883000,
+      1369786885000,
+      1369786887000,
+      1369786890000,
+      1369786894000,
+      1369786900000,
+      1369786903000,
+      1369786906000,
+      1369786911000,
+      1369786915000,
+      1369786918000,
+      1369786920000,
+      1369786922000,
+      1369786925000,
+      1369786928000,
+      1369786931000,
+      1369786934000,
+      1369786937000,
+      1369786940000,
+      1369786943000,
+      1369786946000,
+      1369786949000,
+      1369786951000,
+      1369786954000,
+      1369786957000,
+      1369786960000,
+      1369786962000,
+      1369786964000,
+      1369786967000,
+      1369786970000,
+      1369786973000,
+      1369786976000,
+      1369786979000,
+      1369786982000,
+      1369786985000,
+      1369786988000,
+      1369786991000,
+      1369786994000,
+      1369786997000,
+      1369787000000,
+      1369787003000,
+      1369787006000,
+      1369787009000,
+      1369787012000,
+      1369787015000,
+      1369787018000,
+      1369787021000,
+      1369787024000,
+      1369787027000,
+      1369787030000,
+      1369787033000,
+      1369787036000,
+      1369787039000,
+      1369787042000,
+      1369787045000,
+      1369787048000,
+      1369787051000,
+      1369787054000,
+      1369787057000,
+      1369787061000,
+      1369787064000,
+      1369787067000,
+      1369787070000,
+      1369787073000,
+      1369787076000,
+      1369787079000,
+      1369787082000,
+      1369787085000,
+      1369787088000,
+      1369787091000,
+      1369787095000,
+      1369787099000,
+      1369787102000,
+      1369787105000,
+      1369787108000,
+      1369787111000,
+      1369787116000,
+      1369787119000,
+      1369787122000,
+      1369787125000,
+      1369787128000,
+      1369787131000,
+      1369787134000,
+      1369787137000,
+      1369787140000,
+      1369787143000,
+      1369787146000,
+      1369787149000,
+      1369787152000,
+      1369787155000,
+      1369787158000,
+      1369787161000,
+      1369787164000,
+      1369787167000,
+      1369787170000,
+      1369787173000,
+      1369787176000,
+      1369787179000,
+      1369787182000,
+      1369787185000,
+      1369787188000,
+      1369787191000,
+      1369787195000,
+      1369787199000,
+      1369787204000,
+      1369787208000,
+      1369787211000,
+      1369787215000,
+      1369787219000,
+      1369787223000,
+      1369787227000,
+      1369787231000,
+      1369787235000,
+      1369787239000,
+      1369787243000,
+      1369787247000,
+      1369787251000,
+      1369787254000,
+      1369787257000,
+      1369787260000,
+      1369787264000,
+      1369787268000,
+      1369787273000,
+      1369787278000,
+      1369787283000,
+      1369787287000,
+      1369787291000,
+      1369787298000,
+      1369787303000,
+      1369787309000,
+      1369787315000,
+      1369787320000,
+      1369787324000,
+      1369787330000,
+      1369787341000,
+      1369787348000,
+      1369787353000,
+      1369787359000,
+      1369787364000,
+      1369787370000
+    ],
+    "speed": [
+      91,
+      91,
+      91,
+      91,
+      91,
+      92,
+      91,
+      92,
+      92,
+      92,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      93,
+      92,
+      91,
+      92,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      90,
+      90,
+      91,
+      92,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      92,
+      92,
+      92,
+      92,
+      91,
+      92,
+      92,
+      92,
+      92,
+      91,
+      91,
+      90,
+      90,
+      90,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      92,
+      91,
+      91,
+      91,
+      91,
+      91,
+      91,
+      90,
+      90,
+      90,
+      91,
+      87,
+      83,
+      80,
+      76,
+      77,
+      78,
+      80,
+      82,
+      84,
+      82,
+      83,
+      87,
+      86,
+      84,
+      84,
+      83,
+      82,
+      81,
+      79,
+      80,
+      81,
+      84,
+      84,
+      77,
+      68,
+      52,
+      24,
+      32,
+      33,
+      43,
+      43,
+      41,
+      47,
+      52,
+      55,
+      58,
+      59,
+      60,
+      61,
+      59,
+      55,
+      53,
+      53,
+      54,
+      56,
+      55,
+      56,
+      59,
+      61,
+      61,
+      59,
+      63,
+      63,
+      61,
+      60,
+      59,
+      58,
+      53,
+      52,
+      55,
+      57,
+      56,
+      54,
+      53,
+      52,
+      56,
+      54,
+      54,
+      56,
+      59,
+      58,
+      60,
+      59,
+      59,
+      60,
+      60,
+      58,
+      59,
+      59,
+      62,
+      61,
+      58,
+      50,
+      42,
+      41,
+      48,
+      49,
+      51,
+      50,
+      50,
+      50,
+      55,
+      50,
+      49,
+      53,
+      58,
+      60,
+      61,
+      50,
+      49,
+      50,
+      55,
+      58,
+      59,
+      59,
+      60,
+      62,
+      64,
+      67,
+      68,
+      69,
+      70,
+      69,
+      69,
+      68,
+      66,
+      65,
+      65,
+      65,
+      66,
+      66,
+      66,
+      65,
+      64,
+      59,
+      45,
+      31,
+      31,
+      53,
+      61,
+      67,
+      71,
+      73,
+      74,
+      75,
+      77,
+      79,
+      80,
+      81,
+      82,
+      84,
+      85,
+      86,
+      86,
+      86,
+      86,
+      86,
+      86,
+      88,
+      90,
+      91,
+      90,
+      91,
+      91,
+      93,
+      94,
+      95,
+      97,
+      95,
+      100,
+      102,
+      102,
+      101,
+      101,
+      100,
+      101,
+      102,
+      103,
+      104,
+      104,
+      104,
+      102,
+      96,
+      93,
+      89,
+      79,
+      65,
+      55,
+      38,
+      29,
+      29,
+      43,
+      40,
+      23,
+      44,
+      47,
+      51,
+      52,
+      47,
+      46,
+      46,
+      40,
+      41,
+      37,
+      40,
+      42,
+      45,
+      50,
+      49,
+      43,
+      54,
+      57,
+      53,
+      51,
+      45,
+      43,
+      41,
+      41,
+      44,
+      48,
+      53,
+      51,
+      46,
+      47,
+      38,
+      41,
+      43,
+      41,
+      46,
+      44,
+      49,
+      42,
+      41,
+      42,
+      45,
+      48,
+      41,
+      40,
+      40,
+      40,
+      40,
+      41,
+      40,
+      37,
+      30,
+      37,
+      44,
+      43,
+      43,
+      42,
+      40,
+      40,
+      39,
+      41,
+      32,
+      35,
+      38,
+      40,
+      42,
+      39,
+      34,
+      24,
+      33,
+      38,
+      46,
+      44,
+      38,
+      42,
+      43,
+      40,
+      38,
+      40,
+      43,
+      45,
+      44,
+      48,
+      49,
+      48,
+      46,
+      41,
+      44,
+      42,
+      41,
+      39,
+      41,
+      40,
+      36,
+      38,
+      31,
+      25,
+      37,
+      38,
+      33,
+      30,
+      25,
+      32,
+      31,
+      28,
+      27,
+      30,
+      30,
+      30,
+      36,
+      36,
+      32,
+      30,
+      26,
+      24,
+      24,
+      24,
+      26,
+      24,
+      15,
+      24,
+      16,
+      19,
+      24,
+      24,
+      13,
+      15,
+      16,
+      22,
+      23,
+      23,
+      18
+    ],
+    "altitude": [
+      210,
+      212,
+      213,
+      214,
+      215,
+      215,
+      217,
+      217,
+      217,
+      216,
+      216,
+      214,
+      212,
+      212,
+      211,
+      209,
+      208,
+      207,
+      206,
+      205,
+      203,
+      202,
+      200,
+      199,
+      198,
+      197,
+      195,
+      194,
+      193,
+      191,
+      190,
+      189,
+      188,
+      188,
+      188,
+      187,
+      187,
+      187,
+      187,
+      187,
+      188,
+      188,
+      187,
+      186,
+      186,
+      185,
+      184,
+      183,
+      181,
+      180,
+      177,
+      175,
+      173,
+      171,
+      169,
+      168,
+      167,
+      167,
+      167,
+      167,
+      167,
+      167,
+      166,
+      166,
+      166,
+      166,
+      166,
+      165,
+      165,
+      166,
+      166,
+      166,
+      167,
+      168,
+      169,
+      172,
+      173,
+      174,
+      174,
+      173,
+      174,
+      173,
+      173,
+      173,
+      174,
+      174,
+      174,
+      176,
+      176,
+      179,
+      179,
+      180,
+      181,
+      181,
+      182,
+      182,
+      182,
+      185,
+      190,
+      193,
+      196,
+      198,
+      199,
+      197,
+      200,
+      202,
+      203,
+      204,
+      203,
+      202,
+      205,
+      204,
+      204,
+      203,
+      203,
+      206,
+      206,
+      206,
+      207,
+      207,
+      208,
+      209,
+      209,
+      208,
+      207,
+      208,
+      208,
+      208,
+      209,
+      210,
+      209,
+      208,
+      207,
+      206,
+      207,
+      207,
+      207,
+      205,
+      205,
+      204,
+      204,
+      203,
+      204,
+      207,
+      207,
+      207,
+      206,
+      205,
+      206,
+      205,
+      205,
+      205,
+      206,
+      204,
+      204,
+      203,
+      204,
+      204,
+      205,
+      206,
+      204,
+      206,
+      203,
+      201,
+      200,
+      200,
+      199,
+      197,
+      196,
+      193,
+      192,
+      189,
+      187,
+      185,
+      181,
+      179,
+      176,
+      175,
+      175,
+      175,
+      175,
+      175,
+      174,
+      173,
+      172,
+      171,
+      170,
+      170,
+      170,
+      170,
+      170,
+      170,
+      170,
+      170,
+      170,
+      170,
+      170,
+      171,
+      171,
+      171,
+      171,
+      171,
+      170,
+      173,
+      174,
+      174,
+      174,
+      175,
+      175,
+      176,
+      178,
+      180,
+      181,
+      183,
+      184,
+      186,
+      188,
+      190,
+      193,
+      195,
+      199,
+      201,
+      205,
+      208,
+      211,
+      214,
+      217,
+      220,
+      223,
+      225,
+      228,
+      230,
+      231,
+      233,
+      233,
+      233,
+      233,
+      233,
+      233,
+      233,
+      233,
+      233,
+      232,
+      231,
+      228,
+      227,
+      227,
+      224,
+      222,
+      219,
+      218,
+      217,
+      216,
+      215,
+      218,
+      213,
+      211,
+      211,
+      211,
+      210,
+      208,
+      208,
+      207,
+      207,
+      206,
+      205,
+      203,
+      198,
+      195,
+      194,
+      194,
+      193,
+      192,
+      192,
+      192,
+      189,
+      187,
+      184,
+      183,
+      184,
+      185,
+      186,
+      188,
+      189,
+      191,
+      190,
+      189,
+      190,
+      191,
+      191,
+      190,
+      189,
+      188,
+      188,
+      186,
+      182,
+      182,
+      181,
+      178,
+      178,
+      176,
+      175,
+      174,
+      174,
+      176,
+      178,
+      178,
+      180,
+      182,
+      183,
+      185,
+      185,
+      186,
+      187,
+      188,
+      191,
+      192,
+      194,
+      196,
+      198,
+      201,
+      201,
+      203,
+      203,
+      202,
+      205,
+      207,
+      208,
+      210,
+      208,
+      214,
+      215,
+      215,
+      217,
+      218,
+      220,
+      225,
+      226,
+      228,
+      229,
+      232,
+      236,
+      237,
+      237,
+      239,
+      241,
+      244,
+      251,
+      256,
+      260,
+      263,
+      266,
+      270,
+      274,
+      275,
+      277,
+      280,
+      283,
+      291,
+      293,
+      296,
+      299,
+      301,
+      302,
+      300,
+      301,
+      301,
+      302,
+      304,
+      309,
+      314,
+      315,
+      315,
+      319,
+      323,
+      323,
+      324,
+      326,
+      331,
+      336,
+      342,
+      341,
+      341,
+      341,
+      348,
+      358,
+      357,
+      354,
+      350,
+      348,
+      345
+    ],
+    "heading": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "horizontal_accuracy": [
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      6,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      5,
+      6,
+      6,
+      5,
+      5,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      5,
+      5,
+      5,
+      6,
+      4,
+      4,
+      5,
+      4,
+      5,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3
+    ],
+    "vertical_accuracy": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "raw": []
+  },
+  "bbox": [
+    [
+      -123.55229844,
+      44.53998806
+    ],
+    [
+      -123.55229844,
+      44.61162111
+    ],
+    [
+      -123.2630238,
+      44.61162111
+    ],
+    [
+      -123.2630238,
+      44.53998806
+    ]
+  ]
+};
+
+
+export var blueMountain = {
+  "type": "Feature",
+  "geometry": {
+    "type": "MultiPoint",
+    "coordinates": [
+      [
+        -123.53419413,
+        44.44846036
+      ],
+      [
+        -123.53381284,
+        44.44829373
+      ],
+      [
+        -123.53343352,
+        44.44818949
+      ],
+      [
+        -123.53298023,
+        44.44814064
+      ],
+      [
+        -123.5327835,
+        44.44789808
+      ],
+      [
+        -123.5329506,
+        44.44761937
+      ],
+      [
+        -123.53299048,
+        44.44730117
+      ],
+      [
+        -123.5329335,
+        44.44701515
+      ],
+      [
+        -123.53268419,
+        44.44675772
+      ],
+      [
+        -123.53225519,
+        44.44671947
+      ],
+      [
+        -123.53195203,
+        44.44690975
+      ],
+      [
+        -123.5315528,
+        44.4470722
+      ],
+      [
+        -123.53111341,
+        44.4471649
+      ],
+      [
+        -123.5306834,
+        44.44707353
+      ],
+      [
+        -123.53028806,
+        44.44701421
+      ],
+      [
+        -123.52985568,
+        44.44706455
+      ],
+      [
+        -123.52942199,
+        44.44713915
+      ],
+      [
+        -123.52902306,
+        44.44714372
+      ],
+      [
+        -123.52896568,
+        44.44686255
+      ],
+      [
+        -123.52887663,
+        44.44656563
+      ],
+      [
+        -123.52863498,
+        44.44629686
+      ],
+      [
+        -123.52836217,
+        44.44608164
+      ],
+      [
+        -123.52805438,
+        44.44592235
+      ],
+      [
+        -123.52763225,
+        44.44587754
+      ],
+      [
+        -123.52728003,
+        44.44606546
+      ],
+      [
+        -123.5269313,
+        44.44623332
+      ],
+      [
+        -123.5265928,
+        44.44639236
+      ],
+      [
+        -123.52620208,
+        44.44659536
+      ],
+      [
+        -123.52581483,
+        44.4468132
+      ],
+      [
+        -123.52565284,
+        44.44712151
+      ],
+      [
+        -123.52560373,
+        44.44740588
+      ],
+      [
+        -123.52520134,
+        44.44746959
+      ],
+      [
+        -123.52482686,
+        44.44737694
+      ],
+      [
+        -123.52459998,
+        44.44759944
+      ],
+      [
+        -123.52435837,
+        44.44783929
+      ],
+      [
+        -123.52399093,
+        44.44793341
+      ],
+      [
+        -123.52361889,
+        44.44787906
+      ],
+      [
+        -123.52322523,
+        44.44788791
+      ],
+      [
+        -123.52288342,
+        44.44806315
+      ],
+      [
+        -123.52273285,
+        44.44835438
+      ],
+      [
+        -123.52278504,
+        44.44868758
+      ],
+      [
+        -123.52286971,
+        44.44896285
+      ],
+      [
+        -123.5225013,
+        44.44908612
+      ],
+      [
+        -123.52219888,
+        44.44931737
+      ],
+      [
+        -123.52218206,
+        44.44971045
+      ],
+      [
+        -123.52216096,
+        44.45003968
+      ],
+      [
+        -123.52210579,
+        44.45036754
+      ],
+      [
+        -123.52200874,
+        44.45072822
+      ],
+      [
+        -123.52188665,
+        44.45108239
+      ],
+      [
+        -123.52177045,
+        44.45145089
+      ],
+      [
+        -123.52158308,
+        44.45178246
+      ],
+      [
+        -123.5213522,
+        44.4520931
+      ],
+      [
+        -123.52105255,
+        44.4523533
+      ],
+      [
+        -123.52073032,
+        44.45265432
+      ],
+      [
+        -123.52041521,
+        44.45293263
+      ],
+      [
+        -123.52010342,
+        44.45320514
+      ],
+      [
+        -123.51978108,
+        44.45346881
+      ],
+      [
+        -123.51941338,
+        44.45374232
+      ],
+      [
+        -123.51903923,
+        44.45403738
+      ],
+      [
+        -123.51863259,
+        44.45430926
+      ],
+      [
+        -123.51824027,
+        44.45460112
+      ],
+      [
+        -123.51783332,
+        44.45489729
+      ],
+      [
+        -123.51743283,
+        44.45524323
+      ],
+      [
+        -123.51705127,
+        44.45557667
+      ],
+      [
+        -123.5166625,
+        44.45588291
+      ],
+      [
+        -123.51628416,
+        44.45618871
+      ],
+      [
+        -123.51587876,
+        44.45650217
+      ],
+      [
+        -123.51549292,
+        44.45683375
+      ],
+      [
+        -123.51507826,
+        44.45712873
+      ],
+      [
+        -123.51469472,
+        44.45744978
+      ],
+      [
+        -123.51432388,
+        44.45778281
+      ],
+      [
+        -123.51393063,
+        44.45809571
+      ],
+      [
+        -123.51351984,
+        44.45838653
+      ],
+      [
+        -123.51311625,
+        44.45870269
+      ],
+      [
+        -123.5126846,
+        44.45902488
+      ],
+      [
+        -123.51224449,
+        44.4593297
+      ],
+      [
+        -123.51182114,
+        44.45965224
+      ],
+      [
+        -123.51139681,
+        44.45998978
+      ],
+      [
+        -123.51100657,
+        44.46039183
+      ],
+      [
+        -123.51068793,
+        44.46078552
+      ],
+      [
+        -123.51042926,
+        44.4611615
+      ],
+      [
+        -123.51019559,
+        44.46156331
+      ],
+      [
+        -123.50997676,
+        44.46197088
+      ],
+      [
+        -123.50978888,
+        44.46235804
+      ],
+      [
+        -123.50959372,
+        44.46274775
+      ],
+      [
+        -123.50939179,
+        44.46311654
+      ],
+      [
+        -123.50914028,
+        44.46345097
+      ],
+      [
+        -123.50879793,
+        44.46376362
+      ],
+      [
+        -123.50846542,
+        44.46403161
+      ],
+      [
+        -123.50805715,
+        44.46429749
+      ],
+      [
+        -123.50762774,
+        44.46452493
+      ],
+      [
+        -123.50720604,
+        44.46478915
+      ],
+      [
+        -123.50681002,
+        44.4650275
+      ],
+      [
+        -123.50641952,
+        44.46524518
+      ],
+      [
+        -123.50601847,
+        44.46546837
+      ],
+      [
+        -123.50564861,
+        44.46571778
+      ],
+      [
+        -123.50525235,
+        44.46594082
+      ],
+      [
+        -123.50483738,
+        44.46615885
+      ],
+      [
+        -123.50440776,
+        44.46640188
+      ],
+      [
+        -123.50398792,
+        44.46664723
+      ],
+      [
+        -123.50356869,
+        44.46687857
+      ],
+      [
+        -123.50313721,
+        44.46711236
+      ],
+      [
+        -123.50267743,
+        44.46733801
+      ],
+      [
+        -123.50220748,
+        44.46751411
+      ],
+      [
+        -123.50169064,
+        44.46766522
+      ],
+      [
+        -123.50110905,
+        44.4677847
+      ],
+      [
+        -123.50056532,
+        44.46793836
+      ],
+      [
+        -123.50002051,
+        44.46804969
+      ],
+      [
+        -123.49947751,
+        44.46819392
+      ],
+      [
+        -123.49888851,
+        44.46832657
+      ],
+      [
+        -123.49827849,
+        44.46849368
+      ],
+      [
+        -123.49768057,
+        44.46862737
+      ],
+      [
+        -123.4970703,
+        44.4687847
+      ],
+      [
+        -123.49649895,
+        44.4689753
+      ],
+      [
+        -123.49590962,
+        44.46915526
+      ],
+      [
+        -123.49529171,
+        44.4693359
+      ],
+      [
+        -123.49471703,
+        44.46950555
+      ],
+      [
+        -123.49411539,
+        44.46970434
+      ],
+      [
+        -123.49351402,
+        44.46990582
+      ],
+      [
+        -123.49290771,
+        44.47008827
+      ],
+      [
+        -123.49237054,
+        44.47019286
+      ],
+      [
+        -123.49186323,
+        44.470242
+      ],
+      [
+        -123.49133869,
+        44.47023903
+      ],
+      [
+        -123.49094497,
+        44.47027716
+      ],
+      [
+        -123.49059296,
+        44.4704188
+      ],
+      [
+        -123.49029437,
+        44.47071776
+      ],
+      [
+        -123.49036358,
+        44.47106533
+      ],
+      [
+        -123.49037239,
+        44.47134924
+      ],
+      [
+        -123.49047839,
+        44.47164269
+      ],
+      [
+        -123.49056068,
+        44.47193989
+      ],
+      [
+        -123.4903717,
+        44.47220252
+      ],
+      [
+        -123.48998077,
+        44.47212971
+      ],
+      [
+        -123.48972823,
+        44.47181912
+      ],
+      [
+        -123.48967989,
+        44.47153325
+      ],
+      [
+        -123.48951931,
+        44.47112581
+      ],
+      [
+        -123.48930051,
+        44.47075298
+      ],
+      [
+        -123.4890369,
+        44.47040849
+      ],
+      [
+        -123.48894081,
+        44.47012359
+      ],
+      [
+        -123.48878368,
+        44.4698688
+      ],
+      [
+        -123.48839756,
+        44.46956559
+      ],
+      [
+        -123.48803549,
+        44.46945802
+      ],
+      [
+        -123.48762981,
+        44.46933827
+      ],
+      [
+        -123.48724165,
+        44.46917626
+      ],
+      [
+        -123.48689163,
+        44.46895031
+      ],
+      [
+        -123.48656064,
+        44.46881079
+      ],
+      [
+        -123.48594314,
+        44.4686039
+      ],
+      [
+        -123.48553524,
+        44.46849856
+      ],
+      [
+        -123.48498655,
+        44.46850837
+      ],
+      [
+        -123.48451839,
+        44.4685038
+      ],
+      [
+        -123.48394826,
+        44.46866895
+      ],
+      [
+        -123.48339586,
+        44.46881091
+      ],
+      [
+        -123.48322059,
+        44.46907296
+      ],
+      [
+        -123.48318377,
+        44.46942539
+      ],
+      [
+        -123.48333477,
+        44.46968075
+      ],
+      [
+        -123.48345774,
+        44.46995679
+      ],
+      [
+        -123.48360142,
+        44.4702466
+      ],
+      [
+        -123.48380632,
+        44.4705046
+      ],
+      [
+        -123.48418839,
+        44.47080155
+      ],
+      [
+        -123.48439166,
+        44.47116598
+      ],
+      [
+        -123.48452516,
+        44.47151095
+      ],
+      [
+        -123.48425576,
+        44.47181609
+      ],
+      [
+        -123.48386667,
+        44.47178401
+      ],
+      [
+        -123.48382124,
+        44.47151588
+      ],
+      [
+        -123.48357563,
+        44.47130048
+      ],
+      [
+        -123.48331028,
+        44.47109653
+      ],
+      [
+        -123.4830036,
+        44.47090461
+      ],
+      [
+        -123.48259634,
+        44.47078733
+      ],
+      [
+        -123.48215527,
+        44.47079664
+      ],
+      [
+        -123.48171895,
+        44.47111372
+      ],
+      [
+        -123.48144049,
+        44.47135732
+      ],
+      [
+        -123.4811733,
+        44.47164071
+      ],
+      [
+        -123.4808184,
+        44.4719011
+      ],
+      [
+        -123.48044525,
+        44.47211378
+      ],
+      [
+        -123.4801261,
+        44.47228778
+      ],
+      [
+        -123.47994954,
+        44.47261799
+      ],
+      [
+        -123.479797,
+        44.4729287
+      ],
+      [
+        -123.47925478,
+        44.47303412
+      ],
+      [
+        -123.47868212,
+        44.47316742
+      ],
+      [
+        -123.47834936,
+        44.47333824
+      ],
+      [
+        -123.47809071,
+        44.47354852
+      ],
+      [
+        -123.47805377,
+        44.47384987
+      ],
+      [
+        -123.47796772,
+        44.47417264
+      ],
+      [
+        -123.47783113,
+        44.47442981
+      ],
+      [
+        -123.47745871,
+        44.47433752
+      ],
+      [
+        -123.47705113,
+        44.47412451
+      ],
+      [
+        -123.47654044,
+        44.47422282
+      ],
+      [
+        -123.4762192,
+        44.47438928
+      ],
+      [
+        -123.47584185,
+        44.47464331
+      ],
+      [
+        -123.47535147,
+        44.47475714
+      ],
+      [
+        -123.47498206,
+        44.47466552
+      ],
+      [
+        -123.47459941,
+        44.47463542
+      ],
+      [
+        -123.47409487,
+        44.4747175
+      ],
+      [
+        -123.47371536,
+        44.47480247
+      ],
+      [
+        -123.47320281,
+        44.47480248
+      ],
+      [
+        -123.47264202,
+        44.47480131
+      ],
+      [
+        -123.47222947,
+        44.47488158
+      ],
+      [
+        -123.47182376,
+        44.47488986
+      ],
+      [
+        -123.47135853,
+        44.47487096
+      ],
+      [
+        -123.47089013,
+        44.47481915
+      ],
+      [
+        -123.4704449,
+        44.47482198
+      ],
+      [
+        -123.46998787,
+        44.47481226
+      ],
+      [
+        -123.46944475,
+        44.47476717
+      ],
+      [
+        -123.46898314,
+        44.47472465
+      ],
+      [
+        -123.46853932,
+        44.47471293
+      ],
+      [
+        -123.46807095,
+        44.47467013
+      ],
+      [
+        -123.46756394,
+        44.47460217
+      ],
+      [
+        -123.4670965,
+        44.47455128
+      ],
+      [
+        -123.46653632,
+        44.47457775
+      ],
+      [
+        -123.46607619,
+        44.47466109
+      ],
+      [
+        -123.46565361,
+        44.4748239
+      ],
+      [
+        -123.46528034,
+        44.47505051
+      ],
+      [
+        -123.46488926,
+        44.47534672
+      ],
+      [
+        -123.46453785,
+        44.47558286
+      ],
+      [
+        -123.46415133,
+        44.47584688
+      ],
+      [
+        -123.46377953,
+        44.47612393
+      ],
+      [
+        -123.46339778,
+        44.4764013
+      ],
+      [
+        -123.46304713,
+        44.47665547
+      ],
+      [
+        -123.4626879,
+        44.47694392
+      ],
+      [
+        -123.46235787,
+        44.4772296
+      ],
+      [
+        -123.46204487,
+        44.47753873
+      ],
+      [
+        -123.46174231,
+        44.47784038
+      ],
+      [
+        -123.46140957,
+        44.4781679
+      ],
+      [
+        -123.46109838,
+        44.47848416
+      ],
+      [
+        -123.46078809,
+        44.4787923
+      ],
+      [
+        -123.46048795,
+        44.4790929
+      ],
+      [
+        -123.46015455,
+        44.47940029
+      ],
+      [
+        -123.45984547,
+        44.47970017
+      ],
+      [
+        -123.45953511,
+        44.48001414
+      ],
+      [
+        -123.45920537,
+        44.48030756
+      ],
+      [
+        -123.45889946,
+        44.48064354
+      ],
+      [
+        -123.45860043,
+        44.48096048
+      ],
+      [
+        -123.45828262,
+        44.48127645
+      ],
+      [
+        -123.45801003,
+        44.48158976
+      ],
+      [
+        -123.4576834,
+        44.48192069
+      ],
+      [
+        -123.45739059,
+        44.48223954
+      ],
+      [
+        -123.45705104,
+        44.48254957
+      ],
+      [
+        -123.45675767,
+        44.48286525
+      ],
+      [
+        -123.45643367,
+        44.48319707
+      ],
+      [
+        -123.45610788,
+        44.48353287
+      ],
+      [
+        -123.45578094,
+        44.48385947
+      ],
+      [
+        -123.45546355,
+        44.48418257
+      ],
+      [
+        -123.45510591,
+        44.48452931
+      ],
+      [
+        -123.45477322,
+        44.48486689
+      ],
+      [
+        -123.45445947,
+        44.48520192
+      ],
+      [
+        -123.45416747,
+        44.48551868
+      ],
+      [
+        -123.45384334,
+        44.48584721
+      ],
+      [
+        -123.45353195,
+        44.48615606
+      ],
+      [
+        -123.45322256,
+        44.4864529
+      ],
+      [
+        -123.45293393,
+        44.48675117
+      ],
+      [
+        -123.45262647,
+        44.4870589
+      ],
+      [
+        -123.45230069,
+        44.48734926
+      ],
+      [
+        -123.45197306,
+        44.48763205
+      ],
+      [
+        -123.45163264,
+        44.48790013
+      ],
+      [
+        -123.45123379,
+        44.48818529
+      ],
+      [
+        -123.45083103,
+        44.48846727
+      ],
+      [
+        -123.45040181,
+        44.4887488
+      ],
+      [
+        -123.44997728,
+        44.48901869
+      ],
+      [
+        -123.44952118,
+        44.48931258
+      ],
+      [
+        -123.44907445,
+        44.48960523
+      ],
+      [
+        -123.44862647,
+        44.48989809
+      ],
+      [
+        -123.44819328,
+        44.4901763
+      ],
+      [
+        -123.44772171,
+        44.49048504
+      ],
+      [
+        -123.44726262,
+        44.49077493
+      ],
+      [
+        -123.44682005,
+        44.49106856
+      ],
+      [
+        -123.4463866,
+        44.49136384
+      ],
+      [
+        -123.44591557,
+        44.49167959
+      ],
+      [
+        -123.44544315,
+        44.49197592
+      ],
+      [
+        -123.44498914,
+        44.49227917
+      ],
+      [
+        -123.44454304,
+        44.4925581
+      ],
+      [
+        -123.444074,
+        44.49286837
+      ],
+      [
+        -123.44363155,
+        44.49316722
+      ],
+      [
+        -123.44318544,
+        44.49348157
+      ],
+      [
+        -123.4427749,
+        44.49380232
+      ],
+      [
+        -123.44237282,
+        44.4941945
+      ],
+      [
+        -123.44221395,
+        44.49463497
+      ],
+      [
+        -123.44207001,
+        44.49505343
+      ],
+      [
+        -123.4418991,
+        44.49547278
+      ],
+      [
+        -123.44170759,
+        44.49591768
+      ],
+      [
+        -123.44151892,
+        44.49634738
+      ],
+      [
+        -123.44132597,
+        44.49677097
+      ],
+      [
+        -123.44113333,
+        44.49718514
+      ],
+      [
+        -123.44093985,
+        44.49761694
+      ],
+      [
+        -123.44073427,
+        44.49803342
+      ],
+      [
+        -123.44051499,
+        44.49844968
+      ],
+      [
+        -123.44027266,
+        44.49884119
+      ],
+      [
+        -123.43997654,
+        44.49925298
+      ],
+      [
+        -123.43968179,
+        44.49963614
+      ],
+      [
+        -123.4393843,
+        44.50002126
+      ],
+      [
+        -123.4390989,
+        44.50039885
+      ],
+      [
+        -123.43879294,
+        44.50080242
+      ],
+      [
+        -123.43849513,
+        44.50118911
+      ],
+      [
+        -123.43819988,
+        44.50157818
+      ],
+      [
+        -123.43792141,
+        44.50195929
+      ],
+      [
+        -123.43761987,
+        44.50236341
+      ],
+      [
+        -123.43733484,
+        44.50275464
+      ],
+      [
+        -123.43710507,
+        44.50316626
+      ],
+      [
+        -123.43691144,
+        44.50357986
+      ],
+      [
+        -123.43670765,
+        44.5040224
+      ],
+      [
+        -123.43651031,
+        44.50444617
+      ],
+      [
+        -123.43631491,
+        44.50486297
+      ],
+      [
+        -123.43612632,
+        44.50526513
+      ],
+      [
+        -123.43592411,
+        44.50569634
+      ],
+      [
+        -123.43572665,
+        44.50612257
+      ],
+      [
+        -123.4355363,
+        44.50654527
+      ],
+      [
+        -123.43534616,
+        44.50695871
+      ],
+      [
+        -123.43514445,
+        44.50739706
+      ],
+      [
+        -123.43495127,
+        44.50782223
+      ],
+      [
+        -123.4347617,
+        44.50824242
+      ],
+      [
+        -123.43457558,
+        44.50865062
+      ],
+      [
+        -123.43437147,
+        44.50908771
+      ],
+      [
+        -123.43416998,
+        44.50950902
+      ],
+      [
+        -123.43416998,
+        44.50950902
+      ],
+      [
+        -123.43393913,
+        44.50992427
+      ],
+      [
+        -123.43369203,
+        44.51031662
+      ],
+      [
+        -123.43339927,
+        44.51071578
+      ],
+      [
+        -123.4330902,
+        44.51109841
+      ],
+      [
+        -123.43276906,
+        44.51148047
+      ],
+      [
+        -123.43245796,
+        44.51184692
+      ],
+      [
+        -123.43212788,
+        44.5122339
+      ],
+      [
+        -123.43180723,
+        44.51261161
+      ],
+      [
+        -123.43147967,
+        44.51299075
+      ],
+      [
+        -123.43117015,
+        44.51335616
+      ],
+      [
+        -123.43084199,
+        44.51375068
+      ],
+      [
+        -123.43051491,
+        44.51413201
+      ],
+      [
+        -123.43018556,
+        44.51450896
+      ],
+      [
+        -123.42987202,
+        44.51487531
+      ],
+      [
+        -123.42953561,
+        44.51527129
+      ],
+      [
+        -123.42921313,
+        44.51564257
+      ],
+      [
+        -123.42889296,
+        44.51602397
+      ],
+      [
+        -123.42858276,
+        44.51638573
+      ],
+      [
+        -123.42822581,
+        44.51678711
+      ],
+      [
+        -123.42782901,
+        44.51711651
+      ],
+      [
+        -123.42740838,
+        44.51743348
+      ],
+      [
+        -123.42696992,
+        44.51771943
+      ],
+      [
+        -123.42648018,
+        44.51801887
+      ],
+      [
+        -123.4260181,
+        44.51830764
+      ],
+      [
+        -123.42553794,
+        44.51859288
+      ],
+      [
+        -123.4250801,
+        44.51887327
+      ],
+      [
+        -123.42459356,
+        44.51917328
+      ],
+      [
+        -123.42411479,
+        44.51945849
+      ],
+      [
+        -123.42364364,
+        44.51974375
+      ],
+      [
+        -123.42318038,
+        44.52001998
+      ],
+      [
+        -123.42268555,
+        44.5203149
+      ],
+      [
+        -123.42221078,
+        44.52060325
+      ],
+      [
+        -123.42173529,
+        44.52089685
+      ],
+      [
+        -123.42127925,
+        44.52117732
+      ],
+      [
+        -123.42078999,
+        44.52148051
+      ],
+      [
+        -123.42031146,
+        44.52177427
+      ],
+      [
+        -123.41983202,
+        44.52205807
+      ],
+      [
+        -123.41937003,
+        44.52233513
+      ],
+      [
+        -123.4188776,
+        44.52263163
+      ],
+      [
+        -123.41839875,
+        44.5229186
+      ],
+      [
+        -123.41792192,
+        44.52320637
+      ],
+      [
+        -123.41746623,
+        44.52347876
+      ],
+      [
+        -123.41697625,
+        44.52376327
+      ],
+      [
+        -123.41649856,
+        44.52405145
+      ],
+      [
+        -123.41602929,
+        44.52433398
+      ],
+      [
+        -123.4155658,
+        44.52459058
+      ],
+      [
+        -123.41506535,
+        44.52488538
+      ],
+      [
+        -123.41456891,
+        44.525167
+      ],
+      [
+        -123.41405852,
+        44.52542754
+      ],
+      [
+        -123.41354717,
+        44.52565925
+      ],
+      [
+        -123.41300495,
+        44.52590609
+      ],
+      [
+        -123.41245906,
+        44.52612824
+      ],
+      [
+        -123.41191427,
+        44.52635735
+      ],
+      [
+        -123.4114022,
+        44.5265756
+      ],
+      [
+        -123.41084457,
+        44.52681075
+      ],
+      [
+        -123.41029972,
+        44.52703597
+      ],
+      [
+        -123.40976016,
+        44.52726107
+      ],
+      [
+        -123.40924319,
+        44.52748643
+      ],
+      [
+        -123.40895966,
+        44.5276069
+      ],
+      [
+        -123.40869213,
+        44.52771501
+      ],
+      [
+        -123.40815696,
+        44.52793966
+      ],
+      [
+        -123.40762647,
+        44.52814828
+      ],
+      [
+        -123.40711497,
+        44.52836455
+      ],
+      [
+        -123.40655632,
+        44.52859126
+      ],
+      [
+        -123.40600878,
+        44.52880717
+      ],
+      [
+        -123.4054762,
+        44.5290275
+      ],
+      [
+        -123.40495718,
+        44.52925384
+      ],
+      [
+        -123.40466539,
+        44.52936835
+      ],
+      [
+        -123.40414286,
+        44.52959051
+      ],
+      [
+        -123.40361132,
+        44.52981453
+      ],
+      [
+        -123.40306152,
+        44.53005437
+      ],
+      [
+        -123.4025292,
+        44.53028218
+      ],
+      [
+        -123.40201126,
+        44.53049606
+      ],
+      [
+        -123.40146795,
+        44.53072011
+      ],
+      [
+        -123.40090922,
+        44.53094875
+      ],
+      [
+        -123.40036455,
+        44.53116925
+      ],
+      [
+        -123.39984404,
+        44.53138837
+      ],
+      [
+        -123.3993115,
+        44.53161884
+      ],
+      [
+        -123.39876385,
+        44.5318492
+      ],
+      [
+        -123.39824059,
+        44.53205854
+      ],
+      [
+        -123.3977473,
+        44.53225808
+      ],
+      [
+        -123.3972622,
+        44.53245743
+      ],
+      [
+        -123.39677303,
+        44.53265059
+      ],
+      [
+        -123.39632504,
+        44.53283932
+      ],
+      [
+        -123.39590166,
+        44.53301774
+      ],
+      [
+        -123.39547522,
+        44.53319766
+      ],
+      [
+        -123.39504689,
+        44.53339868
+      ],
+      [
+        -123.39465289,
+        44.53361696
+      ],
+      [
+        -123.39426586,
+        44.53381985
+      ],
+      [
+        -123.39388559,
+        44.53405799
+      ],
+      [
+        -123.39351651,
+        44.53432388
+      ],
+      [
+        -123.39317524,
+        44.53458573
+      ],
+      [
+        -123.3928578,
+        44.53483668
+      ],
+      [
+        -123.39253164,
+        44.53510638
+      ],
+      [
+        -123.39220317,
+        44.5353854
+      ],
+      [
+        -123.39187977,
+        44.53566051
+      ],
+      [
+        -123.39156846,
+        44.5359305
+      ],
+      [
+        -123.39124667,
+        44.5362053
+      ],
+      [
+        -123.39092141,
+        44.53649561
+      ],
+      [
+        -123.39060507,
+        44.53677627
+      ],
+      [
+        -123.39029422,
+        44.5370481
+      ],
+      [
+        -123.38996858,
+        44.53732112
+      ],
+      [
+        -123.38963164,
+        44.53760812
+      ],
+      [
+        -123.3893041,
+        44.53788753
+      ],
+      [
+        -123.38898522,
+        44.53815136
+      ],
+      [
+        -123.38866218,
+        44.53842558
+      ],
+      [
+        -123.38833427,
+        44.53870592
+      ],
+      [
+        -123.3880184,
+        44.53897686
+      ],
+      [
+        -123.38771232,
+        44.53923952
+      ],
+      [
+        -123.38739618,
+        44.53951246
+      ],
+      [
+        -123.38706438,
+        44.53979785
+      ],
+      [
+        -123.38676121,
+        44.54005984
+      ],
+      [
+        -123.38649554,
+        44.54030264
+      ],
+      [
+        -123.38621011,
+        44.54053431
+      ],
+      [
+        -123.38593348,
+        44.54076886
+      ],
+      [
+        -123.38555534,
+        44.54102056
+      ],
+      [
+        -123.38515388,
+        44.54111784
+      ],
+      [
+        -123.38470507,
+        44.54112736
+      ],
+      [
+        -123.3841804,
+        44.54102559
+      ],
+      [
+        -123.38375495,
+        44.54095724
+      ],
+      [
+        -123.38329123,
+        44.54088665
+      ],
+      [
+        -123.38286551,
+        44.54083528
+      ],
+      [
+        -123.38245242,
+        44.54076564
+      ],
+      [
+        -123.38208883,
+        44.54068844
+      ],
+      [
+        -123.38179769,
+        44.54048925
+      ],
+      [
+        -123.38159052,
+        44.54024701
+      ],
+      [
+        -123.3814108,
+        44.53998761
+      ],
+      [
+        -123.38118375,
+        44.53975571
+      ],
+      [
+        -123.38086036,
+        44.5395861
+      ],
+      [
+        -123.38050866,
+        44.53948057
+      ],
+      [
+        -123.38012724,
+        44.53946288
+      ],
+      [
+        -123.37955343,
+        44.53940723
+      ],
+      [
+        -123.37897691,
+        44.53935666
+      ],
+      [
+        -123.37858892,
+        44.53932255
+      ],
+      [
+        -123.37820202,
+        44.53929077
+      ],
+      [
+        -123.37779084,
+        44.53926175
+      ],
+      [
+        -123.37740202,
+        44.53924167
+      ],
+      [
+        -123.3768439,
+        44.53922989
+      ],
+      [
+        -123.37630459,
+        44.53922095
+      ],
+      [
+        -123.37577832,
+        44.53921455
+      ],
+      [
+        -123.37524397,
+        44.53920001
+      ],
+      [
+        -123.37471557,
+        44.53918419
+      ],
+      [
+        -123.37416891,
+        44.53916909
+      ],
+      [
+        -123.37362177,
+        44.53916016
+      ],
+      [
+        -123.37305277,
+        44.53914551
+      ],
+      [
+        -123.37250375,
+        44.5391347
+      ],
+      [
+        -123.37196108,
+        44.53912166
+      ],
+      [
+        -123.37144223,
+        44.53912541
+      ],
+      [
+        -123.37091344,
+        44.53912106
+      ],
+      [
+        -123.37037923,
+        44.53910799
+      ],
+      [
+        -123.36985956,
+        44.53909585
+      ],
+      [
+        -123.36935863,
+        44.53908255
+      ],
+      [
+        -123.36888007,
+        44.53907956
+      ],
+      [
+        -123.36846611,
+        44.53907648
+      ],
+      [
+        -123.36806842,
+        44.53906522
+      ],
+      [
+        -123.36768323,
+        44.53905605
+      ],
+      [
+        -123.36727771,
+        44.53904199
+      ],
+      [
+        -123.36681649,
+        44.53903954
+      ],
+      [
+        -123.36631753,
+        44.53902882
+      ],
+      [
+        -123.36586082,
+        44.53902977
+      ],
+      [
+        -123.36544325,
+        44.53913664
+      ],
+      [
+        -123.36508499,
+        44.53934348
+      ],
+      [
+        -123.36482034,
+        44.5396155
+      ],
+      [
+        -123.36450004,
+        44.53986076
+      ],
+      [
+        -123.36403534,
+        44.53999492
+      ],
+      [
+        -123.36351722,
+        44.5400011
+      ],
+      [
+        -123.36300246,
+        44.53998526
+      ],
+      [
+        -123.36247419,
+        44.53996914
+      ],
+      [
+        -123.36208453,
+        44.53996116
+      ],
+      [
+        -123.36152173,
+        44.53994555
+      ],
+      [
+        -123.36112464,
+        44.53993857
+      ],
+      [
+        -123.36072607,
+        44.5399273
+      ],
+      [
+        -123.36032955,
+        44.53991051
+      ],
+      [
+        -123.3599205,
+        44.53990584
+      ],
+      [
+        -123.35954076,
+        44.53989614
+      ],
+      [
+        -123.35915964,
+        44.53988495
+      ],
+      [
+        -123.35858293,
+        44.53987791
+      ],
+      [
+        -123.35800637,
+        44.53989495
+      ],
+      [
+        -123.35762016,
+        44.53991464
+      ],
+      [
+        -123.35705794,
+        44.53995867
+      ],
+      [
+        -123.35650399,
+        44.54002408
+      ],
+      [
+        -123.3561221,
+        44.54007734
+      ],
+      [
+        -123.35573629,
+        44.54014026
+      ],
+      [
+        -123.35531565,
+        44.54020855
+      ],
+      [
+        -123.35491426,
+        44.54028393
+      ],
+      [
+        -123.35451402,
+        44.54035959
+      ],
+      [
+        -123.35412898,
+        44.5404371
+      ],
+      [
+        -123.35371616,
+        44.54052058
+      ],
+      [
+        -123.35332215,
+        44.54060186
+      ],
+      [
+        -123.35291771,
+        44.54067608
+      ],
+      [
+        -123.35251298,
+        44.54074276
+      ],
+      [
+        -123.35209425,
+        44.54081674
+      ],
+      [
+        -123.35168759,
+        44.54089112
+      ],
+      [
+        -123.35128592,
+        44.54096514
+      ],
+      [
+        -123.35088734,
+        44.54103624
+      ],
+      [
+        -123.35045836,
+        44.54111185
+      ],
+      [
+        -123.35002725,
+        44.54118819
+      ],
+      [
+        -123.34958789,
+        44.54126077
+      ],
+      [
+        -123.34916713,
+        44.54133595
+      ],
+      [
+        -123.34871627,
+        44.54141712
+      ],
+      [
+        -123.34825995,
+        44.54149014
+      ],
+      [
+        -123.34780139,
+        44.54157099
+      ],
+      [
+        -123.34736459,
+        44.54164912
+      ],
+      [
+        -123.34691797,
+        44.54172568
+      ],
+      [
+        -123.34648666,
+        44.5418027
+      ],
+      [
+        -123.3460571,
+        44.54188546
+      ],
+      [
+        -123.34562688,
+        44.54195721
+      ],
+      [
+        -123.34516586,
+        44.54203916
+      ],
+      [
+        -123.34470852,
+        44.54212056
+      ],
+      [
+        -123.34426348,
+        44.54219179
+      ],
+      [
+        -123.34383273,
+        44.54226569
+      ],
+      [
+        -123.34336889,
+        44.54234623
+      ],
+      [
+        -123.34291767,
+        44.54242656
+      ],
+      [
+        -123.34246889,
+        44.54251134
+      ],
+      [
+        -123.34202671,
+        44.54258285
+      ],
+      [
+        -123.34156351,
+        44.54266715
+      ],
+      [
+        -123.34111487,
+        44.54275161
+      ],
+      [
+        -123.34067123,
+        44.54283617
+      ],
+      [
+        -123.34023238,
+        44.54292081
+      ],
+      [
+        -123.33974206,
+        44.54300443
+      ],
+      [
+        -123.3392317,
+        44.54309146
+      ],
+      [
+        -123.33872766,
+        44.54318295
+      ],
+      [
+        -123.3382364,
+        44.54326244
+      ],
+      [
+        -123.33771922,
+        44.54335005
+      ],
+      [
+        -123.33722678,
+        44.5434378
+      ],
+      [
+        -123.33672975,
+        44.54352409
+      ],
+      [
+        -123.33624164,
+        44.54360507
+      ],
+      [
+        -123.33570831,
+        44.54369219
+      ],
+      [
+        -123.335214,
+        44.54378472
+      ],
+      [
+        -123.334725,
+        44.54390163
+      ],
+      [
+        -123.33425035,
+        44.54400043
+      ],
+      [
+        -123.33373843,
+        44.54413263
+      ],
+      [
+        -123.33325031,
+        44.54426623
+      ],
+      [
+        -123.33274028,
+        44.54440589
+      ],
+      [
+        -123.33228296,
+        44.54456354
+      ],
+      [
+        -123.33180658,
+        44.54469929
+      ],
+      [
+        -123.33135724,
+        44.54484369
+      ],
+      [
+        -123.33089597,
+        44.54498249
+      ],
+      [
+        -123.33042739,
+        44.54511842
+      ],
+      [
+        -123.32993155,
+        44.54527463
+      ],
+      [
+        -123.32945673,
+        44.54541825
+      ],
+      [
+        -123.32899582,
+        44.5455857
+      ],
+      [
+        -123.32852117,
+        44.54572228
+      ],
+      [
+        -123.32803216,
+        44.54587351
+      ],
+      [
+        -123.32753925,
+        44.54600503
+      ],
+      [
+        -123.32706225,
+        44.54615986
+      ],
+      [
+        -123.32659877,
+        44.54629742
+      ],
+      [
+        -123.32610841,
+        44.54644932
+      ],
+      [
+        -123.32563429,
+        44.54659439
+      ],
+      [
+        -123.32516594,
+        44.54674379
+      ],
+      [
+        -123.32470844,
+        44.54689359
+      ],
+      [
+        -123.3242181,
+        44.54704338
+      ],
+      [
+        -123.32375111,
+        44.5471958
+      ],
+      [
+        -123.32327822,
+        44.54734289
+      ],
+      [
+        -123.32282427,
+        44.54748254
+      ],
+      [
+        -123.32232,
+        44.54762611
+      ],
+      [
+        -123.3218569,
+        44.54777353
+      ],
+      [
+        -123.32138033,
+        44.54792481
+      ],
+      [
+        -123.32091849,
+        44.54806566
+      ],
+      [
+        -123.32041494,
+        44.54822029
+      ],
+      [
+        -123.31992582,
+        44.5483696
+      ],
+      [
+        -123.3194776,
+        44.54852446
+      ],
+      [
+        -123.31901675,
+        44.54866755
+      ],
+      [
+        -123.31854128,
+        44.54882193
+      ],
+      [
+        -123.31806931,
+        44.54896198
+      ],
+      [
+        -123.31759536,
+        44.54910675
+      ],
+      [
+        -123.31711482,
+        44.54926614
+      ],
+      [
+        -123.31662097,
+        44.54942448
+      ],
+      [
+        -123.3161431,
+        44.54957155
+      ],
+      [
+        -123.31569368,
+        44.54971301
+      ],
+      [
+        -123.3152514,
+        44.54983821
+      ],
+      [
+        -123.31478516,
+        44.54997893
+      ],
+      [
+        -123.31433835,
+        44.55009513
+      ],
+      [
+        -123.31392575,
+        44.55022536
+      ],
+      [
+        -123.31341094,
+        44.55037545
+      ],
+      [
+        -123.3130272,
+        44.55051633
+      ],
+      [
+        -123.31262912,
+        44.55061826
+      ],
+      [
+        -123.31217239,
+        44.55075286
+      ],
+      [
+        -123.31179562,
+        44.55086342
+      ],
+      [
+        -123.3113316,
+        44.55100073
+      ],
+      [
+        -123.3108617,
+        44.55115061
+      ],
+      [
+        -123.31037811,
+        44.55129756
+      ],
+      [
+        -123.30989573,
+        44.55145245
+      ],
+      [
+        -123.30944875,
+        44.55164648
+      ],
+      [
+        -123.30902249,
+        44.55177033
+      ],
+      [
+        -123.30863601,
+        44.55187504
+      ],
+      [
+        -123.30824443,
+        44.55199717
+      ],
+      [
+        -123.30780382,
+        44.55211262
+      ],
+      [
+        -123.3073585,
+        44.5522485
+      ],
+      [
+        -123.306862,
+        44.55241387
+      ],
+      [
+        -123.30650857,
+        44.55251801
+      ],
+      [
+        -123.30611721,
+        44.55263405
+      ],
+      [
+        -123.30573386,
+        44.55275003
+      ],
+      [
+        -123.30534155,
+        44.55287781
+      ],
+      [
+        -123.30495033,
+        44.55299662
+      ],
+      [
+        -123.3045303,
+        44.55313721
+      ],
+      [
+        -123.30411363,
+        44.55326974
+      ],
+      [
+        -123.30369545,
+        44.55340144
+      ],
+      [
+        -123.30330677,
+        44.55353304
+      ],
+      [
+        -123.30288966,
+        44.55366435
+      ],
+      [
+        -123.30248971,
+        44.55378709
+      ],
+      [
+        -123.30208974,
+        44.55390939
+      ],
+      [
+        -123.30169362,
+        44.55402832
+      ],
+      [
+        -123.30125132,
+        44.5541547
+      ],
+      [
+        -123.30080572,
+        44.55426472
+      ],
+      [
+        -123.30035169,
+        44.55436219
+      ],
+      [
+        -123.29989871,
+        44.55443689
+      ],
+      [
+        -123.29941392,
+        44.55449118
+      ],
+      [
+        -123.29893061,
+        44.55452129
+      ],
+      [
+        -123.29842703,
+        44.55453705
+      ],
+      [
+        -123.29794315,
+        44.5545436
+      ],
+      [
+        -123.29743171,
+        44.55455031
+      ],
+      [
+        -123.29692175,
+        44.5545474
+      ],
+      [
+        -123.29640347,
+        44.5545359
+      ],
+      [
+        -123.29590017,
+        44.55451297
+      ],
+      [
+        -123.29536914,
+        44.55450628
+      ],
+      [
+        -123.29485707,
+        44.55450803
+      ],
+      [
+        -123.29434691,
+        44.55449956
+      ],
+      [
+        -123.29385587,
+        44.55449526
+      ],
+      [
+        -123.29335804,
+        44.55449161
+      ],
+      [
+        -123.29290726,
+        44.55448235
+      ],
+      [
+        -123.29246417,
+        44.55448655
+      ],
+      [
+        -123.29206919,
+        44.55448908
+      ],
+      [
+        -123.29166745,
+        44.55449571
+      ],
+      [
+        -123.29115212,
+        44.55449901
+      ],
+      [
+        -123.29072809,
+        44.55450366
+      ],
+      [
+        -123.29034768,
+        44.55450772
+      ],
+      [
+        -123.28990201,
+        44.55449609
+      ],
+      [
+        -123.28950298,
+        44.55449363
+      ],
+      [
+        -123.28904626,
+        44.55449599
+      ],
+      [
+        -123.28855255,
+        44.55449407
+      ],
+      [
+        -123.28800847,
+        44.55449764
+      ],
+      [
+        -123.28762473,
+        44.55450368
+      ],
+      [
+        -123.28722566,
+        44.55450332
+      ],
+      [
+        -123.28677705,
+        44.55451551
+      ],
+      [
+        -123.28631827,
+        44.5545278
+      ],
+      [
+        -123.28585377,
+        44.55454236
+      ],
+      [
+        -123.28538657,
+        44.55455636
+      ],
+      [
+        -123.28487237,
+        44.55455721
+      ],
+      [
+        -123.284351,
+        44.55455133
+      ],
+      [
+        -123.28382494,
+        44.55454812
+      ],
+      [
+        -123.28328584,
+        44.55454696
+      ],
+      [
+        -123.28272283,
+        44.55455148
+      ],
+      [
+        -123.28218504,
+        44.5545597
+      ],
+      [
+        -123.2816569,
+        44.55457766
+      ],
+      [
+        -123.28119186,
+        44.55461219
+      ],
+      [
+        -123.28071342,
+        44.55468876
+      ],
+      [
+        -123.28035338,
+        44.55478177
+      ],
+      [
+        -123.28001818,
+        44.55490713
+      ],
+      [
+        -123.27967273,
+        44.55506603
+      ],
+      [
+        -123.27931254,
+        44.5552466
+      ],
+      [
+        -123.27889767,
+        44.55545558
+      ],
+      [
+        -123.27845411,
+        44.5556815
+      ],
+      [
+        -123.27811014,
+        44.55585187
+      ],
+      [
+        -123.27775915,
+        44.55601931
+      ],
+      [
+        -123.27740661,
+        44.55618109
+      ],
+      [
+        -123.27701123,
+        44.55633756
+      ],
+      [
+        -123.2765977,
+        44.55648766
+      ],
+      [
+        -123.27620464,
+        44.55660935
+      ],
+      [
+        -123.2756879,
+        44.55674265
+      ],
+      [
+        -123.27529946,
+        44.55680771
+      ],
+      [
+        -123.27491536,
+        44.55683622
+      ],
+      [
+        -123.27447931,
+        44.55685771
+      ],
+      [
+        -123.27413175,
+        44.55674604
+      ],
+      [
+        -123.27412538,
+        44.55647286
+      ],
+      [
+        -123.27414246,
+        44.55616471
+      ],
+      [
+        -123.27417694,
+        44.5558251
+      ],
+      [
+        -123.2740732,
+        44.55553319
+      ],
+      [
+        -123.27366114,
+        44.55541285
+      ],
+      [
+        -123.27326365,
+        44.55533287
+      ],
+      [
+        -123.2728741,
+        44.55522574
+      ],
+      [
+        -123.27247097,
+        44.55510839
+      ],
+      [
+        -123.27208581,
+        44.55491523
+      ],
+      [
+        -123.2718444,
+        44.55469252
+      ],
+      [
+        -123.27159443,
+        44.55445875
+      ],
+      [
+        -123.27127491,
+        44.5541922
+      ],
+      [
+        -123.27092981,
+        44.55402428
+      ],
+      [
+        -123.27053517,
+        44.55393236
+      ],
+      [
+        -123.27039103,
+        44.55388388
+      ],
+      [
+        -123.27009463,
+        44.55382304
+      ],
+      [
+        -123.27000481,
+        44.55380804
+      ],
+      [
+        -123.26976358,
+        44.55364659
+      ],
+      [
+        -123.26969201,
+        44.55356232
+      ],
+      [
+        -123.2696022,
+        44.55337423
+      ],
+      [
+        -123.26957454,
+        44.55330394
+      ],
+      [
+        -123.26958413,
+        44.55306114
+      ],
+      [
+        -123.26958366,
+        44.55301194
+      ],
+      [
+        -123.26959975,
+        44.55285183
+      ],
+      [
+        -123.26961324,
+        44.55273545
+      ],
+      [
+        -123.26964414,
+        44.55257865
+      ],
+      [
+        -123.26966673,
+        44.55245174
+      ],
+      [
+        -123.26968531,
+        44.55229133
+      ],
+      [
+        -123.26969096,
+        44.55216134
+      ],
+      [
+        -123.26971584,
+        44.55202152
+      ],
+      [
+        -123.26954727,
+        44.55188264
+      ],
+      [
+        -123.26946946,
+        44.55187453
+      ],
+      [
+        -123.26915317,
+        44.55187922
+      ],
+      [
+        -123.26903586,
+        44.55187802
+      ],
+      [
+        -123.26870336,
+        44.55187922
+      ],
+      [
+        -123.26860225,
+        44.55188924
+      ],
+      [
+        -123.26826921,
+        44.55188421
+      ],
+      [
+        -123.2681613,
+        44.55188518
+      ],
+      [
+        -123.26781163,
+        44.55189155
+      ],
+      [
+        -123.26733824,
+        44.55188922
+      ],
+      [
+        -123.26686283,
+        44.55188952
+      ],
+      [
+        -123.26640164,
+        44.55189809
+      ],
+      [
+        -123.26600295,
+        44.55188997
+      ],
+      [
+        -123.26559363,
+        44.5518616
+      ],
+      [
+        -123.2653081,
+        44.55161537
+      ],
+      [
+        -123.26530994,
+        44.55131925
+      ],
+      [
+        -123.26533228,
+        44.5509891
+      ],
+      [
+        -123.26537188,
+        44.55063217
+      ],
+      [
+        -123.26539053,
+        44.55028881
+      ],
+      [
+        -123.26539121,
+        44.54999767
+      ],
+      [
+        -123.26540308,
+        44.54991228
+      ],
+      [
+        -123.2654052,
+        44.54994129
+      ],
+      [
+        -123.26540497,
+        44.54994134
+      ],
+      [
+        -123.26540544,
+        44.54994081
+      ],
+      [
+        -123.26506155,
+        44.54983865
+      ],
+      [
+        -123.26494022,
+        44.54983669
+      ],
+      [
+        -123.26467973,
+        44.5498293
+      ],
+      [
+        -123.26444757,
+        44.5498358
+      ],
+      [
+        -123.26422691,
+        44.54979938
+      ],
+      [
+        -123.2640346,
+        44.54976206
+      ],
+      [
+        -123.26388103,
+        44.54963294
+      ],
+      [
+        -123.26383422,
+        44.54950964
+      ],
+      [
+        -123.26357412,
+        44.54940655
+      ],
+      [
+        -123.26342696,
+        44.54940258
+      ],
+      [
+        -123.26313474,
+        44.54939772
+      ],
+      [
+        -123.2632591,
+        44.5492761
+      ],
+      [
+        -123.26302786,
+        44.54933015
+      ],
+      [
+        -123.26304603,
+        44.54930749
+      ],
+      [
+        -123.26304672,
+        44.54930838
+      ],
+      [
+        -123.2630752,
+        44.5492864
+      ],
+      [
+        -123.26304622,
+        44.54930627
+      ],
+      [
+        -123.26304627,
+        44.54930627
+      ],
+      [
+        -123.26304627,
+        44.54930626
+      ],
+      [
+        -123.263137,
+        44.5492305
+      ],
+      [
+        -123.26304625,
+        44.54930629
+      ],
+      [
+        -123.2630463,
+        44.54930659
+      ],
+      [
+        -123.26304631,
+        44.54930659
+      ],
+      [
+        -123.2631406,
+        44.5492334
+      ],
+      [
+        -123.26311465,
+        44.54918351
+      ],
+      [
+        -123.263117,
+        44.5492602
+      ],
+      [
+        -123.26311462,
+        44.54918317
+      ],
+      [
+        -123.26312044,
+        44.54919812
+      ],
+      [
+        -123.26312048,
+        44.54919809
+      ],
+      [
+        -123.2631271,
+        44.5492573
+      ],
+      [
+        -123.26311884,
+        44.54920063
+      ],
+      [
+        -123.2631701,
+        44.5492662
+      ],
+      [
+        -123.26311887,
+        44.5492009
+      ],
+      [
+        -123.26311885,
+        44.54920109
+      ],
+      [
+        -123.2631462,
+        44.5492644
+      ],
+      [
+        -123.26311877,
+        44.54920158
+      ],
+      [
+        -123.26311878,
+        44.5492016
+      ],
+      [
+        -123.2631759,
+        44.5492697
+      ],
+      [
+        -123.2631385,
+        44.5492632
+      ],
+      [
+        -123.26311718,
+        44.54920119
+      ],
+      [
+        -123.26311714,
+        44.54920118
+      ],
+      [
+        -123.26311536,
+        44.54920074
+      ],
+      [
+        -123.26311536,
+        44.54920075
+      ],
+      [
+        -123.2630535,
+        44.5492458
+      ],
+      [
+        -123.26311514,
+        44.54920067
+      ],
+      [
+        -123.26311513,
+        44.54920066
+      ],
+      [
+        -123.26314,
+        44.5492631
+      ],
+      [
+        -123.26311419,
+        44.54920009
+      ],
+      [
+        -123.26311417,
+        44.5492001
+      ],
+      [
+        -123.2631325,
+        44.5492608
+      ],
+      [
+        -123.26311313,
+        44.54919975
+      ]
+    ]
+  },
+  "properties": {
+    "time": [
+      1369786338000,
+      1369786343000,
+      1369786347000,
+      1369786352000,
+      1369786357000,
+      1369786362000,
+      1369786367000,
+      1369786377000,
+      1369786382000,
+      1369786387000,
+      1369786391000,
+      1369786395000,
+      1369786399000,
+      1369786404000,
+      1369786408000,
+      1369786412000,
+      1369786416000,
+      1369786420000,
+      1369786425000,
+      1369786429000,
+      1369786433000,
+      1369786436000,
+      1369786439000,
+      1369786444000,
+      1369786448000,
+      1369786451000,
+      1369786454000,
+      1369786458000,
+      1369786462000,
+      1369786466000,
+      1369786470000,
+      1369786476000,
+      1369786481000,
+      1369786485000,
+      1369786489000,
+      1369786493000,
+      1369786497000,
+      1369786501000,
+      1369786505000,
+      1369786509000,
+      1369786514000,
+      1369786518000,
+      1369786526000,
+      1369786556000,
+      1369786559000,
+      1369786561000,
+      1369786563000,
+      1369786565000,
+      1369786567000,
+      1369786569000,
+      1369786571000,
+      1369786573000,
+      1369786575000,
+      1369786577000,
+      1369786579000,
+      1369786581000,
+      1369786583000,
+      1369786585000,
+      1369786587000,
+      1369786589000,
+      1369786591000,
+      1369786593000,
+      1369786595000,
+      1369786597000,
+      1369786599000,
+      1369786601000,
+      1369786603000,
+      1369786605000,
+      1369786607000,
+      1369786609000,
+      1369786611000,
+      1369786613000,
+      1369786615000,
+      1369786617000,
+      1369786619000,
+      1369786621000,
+      1369786623000,
+      1369786625000,
+      1369786627000,
+      1369786629000,
+      1369786631000,
+      1369786633000,
+      1369786635000,
+      1369786637000,
+      1369786639000,
+      1369786641000,
+      1369786643000,
+      1369786645000,
+      1369786647000,
+      1369786649000,
+      1369786651000,
+      1369786653000,
+      1369786655000,
+      1369786657000,
+      1369786659000,
+      1369786661000,
+      1369786663000,
+      1369786665000,
+      1369786667000,
+      1369786669000,
+      1369786671000,
+      1369786673000,
+      1369786675000,
+      1369786677000,
+      1369786679000,
+      1369786681000,
+      1369786683000,
+      1369786685000,
+      1369786687000,
+      1369786689000,
+      1369786691000,
+      1369786693000,
+      1369786695000,
+      1369786697000,
+      1369786699000,
+      1369786701000,
+      1369786703000,
+      1369786705000,
+      1369786707000,
+      1369786709000,
+      1369786711000,
+      1369786713000,
+      1369786715000,
+      1369786717000,
+      1369786719000,
+      1369786722000,
+      1369786724000,
+      1369786726000,
+      1369786728000,
+      1369786731000,
+      1369786734000,
+      1369786739000,
+      1369786743000,
+      1369786744000,
+      1369786746000,
+      1369786748000,
+      1369786750000,
+      1369786752000,
+      1369786754000,
+      1369786757000,
+      1369786759000,
+      1369786761000,
+      1369786763000,
+      1369786765000,
+      1369786767000,
+      1369786770000,
+      1369786772000,
+      1369786775000,
+      1369786778000,
+      1369786781000,
+      1369786784000,
+      1369786786000,
+      1369786789000,
+      1369786791000,
+      1369786793000,
+      1369786795000,
+      1369786797000,
+      1369786799000,
+      1369786801000,
+      1369786804000,
+      1369786807000,
+      1369786810000,
+      1369786811000,
+      1369786813000,
+      1369786815000,
+      1369786817000,
+      1369786819000,
+      1369786821000,
+      1369786824000,
+      1369786826000,
+      1369786828000,
+      1369786830000,
+      1369786832000,
+      1369786834000,
+      1369786837000,
+      1369786840000,
+      1369786843000,
+      1369786846000,
+      1369786848000,
+      1369786850000,
+      1369786852000,
+      1369786855000,
+      1369786858000,
+      1369786860000,
+      1369786862000,
+      1369786865000,
+      1369786867000,
+      1369786870000,
+      1369786873000,
+      1369786875000,
+      1369786877000,
+      1369786880000,
+      1369786882000,
+      1369786885000,
+      1369786888000,
+      1369786890000,
+      1369786892000,
+      1369786894000,
+      1369786896000,
+      1369786898000,
+      1369786900000,
+      1369786902000,
+      1369786904000,
+      1369786906000,
+      1369786908000,
+      1369786910000,
+      1369786912000,
+      1369786914000,
+      1369786916000,
+      1369786918000,
+      1369786920000,
+      1369786922000,
+      1369786924000,
+      1369786926000,
+      1369786928000,
+      1369786930000,
+      1369786932000,
+      1369786934000,
+      1369786936000,
+      1369786938000,
+      1369786940000,
+      1369786942000,
+      1369786944000,
+      1369786946000,
+      1369786948000,
+      1369786950000,
+      1369786952000,
+      1369786954000,
+      1369786956000,
+      1369786958000,
+      1369786960000,
+      1369786962000,
+      1369786964000,
+      1369786966000,
+      1369786968000,
+      1369786970000,
+      1369786972000,
+      1369786974000,
+      1369786976000,
+      1369786978000,
+      1369786980000,
+      1369786982000,
+      1369786984000,
+      1369786986000,
+      1369786988000,
+      1369786990000,
+      1369786992000,
+      1369786994000,
+      1369786996000,
+      1369786998000,
+      1369787000000,
+      1369787002000,
+      1369787004000,
+      1369787006000,
+      1369787008000,
+      1369787010000,
+      1369787012000,
+      1369787014000,
+      1369787016000,
+      1369787018000,
+      1369787020000,
+      1369787022000,
+      1369787024000,
+      1369787026000,
+      1369787028000,
+      1369787030000,
+      1369787032000,
+      1369787034000,
+      1369787036000,
+      1369787038000,
+      1369787040000,
+      1369787042000,
+      1369787044000,
+      1369787046000,
+      1369787048000,
+      1369787050000,
+      1369787052000,
+      1369787054000,
+      1369787056000,
+      1369787058000,
+      1369787060000,
+      1369787062000,
+      1369787064000,
+      1369787066000,
+      1369787068000,
+      1369787070000,
+      1369787072000,
+      1369787074000,
+      1369787076000,
+      1369787078000,
+      1369787080000,
+      1369787082000,
+      1369787084000,
+      1369787086000,
+      1369787088000,
+      1369787090000,
+      1369787092000,
+      1369787094000,
+      1369787096000,
+      1369787098000,
+      1369787100000,
+      1369787102000,
+      1369787104000,
+      1369787106000,
+      1369787108000,
+      1369787110000,
+      1369787112000,
+      1369787114000,
+      1369787116000,
+      1369787118000,
+      1369787120000,
+      1369787120000,
+      1369787122000,
+      1369787124000,
+      1369787126000,
+      1369787128000,
+      1369787130000,
+      1369787132000,
+      1369787134000,
+      1369787136000,
+      1369787138000,
+      1369787140000,
+      1369787142000,
+      1369787144000,
+      1369787146000,
+      1369787148000,
+      1369787150000,
+      1369787152000,
+      1369787154000,
+      1369787156000,
+      1369787158000,
+      1369787160000,
+      1369787162000,
+      1369787164000,
+      1369787166000,
+      1369787168000,
+      1369787170000,
+      1369787172000,
+      1369787174000,
+      1369787176000,
+      1369787178000,
+      1369787180000,
+      1369787182000,
+      1369787184000,
+      1369787186000,
+      1369787188000,
+      1369787190000,
+      1369787192000,
+      1369787194000,
+      1369787196000,
+      1369787198000,
+      1369787200000,
+      1369787202000,
+      1369787204000,
+      1369787206000,
+      1369787208000,
+      1369787210000,
+      1369787212000,
+      1369787214000,
+      1369787216000,
+      1369787218000,
+      1369787220000,
+      1369787222000,
+      1369787224000,
+      1369787226000,
+      1369787228000,
+      1369787230000,
+      1369787232000,
+      1369787234000,
+      1369787236000,
+      1369787237000,
+      1369787238000,
+      1369787240000,
+      1369787242000,
+      1369787244000,
+      1369787246000,
+      1369787248000,
+      1369787250000,
+      1369787252000,
+      1369787253000,
+      1369787255000,
+      1369787257000,
+      1369787259000,
+      1369787261000,
+      1369787263000,
+      1369787265000,
+      1369787267000,
+      1369787269000,
+      1369787271000,
+      1369787273000,
+      1369787275000,
+      1369787277000,
+      1369787279000,
+      1369787281000,
+      1369787283000,
+      1369787285000,
+      1369787287000,
+      1369787289000,
+      1369787291000,
+      1369787293000,
+      1369787295000,
+      1369787297000,
+      1369787299000,
+      1369787301000,
+      1369787303000,
+      1369787305000,
+      1369787307000,
+      1369787309000,
+      1369787311000,
+      1369787313000,
+      1369787315000,
+      1369787317000,
+      1369787319000,
+      1369787321000,
+      1369787323000,
+      1369787325000,
+      1369787327000,
+      1369787329000,
+      1369787331000,
+      1369787333000,
+      1369787335000,
+      1369787337000,
+      1369787339000,
+      1369787341000,
+      1369787343000,
+      1369787345000,
+      1369787347000,
+      1369787350000,
+      1369787353000,
+      1369787359000,
+      1369787362000,
+      1369787364000,
+      1369787366000,
+      1369787368000,
+      1369787370000,
+      1369787372000,
+      1369787374000,
+      1369787376000,
+      1369787378000,
+      1369787380000,
+      1369787382000,
+      1369787384000,
+      1369787386000,
+      1369787389000,
+      1369787392000,
+      1369787394000,
+      1369787396000,
+      1369787398000,
+      1369787400000,
+      1369787403000,
+      1369787406000,
+      1369787409000,
+      1369787412000,
+      1369787415000,
+      1369787418000,
+      1369787421000,
+      1369787424000,
+      1369787427000,
+      1369787430000,
+      1369787433000,
+      1369787436000,
+      1369787439000,
+      1369787442000,
+      1369787445000,
+      1369787448000,
+      1369787451000,
+      1369787456000,
+      1369787461000,
+      1369787464000,
+      1369787467000,
+      1369787470000,
+      1369787473000,
+      1369787476000,
+      1369787479000,
+      1369787482000,
+      1369787485000,
+      1369787488000,
+      1369787491000,
+      1369787494000,
+      1369787497000,
+      1369787499000,
+      1369787502000,
+      1369787504000,
+      1369787506000,
+      1369787508000,
+      1369787510000,
+      1369787512000,
+      1369787514000,
+      1369787517000,
+      1369787520000,
+      1369787522000,
+      1369787525000,
+      1369787528000,
+      1369787530000,
+      1369787532000,
+      1369787534000,
+      1369787536000,
+      1369787538000,
+      1369787540000,
+      1369787542000,
+      1369787544000,
+      1369787546000,
+      1369787548000,
+      1369787550000,
+      1369787552000,
+      1369787554000,
+      1369787556000,
+      1369787558000,
+      1369787560000,
+      1369787562000,
+      1369787564000,
+      1369787566000,
+      1369787568000,
+      1369787570000,
+      1369787572000,
+      1369787574000,
+      1369787576000,
+      1369787578000,
+      1369787580000,
+      1369787582000,
+      1369787584000,
+      1369787586000,
+      1369787588000,
+      1369787590000,
+      1369787592000,
+      1369787594000,
+      1369787596000,
+      1369787598000,
+      1369787600000,
+      1369787602000,
+      1369787604000,
+      1369787606000,
+      1369787608000,
+      1369787610000,
+      1369787612000,
+      1369787614000,
+      1369787616000,
+      1369787618000,
+      1369787620000,
+      1369787622000,
+      1369787624000,
+      1369787626000,
+      1369787628000,
+      1369787630000,
+      1369787632000,
+      1369787634000,
+      1369787636000,
+      1369787638000,
+      1369787640000,
+      1369787642000,
+      1369787644000,
+      1369787646000,
+      1369787648000,
+      1369787650000,
+      1369787652000,
+      1369787654000,
+      1369787656000,
+      1369787658000,
+      1369787660000,
+      1369787662000,
+      1369787664000,
+      1369787666000,
+      1369787668000,
+      1369787670000,
+      1369787672000,
+      1369787674000,
+      1369787676000,
+      1369787678000,
+      1369787680000,
+      1369787682000,
+      1369787684000,
+      1369787686000,
+      1369787688000,
+      1369787690000,
+      1369787692000,
+      1369787694000,
+      1369787696000,
+      1369787698000,
+      1369787700000,
+      1369787702000,
+      1369787704000,
+      1369787706000,
+      1369787708000,
+      1369787710000,
+      1369787712000,
+      1369787714000,
+      1369787717000,
+      1369787720000,
+      1369787745000,
+      1369787750000,
+      1369787753000,
+      1369787756000,
+      1369787759000,
+      1369787762000,
+      1369787765000,
+      1369787768000,
+      1369787771000,
+      1369787774000,
+      1369787777000,
+      1369787780000,
+      1369787783000,
+      1369787786000,
+      1369787788000,
+      1369787790000,
+      1369787792000,
+      1369787794000,
+      1369787796000,
+      1369787798000,
+      1369787800000,
+      1369787802000,
+      1369787804000,
+      1369787806000,
+      1369787808000,
+      1369787810000,
+      1369787812000,
+      1369787814000,
+      1369787816000,
+      1369787818000,
+      1369787820000,
+      1369787822000,
+      1369787824000,
+      1369787826000,
+      1369787828000,
+      1369787830000,
+      1369787832000,
+      1369787834000,
+      1369787836000,
+      1369787838000,
+      1369787840000,
+      1369787842000,
+      1369787844000,
+      1369787846000,
+      1369787848000,
+      1369787850000,
+      1369787852000,
+      1369787854000,
+      1369787857000,
+      1369787860000,
+      1369787865000,
+      1369787883000,
+      1369787887000,
+      1369787890000,
+      1369787893000,
+      1369787896000,
+      1369787898000,
+      1369787900000,
+      1369787902000,
+      1369787904000,
+      1369787906000,
+      1369787908000,
+      1369787910000,
+      1369787912000,
+      1369787914000,
+      1369787916000,
+      1369787918000,
+      1369787920000,
+      1369787922000,
+      1369787924000,
+      1369787927000,
+      1369787933000,
+      1369787956000,
+      1369787960000,
+      1369787963000,
+      1369787966000,
+      1369787969000,
+      1369787971000,
+      1369787973000,
+      1369787975000,
+      1369787977000,
+      1369787979000,
+      1369787981000,
+      1369787984000,
+      1369787987000,
+      1369787990000,
+      1369787994000,
+      1369788000000,
+      1369788004000,
+      1369788009000,
+      1369788014000,
+      1369788019000,
+      1369788024000,
+      1369788029000,
+      1369788034000,
+      1369788039000,
+      1369788044000,
+      1369788048000,
+      1369788052000,
+      1369788056000,
+      1369788060000,
+      1369788064000,
+      1369788066000,
+      1369788070000,
+      1369788071000,
+      1369788074000,
+      1369788075000,
+      1369788077000,
+      1369788078000,
+      1369788082000,
+      1369788083000,
+      1369788086000,
+      1369788088000,
+      1369788091000,
+      1369788094000,
+      1369788098000,
+      1369788101000,
+      1369788105000,
+      1369788110000,
+      1369788111000,
+      1369788114000,
+      1369788115000,
+      1369788118000,
+      1369788119000,
+      1369788122000,
+      1369788123000,
+      1369788126000,
+      1369788130000,
+      1369788134000,
+      1369788138000,
+      1369788142000,
+      1369788148000,
+      1369788171000,
+      1369788174000,
+      1369788177000,
+      1369788180000,
+      1369788183000,
+      1369788186000,
+      1369788189000,
+      1369788213000,
+      1369788229000,
+      1369788249000,
+      1369788264000,
+      1369788265000,
+      1369788267000,
+      1369788269000,
+      1369788271000,
+      1369788273000,
+      1369788276000,
+      1369788278000,
+      1369788282000,
+      1369788284000,
+      1369788288000,
+      1369788290000,
+      1369788291000,
+      1369788298000,
+      1369788299000,
+      1369788300000,
+      1369788318000,
+      1369788323000,
+      1369788324000,
+      1369788324000,
+      1369788328000,
+      1369788399000,
+      1369788400000,
+      1369788400000,
+      1369788517000,
+      1369788517000,
+      1369788518000,
+      1369788713000,
+      1369788714000,
+      1369788714000,
+      1369788795000,
+      1369788799000,
+      1369788811000,
+      1369788812000,
+      1369788813000,
+      1369788852000,
+      1369788853000,
+      1369788854000,
+      1369788895000,
+      1369788896000,
+      1369788897000,
+      1369788949000,
+      1369788950000,
+      1369788952000,
+      1369788965000,
+      1369788966000,
+      1369788967000,
+      1369789002000,
+      1369789003000,
+      1369789005000,
+      1369789049000
+    ],
+    "speed": [
+      24,
+      28,
+      29,
+      26,
+      26,
+      23,
+      25,
+      14,
+      22,
+      23,
+      30,
+      32,
+      31,
+      26,
+      30,
+      31,
+      30,
+      27,
+      23,
+      28,
+      31,
+      33,
+      34,
+      23,
+      31,
+      41,
+      37,
+      33,
+      31,
+      33,
+      31,
+      23,
+      24,
+      29,
+      30,
+      31,
+      27,
+      29,
+      30,
+      28,
+      25,
+      21,
+      13,
+      21,
+      44,
+      54,
+      59,
+      64,
+      66,
+      67,
+      68,
+      68,
+      69,
+      70,
+      70,
+      72,
+      73,
+      76,
+      77,
+      78,
+      84,
+      84,
+      86,
+      86,
+      86,
+      85,
+      86,
+      88,
+      86,
+      86,
+      85,
+      86,
+      86,
+      86,
+      85,
+      87,
+      90,
+      90,
+      90,
+      89,
+      89,
+      88,
+      86,
+      84,
+      83,
+      81,
+      79,
+      79,
+      77,
+      77,
+      76,
+      76,
+      75,
+      73,
+      71,
+      70,
+      71,
+      74,
+      77,
+      77,
+      79,
+      78,
+      77,
+      76,
+      80,
+      83,
+      83,
+      83,
+      84,
+      87,
+      88,
+      90,
+      93,
+      89,
+      90,
+      91,
+      90,
+      92,
+      92,
+      91,
+      85,
+      78,
+      73,
+      59,
+      55,
+      46,
+      52,
+      53,
+      54,
+      43,
+      36,
+      22,
+      29,
+      43,
+      54,
+      57,
+      59,
+      59,
+      58,
+      50,
+      52,
+      56,
+      59,
+      63,
+      58,
+      55,
+      54,
+      53,
+      50,
+      56,
+      55,
+      49,
+      44,
+      49,
+      52,
+      55,
+      59,
+      59,
+      59,
+      47,
+      39,
+      35,
+      51,
+      54,
+      56,
+      57,
+      56,
+      59,
+      61,
+      64,
+      68,
+      68,
+      67,
+      57,
+      48,
+      44,
+      47,
+      61,
+      59,
+      57,
+      56,
+      46,
+      38,
+      35,
+      45,
+      50,
+      50,
+      50,
+      50,
+      49,
+      54,
+      49,
+      53,
+      51,
+      57,
+      59,
+      58,
+      61,
+      64,
+      65,
+      66,
+      68,
+      68,
+      68,
+      70,
+      71,
+      71,
+      68,
+      68,
+      65,
+      67,
+      72,
+      72,
+      75,
+      75,
+      75,
+      74,
+      74,
+      74,
+      76,
+      77,
+      77,
+      77,
+      77,
+      77,
+      75,
+      77,
+      77,
+      79,
+      78,
+      77,
+      77,
+      77,
+      79,
+      77,
+      78,
+      78,
+      79,
+      79,
+      80,
+      82,
+      82,
+      83,
+      81,
+      79,
+      77,
+      76,
+      75,
+      75,
+      74,
+      74,
+      74,
+      75,
+      78,
+      81,
+      84,
+      84,
+      85,
+      86,
+      86,
+      86,
+      88,
+      88,
+      88,
+      89,
+      89,
+      90,
+      89,
+      87,
+      87,
+      88,
+      89,
+      91,
+      95,
+      89,
+      91,
+      91,
+      90,
+      90,
+      88,
+      89,
+      87,
+      88,
+      89,
+      89,
+      88,
+      88,
+      89,
+      89,
+      89,
+      89,
+      89,
+      88,
+      88,
+      89,
+      89,
+      90,
+      90,
+      89,
+      87,
+      87,
+      88,
+      89,
+      88,
+      89,
+      89,
+      88,
+      88,
+      89,
+      89,
+      89,
+      89,
+      89,
+      88,
+      88,
+      88,
+      89,
+      89,
+      88,
+      89,
+      89,
+      89,
+      89,
+      89,
+      89,
+      88,
+      91,
+      88,
+      89,
+      89,
+      91,
+      89,
+      88,
+      89,
+      89,
+      89,
+      89,
+      89,
+      89,
+      88,
+      89,
+      88,
+      88,
+      88,
+      89,
+      89,
+      90,
+      90,
+      89,
+      89,
+      89,
+      89,
+      89,
+      88,
+      88,
+      89,
+      90,
+      88,
+      89,
+      89,
+      88,
+      88,
+      88,
+      88,
+      89,
+      89,
+      89,
+      90,
+      90,
+      89,
+      88,
+      88,
+      88,
+      88,
+      88,
+      88,
+      88,
+      89,
+      90,
+      89,
+      90,
+      88,
+      88,
+      88,
+      89,
+      89,
+      90,
+      90,
+      89,
+      89,
+      87,
+      86,
+      83,
+      80,
+      77,
+      74,
+      72,
+      70,
+      70,
+      72,
+      72,
+      72,
+      71,
+      72,
+      71,
+      72,
+      72,
+      72,
+      72,
+      72,
+      72,
+      72,
+      72,
+      73,
+      73,
+      73,
+      72,
+      72,
+      71,
+      71,
+      71,
+      71,
+      72,
+      68,
+      64,
+      62,
+      58,
+      46,
+      37,
+      36,
+      57,
+      66,
+      66,
+      61,
+      60,
+      56,
+      57,
+      58,
+      58,
+      56,
+      56,
+      55,
+      54,
+      55,
+      56,
+      57,
+      58,
+      58,
+      56,
+      52,
+      51,
+      51,
+      50,
+      50,
+      51,
+      53,
+      55,
+      52,
+      51,
+      50,
+      50,
+      50,
+      49,
+      47,
+      45,
+      36,
+      15,
+      31,
+      41,
+      46,
+      48,
+      42,
+      42,
+      43,
+      43,
+      46,
+      49,
+      50,
+      50,
+      53,
+      54,
+      55,
+      57,
+      58,
+      59,
+      56,
+      55,
+      55,
+      55,
+      55,
+      55,
+      54,
+      55,
+      57,
+      59,
+      59,
+      59,
+      59,
+      59,
+      59,
+      59,
+      59,
+      59,
+      59,
+      60,
+      59,
+      60,
+      61,
+      63,
+      64,
+      65,
+      65,
+      66,
+      67,
+      65,
+      63,
+      64,
+      65,
+      65,
+      65,
+      67,
+      66,
+      66,
+      67,
+      67,
+      67,
+      67,
+      67,
+      66,
+      66,
+      68,
+      71,
+      77,
+      75,
+      74,
+      74,
+      73,
+      74,
+      74,
+      75,
+      74,
+      74,
+      75,
+      75,
+      75,
+      76,
+      74,
+      73,
+      73,
+      74,
+      74,
+      75,
+      74,
+      73,
+      74,
+      74,
+      74,
+      74,
+      74,
+      74,
+      74,
+      74,
+      75,
+      74,
+      75,
+      74,
+      74,
+      75,
+      73,
+      74,
+      74,
+      75,
+      76,
+      73,
+      73,
+      73,
+      73,
+      74,
+      75,
+      75,
+      74,
+      72,
+      72,
+      69,
+      67,
+      64,
+      49,
+      43,
+      20,
+      34,
+      42,
+      50,
+      48,
+      50,
+      50,
+      47,
+      41,
+      40,
+      41,
+      43,
+      47,
+      53,
+      57,
+      59,
+      60,
+      62,
+      64,
+      65,
+      66,
+      65,
+      64,
+      63,
+      62,
+      62,
+      64,
+      66,
+      68,
+      68,
+      68,
+      69,
+      70,
+      71,
+      72,
+      71,
+      73,
+      74,
+      74,
+      73,
+      73,
+      73,
+      71,
+      68,
+      65,
+      62,
+      59,
+      56,
+      48,
+      37,
+      14,
+      19,
+      34,
+      44,
+      49,
+      52,
+      55,
+      59,
+      62,
+      66,
+      68,
+      69,
+      72,
+      75,
+      77,
+      79,
+      77,
+      77,
+      75,
+      67,
+      37,
+      9,
+      21,
+      33,
+      43,
+      50,
+      54,
+      59,
+      61,
+      62,
+      66,
+      64,
+      60,
+      48,
+      36,
+      36,
+      28,
+      23,
+      29,
+      22,
+      30,
+      23,
+      23,
+      23,
+      24,
+      23,
+      26,
+      27,
+      30,
+      31,
+      30,
+      26,
+      23,
+      21,
+      23,
+      28,
+      29,
+      30,
+      27,
+      22,
+      20,
+      21,
+      23,
+      20,
+      16,
+      14,
+      14,
+      13,
+      18,
+      21,
+      31,
+      32,
+      32,
+      32,
+      31,
+      32,
+      32,
+      34,
+      33,
+      32,
+      27,
+      16,
+      32,
+      40,
+      46,
+      46,
+      44,
+      35,
+      9,
+      0,
+      0,
+      0,
+      32,
+      35,
+      35,
+      33,
+      32,
+      27,
+      22,
+      23,
+      21,
+      23,
+      20,
+      0,
+      13,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "altitude": [
+      336,
+      331,
+      328,
+      325,
+      322,
+      319,
+      315,
+      314,
+      313,
+      311,
+      310,
+      310,
+      311,
+      308,
+      308,
+      306,
+      303,
+      301,
+      300,
+      299,
+      295,
+      293,
+      293,
+      290,
+      289,
+      286,
+      285,
+      283,
+      281,
+      278,
+      275,
+      268,
+      255,
+      250,
+      246,
+      242,
+      240,
+      239,
+      239,
+      237,
+      236,
+      231,
+      223,
+      215,
+      215,
+      216,
+      217,
+      218,
+      218,
+      218,
+      218,
+      218,
+      219,
+      220,
+      220,
+      221,
+      223,
+      225,
+      228,
+      228,
+      232,
+      234,
+      236,
+      238,
+      240,
+      244,
+      247,
+      250,
+      251,
+      253,
+      255,
+      257,
+      259,
+      261,
+      264,
+      266,
+      270,
+      273,
+      277,
+      279,
+      279,
+      280,
+      280,
+      280,
+      281,
+      284,
+      289,
+      294,
+      298,
+      301,
+      302,
+      307,
+      311,
+      316,
+      317,
+      318,
+      322,
+      326,
+      329,
+      328,
+      328,
+      328,
+      328,
+      328,
+      328,
+      329,
+      330,
+      330,
+      330,
+      329,
+      330,
+      330,
+      329,
+      327,
+      326,
+      323,
+      322,
+      320,
+      319,
+      318,
+      316,
+      314,
+      314,
+      314,
+      312,
+      311,
+      311,
+      311,
+      311,
+      311,
+      310,
+      309,
+      310,
+      309,
+      309,
+      308,
+      307,
+      307,
+      306,
+      306,
+      306,
+      305,
+      305,
+      304,
+      304,
+      296,
+      290,
+      289,
+      285,
+      284,
+      282,
+      280,
+      279,
+      278,
+      277,
+      276,
+      276,
+      192,
+      195,
+      196,
+      199,
+      200,
+      201,
+      202,
+      203,
+      203,
+      203,
+      202,
+      202,
+      203,
+      200,
+      199,
+      199,
+      197,
+      199,
+      199,
+      199,
+      198,
+      197,
+      198,
+      199,
+      199,
+      198,
+      198,
+      200,
+      199,
+      201,
+      200,
+      199,
+      200,
+      199,
+      198,
+      198,
+      198,
+      193,
+      192,
+      190,
+      189,
+      188,
+      188,
+      187,
+      186,
+      184,
+      178,
+      176,
+      175,
+      172,
+      161,
+      156,
+      153,
+      151,
+      147,
+      147,
+      146,
+      144,
+      142,
+      141,
+      141,
+      141,
+      139,
+      138,
+      137,
+      137,
+      137,
+      138,
+      135,
+      132,
+      129,
+      129,
+      127,
+      127,
+      127,
+      125,
+      125,
+      123,
+      122,
+      122,
+      122,
+      122,
+      122,
+      122,
+      121,
+      121,
+      121,
+      120,
+      120,
+      121,
+      121,
+      120,
+      122,
+      123,
+      123,
+      122,
+      120,
+      117,
+      116,
+      115,
+      114,
+      114,
+      114,
+      113,
+      113,
+      113,
+      113,
+      113,
+      112,
+      109,
+      108,
+      109,
+      109,
+      110,
+      110,
+      108,
+      107,
+      107,
+      104,
+      100,
+      98,
+      95,
+      94,
+      94,
+      94,
+      93,
+      93,
+      93,
+      94,
+      95,
+      95,
+      95,
+      95,
+      94,
+      95,
+      95,
+      95,
+      95,
+      94,
+      92,
+      91,
+      90,
+      90,
+      89,
+      89,
+      87,
+      87,
+      87,
+      87,
+      86,
+      86,
+      85,
+      85,
+      84,
+      84,
+      84,
+      83,
+      83,
+      83,
+      83,
+      84,
+      84,
+      84,
+      84,
+      84,
+      84,
+      83,
+      83,
+      82,
+      83,
+      83,
+      83,
+      83,
+      84,
+      83,
+      83,
+      83,
+      83,
+      83,
+      83,
+      84,
+      85,
+      84,
+      84,
+      85,
+      85,
+      87,
+      87,
+      88,
+      88,
+      87,
+      87,
+      86,
+      86,
+      86,
+      85,
+      84,
+      83,
+      84,
+      83,
+      81,
+      81,
+      81,
+      82,
+      81,
+      82,
+      83,
+      84,
+      84,
+      84,
+      83,
+      83,
+      82,
+      81,
+      81,
+      82,
+      82,
+      82,
+      83,
+      83,
+      84,
+      84,
+      84,
+      84,
+      83,
+      83,
+      82,
+      81,
+      81,
+      80,
+      78,
+      77,
+      76,
+      75,
+      74,
+      72,
+      72,
+      71,
+      71,
+      71,
+      71,
+      71,
+      70,
+      70,
+      70,
+      69,
+      69,
+      69,
+      69,
+      69,
+      69,
+      69,
+      70,
+      70,
+      71,
+      71,
+      70,
+      69,
+      68,
+      67,
+      66,
+      65,
+      65,
+      65,
+      65,
+      66,
+      66,
+      64,
+      64,
+      64,
+      64,
+      65,
+      65,
+      64,
+      65,
+      65,
+      65,
+      65,
+      64,
+      62,
+      61,
+      62,
+      62,
+      61,
+      61,
+      61,
+      61,
+      62,
+      62,
+      61,
+      62,
+      61,
+      61,
+      62,
+      62,
+      62,
+      62,
+      62,
+      61,
+      61,
+      61,
+      60,
+      60,
+      60,
+      60,
+      60,
+      60,
+      60,
+      59,
+      58,
+      58,
+      58,
+      58,
+      60,
+      61,
+      63,
+      64,
+      65,
+      65,
+      64,
+      64,
+      63,
+      62,
+      62,
+      62,
+      62,
+      61,
+      61,
+      62,
+      62,
+      62,
+      61,
+      61,
+      62,
+      62,
+      62,
+      61,
+      61,
+      62,
+      61,
+      60,
+      61,
+      60,
+      61,
+      61,
+      61,
+      61,
+      60,
+      60,
+      61,
+      62,
+      63,
+      63,
+      63,
+      63,
+      64,
+      64,
+      65,
+      66,
+      66,
+      66,
+      66,
+      65,
+      65,
+      65,
+      64,
+      64,
+      63,
+      62,
+      63,
+      64,
+      64,
+      65,
+      65,
+      67,
+      66,
+      68,
+      70,
+      72,
+      72,
+      73,
+      73,
+      74,
+      74,
+      73,
+      73,
+      72,
+      72,
+      70,
+      68,
+      67,
+      67,
+      68,
+      68,
+      68,
+      68,
+      68,
+      69,
+      68,
+      68,
+      67,
+      67,
+      66,
+      66,
+      66,
+      67,
+      67,
+      67,
+      68,
+      69,
+      68,
+      69,
+      69,
+      69,
+      69,
+      70,
+      69,
+      70,
+      69,
+      69,
+      68,
+      67,
+      67,
+      67,
+      67,
+      65,
+      64,
+      63,
+      63,
+      62,
+      61,
+      59,
+      59,
+      58,
+      58,
+      59,
+      59,
+      59,
+      62,
+      63,
+      63,
+      63,
+      62,
+      62,
+      61,
+      61,
+      61,
+      61,
+      61,
+      61,
+      61,
+      62,
+      62,
+      60,
+      60,
+      60,
+      60,
+      60,
+      60,
+      59,
+      58,
+      57,
+      56,
+      56,
+      56,
+      56,
+      56,
+      55,
+      55,
+      55,
+      55,
+      54,
+      54,
+      54,
+      55,
+      55,
+      55,
+      55,
+      55,
+      54,
+      55,
+      55,
+      54,
+      54,
+      54,
+      55,
+      54,
+      53,
+      53,
+      53,
+      53,
+      52,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      50,
+      49,
+      49,
+      49,
+      49,
+      48,
+      48,
+      48,
+      48,
+      47,
+      47,
+      48,
+      47,
+      47,
+      46,
+      46,
+      45,
+      44,
+      44,
+      47,
+      48,
+      47,
+      47,
+      49,
+      48,
+      48,
+      48,
+      46,
+      45,
+      45,
+      45,
+      45,
+      45,
+      46,
+      46,
+      47,
+      47,
+      47,
+      48,
+      48,
+      48,
+      48,
+      47,
+      46,
+      45,
+      45,
+      46,
+      46,
+      47,
+      48,
+      49,
+      49,
+      49,
+      50,
+      50,
+      50,
+      49,
+      48,
+      48,
+      48,
+      48,
+      49,
+      48,
+      47,
+      48,
+      48,
+      48,
+      48,
+      48,
+      49,
+      49,
+      49,
+      47,
+      48,
+      48,
+      47,
+      49,
+      48,
+      48,
+      0,
+      47,
+      46,
+      46,
+      0,
+      46,
+      46,
+      46,
+      0,
+      46,
+      46,
+      46,
+      0,
+      42,
+      0,
+      42,
+      43,
+      43,
+      0,
+      43,
+      0,
+      43,
+      43,
+      0,
+      43,
+      43,
+      0,
+      0,
+      43,
+      43,
+      43,
+      43,
+      0,
+      43,
+      43,
+      0,
+      43,
+      43,
+      0,
+      43
+    ],
+    "heading": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "horizontal_accuracy": [
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      4,
+      5,
+      5,
+      5,
+      5,
+      6,
+      7,
+      8,
+      7,
+      7,
+      7,
+      6,
+      6,
+      7,
+      7,
+      6,
+      6,
+      5,
+      4,
+      4,
+      4,
+      5,
+      5,
+      6,
+      6,
+      5,
+      5,
+      6,
+      7,
+      8,
+      8,
+      8,
+      8,
+      8,
+      8,
+      6,
+      5,
+      5,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      5,
+      5,
+      6,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      6,
+      5,
+      6,
+      6,
+      6,
+      7,
+      8,
+      10,
+      10,
+      10,
+      9,
+      8,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      7,
+      8,
+      10,
+      9,
+      10,
+      10,
+      9,
+      7,
+      7,
+      7,
+      7,
+      8,
+      10,
+      8,
+      8,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      6,
+      7,
+      7,
+      6,
+      5,
+      4,
+      4,
+      6,
+      6,
+      5,
+      6,
+      6,
+      5,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      26,
+      4,
+      3,
+      3,
+      45,
+      3,
+      3,
+      3,
+      28,
+      3,
+      3,
+      3,
+      27,
+      5,
+      25,
+      5,
+      4,
+      4,
+      25,
+      4,
+      27,
+      4,
+      4,
+      24,
+      4,
+      4,
+      30,
+      26,
+      13,
+      15,
+      5,
+      5,
+      25,
+      6,
+      6,
+      25,
+      4,
+      5,
+      24,
+      4
+    ],
+    "vertical_accuracy": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "raw": []
+  },
+  "bbox": [
+    [
+      -123.53612491,
+      44.44482961
+    ],
+    [
+      -123.53612491,
+      44.55695542
+    ],
+    [
+      -123.2628745,
+      44.55695542
+    ],
+    [
+      -123.2628745,
+      44.44482961
+    ]
+  ]
+};
+
+
+var drive = {
+  "type": "Feature",
+  "geometry": {
+    "type": "MultiPoint",
+    "coordinates": [
+      [
+        -123.2653968,
+        44.54962188
+      ],
+      [
+        -123.26542599,
+        44.54951009
+      ],
+      [
+        -123.26547225,
+        44.5492899
+      ],
+      [
+        -123.26549654,
+        44.54917343
+      ],
+      [
+        -123.26554281,
+        44.54891614
+      ],
+      [
+        -123.26556555,
+        44.54878695
+      ],
+      [
+        -123.26560808,
+        44.54851984
+      ],
+      [
+        -123.26561995,
+        44.54839196
+      ],
+      [
+        -123.26565215,
+        44.54800062
+      ],
+      [
+        -123.26569247,
+        44.54760721
+      ],
+      [
+        -123.26574792,
+        44.54722007
+      ],
+      [
+        -123.26578896,
+        44.54682917
+      ],
+      [
+        -123.26582461,
+        44.54645322
+      ],
+      [
+        -123.26586197,
+        44.54609782
+      ],
+      [
+        -123.26589666,
+        44.54579504
+      ],
+      [
+        -123.26590807,
+        44.54571401
+      ],
+      [
+        -123.26593057,
+        44.54549186
+      ],
+      [
+        -123.26594982,
+        44.54541613
+      ],
+      [
+        -123.26595491,
+        44.54535095
+      ],
+      [
+        -123.26597049,
+        44.54518109
+      ],
+      [
+        -123.26599333,
+        44.54501792
+      ],
+      [
+        -123.26600236,
+        44.54483693
+      ],
+      [
+        -123.26601534,
+        44.54473309
+      ],
+      [
+        -123.26605076,
+        44.54453012
+      ],
+      [
+        -123.26608525,
+        44.54419806
+      ],
+      [
+        -123.26611214,
+        44.54385608
+      ],
+      [
+        -123.26614375,
+        44.54348167
+      ],
+      [
+        -123.26618797,
+        44.5431001
+      ],
+      [
+        -123.26622983,
+        44.54272769
+      ],
+      [
+        -123.26626606,
+        44.5423464
+      ],
+      [
+        -123.26628574,
+        44.5420917
+      ],
+      [
+        -123.26630186,
+        44.54196771
+      ],
+      [
+        -123.26632618,
+        44.54170957
+      ],
+      [
+        -123.26634178,
+        44.54157733
+      ],
+      [
+        -123.26635716,
+        44.54131612
+      ],
+      [
+        -123.26637671,
+        44.54118596
+      ],
+      [
+        -123.26640047,
+        44.54091701
+      ],
+      [
+        -123.26641868,
+        44.54077296
+      ],
+      [
+        -123.26643736,
+        44.54063844
+      ],
+      [
+        -123.26644412,
+        44.54049204
+      ],
+      [
+        -123.26646509,
+        44.5403517
+      ],
+      [
+        -123.26647582,
+        44.5402058
+      ],
+      [
+        -123.26649113,
+        44.54005965
+      ],
+      [
+        -123.26650648,
+        44.53991332
+      ],
+      [
+        -123.26651714,
+        44.53976474
+      ],
+      [
+        -123.26653307,
+        44.53960766
+      ],
+      [
+        -123.26655086,
+        44.53946206
+      ],
+      [
+        -123.26658852,
+        44.53930491
+      ],
+      [
+        -123.26659857,
+        44.53917055
+      ],
+      [
+        -123.26659745,
+        44.53902043
+      ],
+      [
+        -123.26664917,
+        44.5387342
+      ],
+      [
+        -123.26668718,
+        44.53843455
+      ],
+      [
+        -123.26672678,
+        44.53814207
+      ],
+      [
+        -123.26675634,
+        44.5378427
+      ],
+      [
+        -123.26679634,
+        44.53754431
+      ],
+      [
+        -123.26682742,
+        44.53724028
+      ],
+      [
+        -123.26685448,
+        44.53693909
+      ],
+      [
+        -123.26688895,
+        44.53665138
+      ],
+      [
+        -123.26692022,
+        44.53634566
+      ],
+      [
+        -123.26695427,
+        44.53604737
+      ],
+      [
+        -123.26696551,
+        44.53590054
+      ],
+      [
+        -123.26698494,
+        44.53574854
+      ],
+      [
+        -123.2670017,
+        44.53559873
+      ],
+      [
+        -123.26701926,
+        44.53544296
+      ],
+      [
+        -123.26703523,
+        44.53529422
+      ],
+      [
+        -123.26704312,
+        44.53514364
+      ],
+      [
+        -123.2670586,
+        44.53499597
+      ],
+      [
+        -123.26707128,
+        44.53484068
+      ],
+      [
+        -123.2670988,
+        44.53468398
+      ],
+      [
+        -123.26711722,
+        44.53452707
+      ],
+      [
+        -123.2671344,
+        44.53438066
+      ],
+      [
+        -123.26714814,
+        44.53422102
+      ],
+      [
+        -123.26715766,
+        44.5340727
+      ],
+      [
+        -123.26717965,
+        44.53391346
+      ],
+      [
+        -123.26719659,
+        44.53377891
+      ],
+      [
+        -123.26721917,
+        44.5336297
+      ],
+      [
+        -123.26723907,
+        44.53347759
+      ],
+      [
+        -123.2672618,
+        44.53332867
+      ],
+      [
+        -123.2673157,
+        44.53303079
+      ],
+      [
+        -123.26735503,
+        44.5327368
+      ],
+      [
+        -123.26738147,
+        44.5324391
+      ],
+      [
+        -123.2674151,
+        44.5321552
+      ],
+      [
+        -123.26743853,
+        44.53187826
+      ],
+      [
+        -123.26744424,
+        44.53160656
+      ],
+      [
+        -123.26746326,
+        44.53122664
+      ],
+      [
+        -123.2675081,
+        44.53083601
+      ],
+      [
+        -123.26754157,
+        44.53056117
+      ],
+      [
+        -123.26757076,
+        44.5302729
+      ],
+      [
+        -123.26761011,
+        44.52999344
+      ],
+      [
+        -123.26765207,
+        44.52970039
+      ],
+      [
+        -123.26770791,
+        44.52941153
+      ],
+      [
+        -123.26776413,
+        44.5291118
+      ],
+      [
+        -123.26779326,
+        44.52881322
+      ],
+      [
+        -123.26781256,
+        44.52852564
+      ],
+      [
+        -123.26783905,
+        44.52821506
+      ],
+      [
+        -123.26785862,
+        44.52792227
+      ],
+      [
+        -123.26787421,
+        44.52763006
+      ],
+      [
+        -123.26791075,
+        44.52732672
+      ],
+      [
+        -123.26793951,
+        44.52700113
+      ],
+      [
+        -123.26798464,
+        44.52664881
+      ],
+      [
+        -123.26800356,
+        44.5263178
+      ],
+      [
+        -123.26803836,
+        44.52599413
+      ],
+      [
+        -123.26806183,
+        44.52570957
+      ],
+      [
+        -123.26812024,
+        44.52538351
+      ],
+      [
+        -123.2681914,
+        44.52492832
+      ],
+      [
+        -123.26820723,
+        44.52458001
+      ],
+      [
+        -123.2682692,
+        44.52418099
+      ],
+      [
+        -123.26831116,
+        44.52378889
+      ],
+      [
+        -123.26832363,
+        44.52343379
+      ],
+      [
+        -123.26837467,
+        44.52315362
+      ],
+      [
+        -123.26843893,
+        44.52270056
+      ],
+      [
+        -123.26846951,
+        44.52228757
+      ],
+      [
+        -123.26850322,
+        44.52184872
+      ],
+      [
+        -123.2685453,
+        44.52146518
+      ],
+      [
+        -123.2686059,
+        44.52103568
+      ],
+      [
+        -123.26865746,
+        44.52064332
+      ],
+      [
+        -123.26868859,
+        44.52021735
+      ],
+      [
+        -123.26873203,
+        44.51982596
+      ],
+      [
+        -123.26879159,
+        44.5194292
+      ],
+      [
+        -123.26882603,
+        44.51901272
+      ],
+      [
+        -123.26885234,
+        44.51861022
+      ],
+      [
+        -123.26890242,
+        44.51819673
+      ],
+      [
+        -123.26893149,
+        44.51780045
+      ],
+      [
+        -123.26897624,
+        44.51740318
+      ],
+      [
+        -123.26902805,
+        44.51699623
+      ],
+      [
+        -123.26905345,
+        44.51663066
+      ],
+      [
+        -123.26907845,
+        44.51621528
+      ],
+      [
+        -123.26911866,
+        44.51580423
+      ],
+      [
+        -123.26916501,
+        44.51542341
+      ],
+      [
+        -123.26918917,
+        44.51506471
+      ],
+      [
+        -123.26924094,
+        44.51466664
+      ],
+      [
+        -123.26925848,
+        44.51429637
+      ],
+      [
+        -123.26928051,
+        44.51389784
+      ],
+      [
+        -123.26930765,
+        44.51354382
+      ],
+      [
+        -123.26935049,
+        44.51318392
+      ],
+      [
+        -123.26941652,
+        44.51282517
+      ],
+      [
+        -123.26941863,
+        44.51248692
+      ],
+      [
+        -123.26946991,
+        44.51213166
+      ],
+      [
+        -123.26948735,
+        44.51178657
+      ],
+      [
+        -123.26954343,
+        44.51145848
+      ],
+      [
+        -123.26955927,
+        44.51107967
+      ],
+      [
+        -123.26962467,
+        44.5107418
+      ],
+      [
+        -123.26963966,
+        44.51041988
+      ],
+      [
+        -123.2696979,
+        44.51005794
+      ],
+      [
+        -123.26971385,
+        44.50963898
+      ],
+      [
+        -123.2698249,
+        44.509232
+      ],
+      [
+        -123.26982347,
+        44.50880905
+      ],
+      [
+        -123.26987846,
+        44.5084522
+      ],
+      [
+        -123.26996621,
+        44.5081139
+      ],
+      [
+        -123.2702128,
+        44.50787621
+      ],
+      [
+        -123.27066785,
+        44.50785883
+      ],
+      [
+        -123.27111612,
+        44.50786233
+      ],
+      [
+        -123.27151837,
+        44.50787287
+      ],
+      [
+        -123.27191676,
+        44.50788428
+      ],
+      [
+        -123.27239609,
+        44.50795795
+      ],
+      [
+        -123.27284665,
+        44.50795282
+      ],
+      [
+        -123.27333535,
+        44.50792506
+      ],
+      [
+        -123.27379419,
+        44.50793612
+      ],
+      [
+        -123.27425046,
+        44.50795839
+      ],
+      [
+        -123.27467651,
+        44.50799484
+      ],
+      [
+        -123.27514714,
+        44.50795784
+      ],
+      [
+        -123.27568029,
+        44.50797874
+      ],
+      [
+        -123.27606637,
+        44.50798024
+      ],
+      [
+        -123.27650904,
+        44.50797213
+      ],
+      [
+        -123.27693933,
+        44.50795682
+      ],
+      [
+        -123.27732384,
+        44.50798106
+      ],
+      [
+        -123.27775075,
+        44.5079768
+      ],
+      [
+        -123.27822692,
+        44.50799683
+      ],
+      [
+        -123.27869918,
+        44.50800772
+      ],
+      [
+        -123.27920957,
+        44.50800499
+      ],
+      [
+        -123.2796613,
+        44.50800863
+      ],
+      [
+        -123.28016149,
+        44.5080131
+      ],
+      [
+        -123.28049185,
+        44.50801404
+      ],
+      [
+        -123.28066214,
+        44.50800893
+      ],
+      [
+        -123.28099296,
+        44.50800161
+      ],
+      [
+        -123.28118327,
+        44.50800626
+      ],
+      [
+        -123.28137336,
+        44.50801754
+      ],
+      [
+        -123.28156537,
+        44.50799738
+      ],
+      [
+        -123.28193886,
+        44.50799524
+      ],
+      [
+        -123.28211191,
+        44.50800172
+      ],
+      [
+        -123.2824819,
+        44.50802556
+      ],
+      [
+        -123.28266014,
+        44.5080181
+      ],
+      [
+        -123.2830382,
+        44.5080026
+      ],
+      [
+        -123.28342182,
+        44.50801892
+      ],
+      [
+        -123.28387671,
+        44.50800218
+      ],
+      [
+        -123.28416867,
+        44.5080047
+      ],
+      [
+        -123.28431939,
+        44.5079849
+      ],
+      [
+        -123.28458112,
+        44.5079823
+      ],
+      [
+        -123.28472501,
+        44.50797998
+      ],
+      [
+        -123.28500986,
+        44.50801972
+      ],
+      [
+        -123.28512373,
+        44.50806444
+      ],
+      [
+        -123.28529569,
+        44.50779383
+      ],
+      [
+        -123.28530725,
+        44.50750753
+      ],
+      [
+        -123.28530177,
+        44.50718423
+      ],
+      [
+        -123.28530171,
+        44.50685807
+      ],
+      [
+        -123.28530446,
+        44.50655372
+      ],
+      [
+        -123.28530304,
+        44.50626772
+      ],
+      [
+        -123.28530356,
+        44.50598914
+      ],
+      [
+        -123.28530931,
+        44.50569692
+      ],
+      [
+        -123.28531482,
+        44.50539092
+      ],
+      [
+        -123.285322,
+        44.50507938
+      ],
+      [
+        -123.28531355,
+        44.50479598
+      ],
+      [
+        -123.28520154,
+        44.50452862
+      ],
+      [
+        -123.28501689,
+        44.50424677
+      ],
+      [
+        -123.28494625,
+        44.50395744
+      ],
+      [
+        -123.28499372,
+        44.50427312
+      ],
+      [
+        -123.28518952,
+        44.50457574
+      ],
+      [
+        -123.28528259,
+        44.50484167
+      ],
+      [
+        -123.28528126,
+        44.50515073
+      ],
+      [
+        -123.28527731,
+        44.50546418
+      ],
+      [
+        -123.28528704,
+        44.5057864
+      ],
+      [
+        -123.28529865,
+        44.50610547
+      ],
+      [
+        -123.28529908,
+        44.50641184
+      ],
+      [
+        -123.28529543,
+        44.50672686
+      ],
+      [
+        -123.28529251,
+        44.50704394
+      ],
+      [
+        -123.28529733,
+        44.50735341
+      ],
+      [
+        -123.28530224,
+        44.50763654
+      ],
+      [
+        -123.28529372,
+        44.50792583
+      ],
+      [
+        -123.28571883,
+        44.50799392
+      ],
+      [
+        -123.28619153,
+        44.50799372
+      ],
+      [
+        -123.28671596,
+        44.50800565
+      ],
+      [
+        -123.28725073,
+        44.50803753
+      ],
+      [
+        -123.28779291,
+        44.50810782
+      ],
+      [
+        -123.28815997,
+        44.50817088
+      ],
+      [
+        -123.28869594,
+        44.50828794
+      ],
+      [
+        -123.2890606,
+        44.50838101
+      ],
+      [
+        -123.28942683,
+        44.50848273
+      ],
+      [
+        -123.28980364,
+        44.508587
+      ],
+      [
+        -123.29019785,
+        44.50869271
+      ],
+      [
+        -123.29060222,
+        44.50878614
+      ],
+      [
+        -123.29102174,
+        44.50886056
+      ],
+      [
+        -123.29145467,
+        44.50893041
+      ],
+      [
+        -123.29190466,
+        44.50898019
+      ],
+      [
+        -123.29235872,
+        44.50900369
+      ],
+      [
+        -123.29283125,
+        44.50901495
+      ],
+      [
+        -123.29330116,
+        44.50901782
+      ],
+      [
+        -123.29376741,
+        44.50901577
+      ],
+      [
+        -123.29422506,
+        44.50901686
+      ],
+      [
+        -123.29467811,
+        44.50901543
+      ],
+      [
+        -123.29513127,
+        44.50901405
+      ],
+      [
+        -123.29557586,
+        44.50901132
+      ],
+      [
+        -123.29601195,
+        44.50900795
+      ],
+      [
+        -123.29645616,
+        44.50900589
+      ],
+      [
+        -123.29690921,
+        44.50900717
+      ],
+      [
+        -123.29737067,
+        44.50900886
+      ],
+      [
+        -123.29784447,
+        44.50900357
+      ],
+      [
+        -123.29832146,
+        44.50899047
+      ],
+      [
+        -123.29879689,
+        44.50895556
+      ],
+      [
+        -123.2992733,
+        44.50890909
+      ],
+      [
+        -123.29974848,
+        44.50884388
+      ],
+      [
+        -123.30021398,
+        44.50876641
+      ],
+      [
+        -123.30067448,
+        44.50867722
+      ],
+      [
+        -123.30113502,
+        44.50857236
+      ],
+      [
+        -123.30159638,
+        44.50844595
+      ],
+      [
+        -123.30207027,
+        44.50830474
+      ],
+      [
+        -123.30258178,
+        44.50813572
+      ],
+      [
+        -123.30314826,
+        44.50791338
+      ],
+      [
+        -123.30374973,
+        44.50764059
+      ],
+      [
+        -123.30431989,
+        44.50735051
+      ],
+      [
+        -123.3048464,
+        44.50705293
+      ],
+      [
+        -123.3053446,
+        44.50676578
+      ],
+      [
+        -123.30581399,
+        44.50650216
+      ],
+      [
+        -123.30625349,
+        44.50625199
+      ],
+      [
+        -123.3066683,
+        44.50601322
+      ],
+      [
+        -123.30706462,
+        44.50578766
+      ],
+      [
+        -123.30744426,
+        44.50557189
+      ],
+      [
+        -123.30780813,
+        44.5053674
+      ],
+      [
+        -123.30814439,
+        44.50517248
+      ],
+      [
+        -123.30846886,
+        44.50498766
+      ],
+      [
+        -123.30877833,
+        44.50480672
+      ],
+      [
+        -123.30908201,
+        44.50463343
+      ],
+      [
+        -123.30939297,
+        44.5044621
+      ],
+      [
+        -123.30970771,
+        44.50428902
+      ],
+      [
+        -123.31001686,
+        44.50411527
+      ],
+      [
+        -123.31032783,
+        44.50393777
+      ],
+      [
+        -123.31063161,
+        44.50376996
+      ],
+      [
+        -123.3109379,
+        44.50360237
+      ],
+      [
+        -123.31138001,
+        44.50334752
+      ],
+      [
+        -123.31168026,
+        44.50318089
+      ],
+      [
+        -123.31204477,
+        44.5028814
+      ],
+      [
+        -123.31215185,
+        44.50250446
+      ],
+      [
+        -123.31215146,
+        44.5021014
+      ],
+      [
+        -123.31214819,
+        44.5018284
+      ],
+      [
+        -123.31214332,
+        44.50154676
+      ],
+      [
+        -123.31214426,
+        44.50124999
+      ],
+      [
+        -123.31213876,
+        44.50093959
+      ],
+      [
+        -123.31213674,
+        44.50062181
+      ],
+      [
+        -123.31213737,
+        44.50029874
+      ],
+      [
+        -123.31212527,
+        44.4999698
+      ],
+      [
+        -123.31211571,
+        44.49963635
+      ],
+      [
+        -123.31211154,
+        44.49928813
+      ],
+      [
+        -123.31210138,
+        44.49892656
+      ],
+      [
+        -123.3121009,
+        44.49856209
+      ],
+      [
+        -123.31209062,
+        44.49820845
+      ],
+      [
+        -123.3120978,
+        44.49790229
+      ],
+      [
+        -123.31227708,
+        44.49763439
+      ],
+      [
+        -123.31271828,
+        44.49761876
+      ],
+      [
+        -123.31329055,
+        44.49763228
+      ],
+      [
+        -123.31370836,
+        44.49763354
+      ],
+      [
+        -123.31414802,
+        44.49763152
+      ],
+      [
+        -123.31460255,
+        44.49763276
+      ],
+      [
+        -123.31505997,
+        44.49763691
+      ],
+      [
+        -123.31551041,
+        44.49763387
+      ],
+      [
+        -123.31596262,
+        44.4976387
+      ],
+      [
+        -123.31641481,
+        44.49763617
+      ],
+      [
+        -123.31687521,
+        44.49763613
+      ],
+      [
+        -123.317332,
+        44.497639
+      ],
+      [
+        -123.31776963,
+        44.49763913
+      ],
+      [
+        -123.31818072,
+        44.49764186
+      ],
+      [
+        -123.31856868,
+        44.49764653
+      ],
+      [
+        -123.31910669,
+        44.49763959
+      ],
+      [
+        -123.3195997,
+        44.49764157
+      ],
+      [
+        -123.32005304,
+        44.49764547
+      ],
+      [
+        -123.32047802,
+        44.49764202
+      ],
+      [
+        -123.32089381,
+        44.49763714
+      ],
+      [
+        -123.32128756,
+        44.49762738
+      ],
+      [
+        -123.32169112,
+        44.49760524
+      ],
+      [
+        -123.3221114,
+        44.49758589
+      ],
+      [
+        -123.3226689,
+        44.49756664
+      ],
+      [
+        -123.32309521,
+        44.49755962
+      ],
+      [
+        -123.32353485,
+        44.49755634
+      ],
+      [
+        -123.32397764,
+        44.49755262
+      ],
+      [
+        -123.32442471,
+        44.49754913
+      ],
+      [
+        -123.32487623,
+        44.49754206
+      ],
+      [
+        -123.32531351,
+        44.49753548
+      ],
+      [
+        -123.32575193,
+        44.49753054
+      ],
+      [
+        -123.32619663,
+        44.49753003
+      ],
+      [
+        -123.32664525,
+        44.4975254
+      ],
+      [
+        -123.3271001,
+        44.49751906
+      ],
+      [
+        -123.3275348,
+        44.49752422
+      ],
+      [
+        -123.32797699,
+        44.49752104
+      ],
+      [
+        -123.32842304,
+        44.49751434
+      ],
+      [
+        -123.32887203,
+        44.49748892
+      ],
+      [
+        -123.32933116,
+        44.49742425
+      ],
+      [
+        -123.32977924,
+        44.49731612
+      ],
+      [
+        -123.33021721,
+        44.49717428
+      ],
+      [
+        -123.33062848,
+        44.49700012
+      ],
+      [
+        -123.33101865,
+        44.4968053
+      ],
+      [
+        -123.33141499,
+        44.49659677
+      ],
+      [
+        -123.33180075,
+        44.4964111
+      ],
+      [
+        -123.33219052,
+        44.49624923
+      ],
+      [
+        -123.33257305,
+        44.4961206
+      ],
+      [
+        -123.33294266,
+        44.49602226
+      ],
+      [
+        -123.33333085,
+        44.4959356
+      ],
+      [
+        -123.33370122,
+        44.4958669
+      ],
+      [
+        -123.33409591,
+        44.49581221
+      ],
+      [
+        -123.33452815,
+        44.49576429
+      ],
+      [
+        -123.33498141,
+        44.4957507
+      ],
+      [
+        -123.33541251,
+        44.4957569
+      ],
+      [
+        -123.33582136,
+        44.49574457
+      ],
+      [
+        -123.33621712,
+        44.49574622
+      ],
+      [
+        -123.33676391,
+        44.4957477
+      ],
+      [
+        -123.33725207,
+        44.49574924
+      ],
+      [
+        -123.33764413,
+        44.49576678
+      ],
+      [
+        -123.33805979,
+        44.49575292
+      ],
+      [
+        -123.33863756,
+        44.4957575
+      ],
+      [
+        -123.33911555,
+        44.49578052
+      ],
+      [
+        -123.33962167,
+        44.49575904
+      ],
+      [
+        -123.34015956,
+        44.49575155
+      ],
+      [
+        -123.34073445,
+        44.49575321
+      ],
+      [
+        -123.34131071,
+        44.49574274
+      ],
+      [
+        -123.34188434,
+        44.49573333
+      ],
+      [
+        -123.3424513,
+        44.49572908
+      ],
+      [
+        -123.34301271,
+        44.49573156
+      ],
+      [
+        -123.34357879,
+        44.49573283
+      ],
+      [
+        -123.34414026,
+        44.49573511
+      ],
+      [
+        -123.34471566,
+        44.49572633
+      ],
+      [
+        -123.34529801,
+        44.49572321
+      ],
+      [
+        -123.3458739,
+        44.49572308
+      ],
+      [
+        -123.34644873,
+        44.49572121
+      ],
+      [
+        -123.34701798,
+        44.49572132
+      ],
+      [
+        -123.34757897,
+        44.49572099
+      ],
+      [
+        -123.3481284,
+        44.49572455
+      ],
+      [
+        -123.34867619,
+        44.49572373
+      ],
+      [
+        -123.34921667,
+        44.495722
+      ],
+      [
+        -123.34976011,
+        44.49572271
+      ],
+      [
+        -123.35030473,
+        44.49571927
+      ],
+      [
+        -123.35085844,
+        44.49572216
+      ],
+      [
+        -123.35140944,
+        44.49572321
+      ],
+      [
+        -123.35195816,
+        44.4957255
+      ],
+      [
+        -123.35250524,
+        44.49572224
+      ],
+      [
+        -123.35304311,
+        44.49572095
+      ],
+      [
+        -123.35358401,
+        44.49572192
+      ],
+      [
+        -123.35411605,
+        44.49572092
+      ],
+      [
+        -123.35465388,
+        44.49572139
+      ],
+      [
+        -123.35517871,
+        44.49571705
+      ],
+      [
+        -123.35569378,
+        44.49571897
+      ],
+      [
+        -123.35620354,
+        44.4957182
+      ],
+      [
+        -123.35670346,
+        44.4957207
+      ],
+      [
+        -123.35721153,
+        44.49572872
+      ],
+      [
+        -123.35771327,
+        44.495729
+      ],
+      [
+        -123.35822118,
+        44.49572683
+      ],
+      [
+        -123.35873183,
+        44.49572629
+      ],
+      [
+        -123.3592373,
+        44.49572602
+      ],
+      [
+        -123.35973822,
+        44.4957229
+      ],
+      [
+        -123.36019001,
+        44.49572018
+      ],
+      [
+        -123.36057744,
+        44.49572112
+      ],
+      [
+        -123.36109169,
+        44.49571671
+      ],
+      [
+        -123.3614977,
+        44.49571878
+      ],
+      [
+        -123.36188257,
+        44.49572292
+      ],
+      [
+        -123.36244944,
+        44.49572569
+      ],
+      [
+        -123.36288064,
+        44.49572518
+      ],
+      [
+        -123.36334922,
+        44.49572734
+      ],
+      [
+        -123.36384239,
+        44.49572813
+      ],
+      [
+        -123.36433142,
+        44.49572044
+      ],
+      [
+        -123.36480915,
+        44.49571815
+      ],
+      [
+        -123.36527872,
+        44.49572398
+      ],
+      [
+        -123.36573597,
+        44.49572349
+      ],
+      [
+        -123.36618142,
+        44.49571841
+      ],
+      [
+        -123.36661011,
+        44.49571124
+      ],
+      [
+        -123.36702607,
+        44.49569437
+      ],
+      [
+        -123.36743512,
+        44.49570439
+      ],
+      [
+        -123.36783667,
+        44.49570197
+      ],
+      [
+        -123.36835498,
+        44.49570285
+      ],
+      [
+        -123.36890494,
+        44.49569931
+      ],
+      [
+        -123.36931482,
+        44.49570853
+      ],
+      [
+        -123.36974171,
+        44.49572515
+      ],
+      [
+        -123.37013903,
+        44.49571648
+      ],
+      [
+        -123.37063985,
+        44.49573908
+      ],
+      [
+        -123.37101526,
+        44.49577574
+      ],
+      [
+        -123.3710185,
+        44.49544655
+      ],
+      [
+        -123.37103316,
+        44.49516986
+      ],
+      [
+        -123.3709993,
+        44.49484082
+      ],
+      [
+        -123.37099383,
+        44.49449754
+      ],
+      [
+        -123.37099542,
+        44.49413804
+      ],
+      [
+        -123.37098679,
+        44.4938664
+      ],
+      [
+        -123.37099046,
+        44.49353589
+      ],
+      [
+        -123.37097095,
+        44.49322152
+      ],
+      [
+        -123.37116214,
+        44.49298166
+      ],
+      [
+        -123.37160774,
+        44.49295892
+      ],
+      [
+        -123.37203894,
+        44.49295105
+      ],
+      [
+        -123.37244048,
+        44.49292254
+      ],
+      [
+        -123.37290311,
+        44.49292573
+      ],
+      [
+        -123.37334816,
+        44.4929285
+      ],
+      [
+        -123.37379852,
+        44.49293191
+      ],
+      [
+        -123.37424863,
+        44.49296014
+      ],
+      [
+        -123.37472623,
+        44.49300199
+      ],
+      [
+        -123.37510456,
+        44.49296198
+      ],
+      [
+        -123.37552123,
+        44.49283076
+      ],
+      [
+        -123.37578818,
+        44.49258255
+      ],
+      [
+        -123.37591054,
+        44.4922701
+      ],
+      [
+        -123.37614176,
+        44.4920108
+      ],
+      [
+        -123.37660209,
+        44.49189583
+      ],
+      [
+        -123.37698359,
+        44.49187534
+      ],
+      [
+        -123.37748763,
+        44.49187822
+      ],
+      [
+        -123.37796098,
+        44.49188959
+      ],
+      [
+        -123.37851541,
+        44.49187377
+      ],
+      [
+        -123.37892967,
+        44.49186476
+      ],
+      [
+        -123.3794427,
+        44.49187612
+      ],
+      [
+        -123.37992227,
+        44.49186635
+      ],
+      [
+        -123.38032558,
+        44.49185687
+      ],
+      [
+        -123.3807286,
+        44.49170288
+      ],
+      [
+        -123.38071413,
+        44.4913837
+      ],
+      [
+        -123.38067552,
+        44.49099647
+      ],
+      [
+        -123.38068004,
+        44.49057532
+      ],
+      [
+        -123.3806493,
+        44.49018127
+      ],
+      [
+        -123.38065822,
+        44.48978056
+      ],
+      [
+        -123.38063541,
+        44.48950783
+      ],
+      [
+        -123.38066589,
+        44.48923621
+      ],
+      [
+        -123.38065938,
+        44.48896584
+      ],
+      [
+        -123.38074567,
+        44.48857419
+      ],
+      [
+        -123.38086819,
+        44.48820204
+      ],
+      [
+        -123.38093831,
+        44.48788967
+      ],
+      [
+        -123.38105901,
+        44.48758823
+      ],
+      [
+        -123.38116212,
+        44.48728151
+      ],
+      [
+        -123.38124239,
+        44.48695183
+      ],
+      [
+        -123.38132536,
+        44.48668034
+      ],
+      [
+        -123.38137825,
+        44.48634231
+      ],
+      [
+        -123.38146762,
+        44.48605455
+      ],
+      [
+        -123.38155653,
+        44.48576059
+      ],
+      [
+        -123.38162581,
+        44.48542873
+      ],
+      [
+        -123.38174604,
+        44.4851108
+      ],
+      [
+        -123.38179848,
+        44.48482234
+      ],
+      [
+        -123.38186574,
+        44.48451146
+      ],
+      [
+        -123.38189214,
+        44.48421064
+      ],
+      [
+        -123.38188059,
+        44.48393254
+      ],
+      [
+        -123.38190531,
+        44.48365592
+      ],
+      [
+        -123.38188653,
+        44.48337571
+      ],
+      [
+        -123.38187748,
+        44.4830756
+      ],
+      [
+        -123.38187203,
+        44.48277833
+      ],
+      [
+        -123.38186665,
+        44.48249643
+      ],
+      [
+        -123.38184614,
+        44.48219587
+      ],
+      [
+        -123.3818615,
+        44.48182025
+      ],
+      [
+        -123.38182644,
+        44.48145469
+      ],
+      [
+        -123.38179821,
+        44.48113415
+      ],
+      [
+        -123.3818075,
+        44.48081927
+      ],
+      [
+        -123.38181516,
+        44.48046998
+      ],
+      [
+        -123.38182969,
+        44.48018133
+      ],
+      [
+        -123.38142443,
+        44.48010872
+      ],
+      [
+        -123.38095613,
+        44.48013091
+      ],
+      [
+        -123.38050773,
+        44.4800933
+      ],
+      [
+        -123.3801133,
+        44.47991334
+      ],
+      [
+        -123.37989449,
+        44.47966455
+      ],
+      [
+        -123.37964877,
+        44.47934839
+      ],
+      [
+        -123.37947065,
+        44.4790258
+      ],
+      [
+        -123.37929382,
+        44.47871623
+      ],
+      [
+        -123.37915566,
+        44.47841566
+      ],
+      [
+        -123.37904746,
+        44.47807761
+      ],
+      [
+        -123.37893591,
+        44.47775348
+      ],
+      [
+        -123.37881261,
+        44.47742721
+      ],
+      [
+        -123.37867368,
+        44.47710493
+      ],
+      [
+        -123.37853705,
+        44.47679302
+      ],
+      [
+        -123.37838013,
+        44.47649308
+      ],
+      [
+        -123.3781639,
+        44.47621945
+      ],
+      [
+        -123.37777489,
+        44.47614938
+      ],
+      [
+        -123.3772856,
+        44.47615972
+      ],
+      [
+        -123.37683285,
+        44.47616998
+      ],
+      [
+        -123.37645129,
+        44.47609842
+      ],
+      [
+        -123.37629116,
+        44.47577513
+      ],
+      [
+        -123.37627985,
+        44.47542872
+      ],
+      [
+        -123.37628547,
+        44.47504225
+      ],
+      [
+        -123.37627767,
+        44.47464541
+      ],
+      [
+        -123.37627707,
+        44.47436978
+      ],
+      [
+        -123.37626492,
+        44.47408973
+      ],
+      [
+        -123.37626376,
+        44.47381736
+      ],
+      [
+        -123.37624983,
+        44.47342884
+      ],
+      [
+        -123.37623088,
+        44.47308066
+      ],
+      [
+        -123.37620905,
+        44.47278668
+      ],
+      [
+        -123.37587018,
+        44.47261112
+      ],
+      [
+        -123.37535419,
+        44.47261523
+      ],
+      [
+        -123.37493552,
+        44.47260515
+      ],
+      [
+        -123.37448743,
+        44.47259839
+      ],
+      [
+        -123.37402546,
+        44.47259374
+      ],
+      [
+        -123.37355861,
+        44.47259492
+      ],
+      [
+        -123.37307001,
+        44.47259421
+      ],
+      [
+        -123.37259824,
+        44.47259307
+      ],
+      [
+        -123.37211538,
+        44.47259249
+      ],
+      [
+        -123.37162831,
+        44.47258302
+      ],
+      [
+        -123.37113823,
+        44.47258712
+      ],
+      [
+        -123.37064037,
+        44.47258386
+      ],
+      [
+        -123.3701334,
+        44.47258829
+      ],
+      [
+        -123.36962867,
+        44.47259171
+      ],
+      [
+        -123.36937022,
+        44.47258995
+      ],
+      [
+        -123.36912378,
+        44.47259053
+      ],
+      [
+        -123.36887163,
+        44.47258985
+      ],
+      [
+        -123.36863324,
+        44.4725898
+      ],
+      [
+        -123.36838715,
+        44.47258922
+      ],
+      [
+        -123.36814924,
+        44.47259149
+      ],
+      [
+        -123.36789711,
+        44.47259082
+      ],
+      [
+        -123.36766112,
+        44.47258752
+      ],
+      [
+        -123.36741742,
+        44.47258489
+      ],
+      [
+        -123.36717832,
+        44.47258291
+      ],
+      [
+        -123.36694024,
+        44.47258034
+      ],
+      [
+        -123.36670569,
+        44.47258004
+      ],
+      [
+        -123.36646746,
+        44.47258135
+      ],
+      [
+        -123.36623482,
+        44.47258804
+      ],
+      [
+        -123.36598461,
+        44.47258309
+      ],
+      [
+        -123.36574579,
+        44.47257845
+      ],
+      [
+        -123.3655338,
+        44.47257824
+      ],
+      [
+        -123.36533217,
+        44.47257509
+      ],
+      [
+        -123.36510568,
+        44.47257815
+      ],
+      [
+        -123.36489326,
+        44.47257721
+      ],
+      [
+        -123.36466218,
+        44.47257339
+      ],
+      [
+        -123.36436736,
+        44.47257262
+      ],
+      [
+        -123.36421666,
+        44.47257419
+      ],
+      [
+        -123.36390575,
+        44.47257971
+      ],
+      [
+        -123.36376444,
+        44.47257772
+      ],
+      [
+        -123.36345424,
+        44.47257271
+      ],
+      [
+        -123.3633442,
+        44.4725741
+      ],
+      [
+        -123.36294631,
+        44.47258196
+      ],
+      [
+        -123.36249621,
+        44.47256424
+      ],
+      [
+        -123.36290343,
+        44.47254914
+      ],
+      [
+        -123.36340386,
+        44.47256104
+      ],
+      [
+        -123.36390461,
+        44.47256896
+      ],
+      [
+        -123.36438534,
+        44.47257368
+      ],
+      [
+        -123.36483176,
+        44.47258048
+      ],
+      [
+        -123.36528989,
+        44.4725982
+      ],
+      [
+        -123.36541877,
+        44.4729019
+      ],
+      [
+        -123.36534492,
+        44.47324998
+      ],
+      [
+        -123.36528498,
+        44.47351778
+      ],
+      [
+        -123.36523051,
+        44.47380926
+      ],
+      [
+        -123.36517388,
+        44.47411295
+      ],
+      [
+        -123.36510765,
+        44.47441835
+      ],
+      [
+        -123.36504111,
+        44.47474828
+      ],
+      [
+        -123.36498086,
+        44.47505715
+      ],
+      [
+        -123.364906,
+        44.47537289
+      ],
+      [
+        -123.36483848,
+        44.47569095
+      ],
+      [
+        -123.36477777,
+        44.47601283
+      ],
+      [
+        -123.36471569,
+        44.47631687
+      ],
+      [
+        -123.36464285,
+        44.4766202
+      ],
+      [
+        -123.36455395,
+        44.47692703
+      ],
+      [
+        -123.36444889,
+        44.47724018
+      ],
+      [
+        -123.36425392,
+        44.47754867
+      ],
+      [
+        -123.36398455,
+        44.4778458
+      ],
+      [
+        -123.3637075,
+        44.47812319
+      ],
+      [
+        -123.36344706,
+        44.47839477
+      ],
+      [
+        -123.36323979,
+        44.47870751
+      ],
+      [
+        -123.36311147,
+        44.47908059
+      ],
+      [
+        -123.36303851,
+        44.47948787
+      ],
+      [
+        -123.36300979,
+        44.47989029
+      ],
+      [
+        -123.3629961,
+        44.48031362
+      ],
+      [
+        -123.36298102,
+        44.48070729
+      ],
+      [
+        -123.36296296,
+        44.48108138
+      ],
+      [
+        -123.36293987,
+        44.48148094
+      ],
+      [
+        -123.36292523,
+        44.48187751
+      ],
+      [
+        -123.36289383,
+        44.48226047
+      ],
+      [
+        -123.36286448,
+        44.48268227
+      ],
+      [
+        -123.3628803,
+        44.48308152
+      ],
+      [
+        -123.36285904,
+        44.48347825
+      ],
+      [
+        -123.36285033,
+        44.48388443
+      ],
+      [
+        -123.36285319,
+        44.48424317
+      ],
+      [
+        -123.36282358,
+        44.4846135
+      ],
+      [
+        -123.36283064,
+        44.48499237
+      ],
+      [
+        -123.36279845,
+        44.48538377
+      ],
+      [
+        -123.36280365,
+        44.48574292
+      ],
+      [
+        -123.36279103,
+        44.48614027
+      ],
+      [
+        -123.36275882,
+        44.48653038
+      ],
+      [
+        -123.36274116,
+        44.48691251
+      ],
+      [
+        -123.36273447,
+        44.48730966
+      ],
+      [
+        -123.36271833,
+        44.48767209
+      ],
+      [
+        -123.36271052,
+        44.48805876
+      ],
+      [
+        -123.36271529,
+        44.48844957
+      ],
+      [
+        -123.36271707,
+        44.48885722
+      ],
+      [
+        -123.36271342,
+        44.48923657
+      ],
+      [
+        -123.36272713,
+        44.48960986
+      ],
+      [
+        -123.36273137,
+        44.48998309
+      ],
+      [
+        -123.36277839,
+        44.49034337
+      ],
+      [
+        -123.36282615,
+        44.49072404
+      ],
+      [
+        -123.36285145,
+        44.49111262
+      ],
+      [
+        -123.36285707,
+        44.49149927
+      ],
+      [
+        -123.36290385,
+        44.49187654
+      ],
+      [
+        -123.36292367,
+        44.49224925
+      ],
+      [
+        -123.36294821,
+        44.49264102
+      ],
+      [
+        -123.36296194,
+        44.49301479
+      ],
+      [
+        -123.36288459,
+        44.4934073
+      ],
+      [
+        -123.36273562,
+        44.49377256
+      ],
+      [
+        -123.36253489,
+        44.49413239
+      ],
+      [
+        -123.36231906,
+        44.49448448
+      ],
+      [
+        -123.36205489,
+        44.49482926
+      ],
+      [
+        -123.36179433,
+        44.49518322
+      ],
+      [
+        -123.36157846,
+        44.49552327
+      ],
+      [
+        -123.36146593,
+        44.49585897
+      ],
+      [
+        -123.36142305,
+        44.49621261
+      ],
+      [
+        -123.36141416,
+        44.49651894
+      ],
+      [
+        -123.36141521,
+        44.49682134
+      ],
+      [
+        -123.36142282,
+        44.49714268
+      ],
+      [
+        -123.36144152,
+        44.49748082
+      ],
+      [
+        -123.36142261,
+        44.49779811
+      ],
+      [
+        -123.36141675,
+        44.49813024
+      ],
+      [
+        -123.36142061,
+        44.49844143
+      ],
+      [
+        -123.36142109,
+        44.49876812
+      ],
+      [
+        -123.36142069,
+        44.49908708
+      ],
+      [
+        -123.36143407,
+        44.49940369
+      ],
+      [
+        -123.36141717,
+        44.49971028
+      ],
+      [
+        -123.36141545,
+        44.50001698
+      ],
+      [
+        -123.36140439,
+        44.50033155
+      ],
+      [
+        -123.36140674,
+        44.50064952
+      ],
+      [
+        -123.36139215,
+        44.50097352
+      ],
+      [
+        -123.36139402,
+        44.50129888
+      ],
+      [
+        -123.36137066,
+        44.50162203
+      ],
+      [
+        -123.36137386,
+        44.50193885
+      ],
+      [
+        -123.36137358,
+        44.50226545
+      ],
+      [
+        -123.36136434,
+        44.5026049
+      ],
+      [
+        -123.36136304,
+        44.50295191
+      ],
+      [
+        -123.36137093,
+        44.50329056
+      ],
+      [
+        -123.36138476,
+        44.50362755
+      ],
+      [
+        -123.36139781,
+        44.50397618
+      ],
+      [
+        -123.36139632,
+        44.50432095
+      ],
+      [
+        -123.3613971,
+        44.50467597
+      ],
+      [
+        -123.36139774,
+        44.50502173
+      ],
+      [
+        -123.36139644,
+        44.50536213
+      ],
+      [
+        -123.36138866,
+        44.50571724
+      ],
+      [
+        -123.36138144,
+        44.50608813
+      ],
+      [
+        -123.36137998,
+        44.50644445
+      ],
+      [
+        -123.36137587,
+        44.50681541
+      ],
+      [
+        -123.36138115,
+        44.5072001
+      ],
+      [
+        -123.36139523,
+        44.50757645
+      ],
+      [
+        -123.36139261,
+        44.507952
+      ],
+      [
+        -123.36141138,
+        44.50831719
+      ],
+      [
+        -123.36140426,
+        44.50864671
+      ],
+      [
+        -123.36138473,
+        44.50897868
+      ],
+      [
+        -123.36137849,
+        44.50930426
+      ],
+      [
+        -123.36134047,
+        44.50963618
+      ],
+      [
+        -123.36135915,
+        44.50995462
+      ],
+      [
+        -123.36137026,
+        44.51029629
+      ],
+      [
+        -123.3613762,
+        44.5106353
+      ],
+      [
+        -123.36131503,
+        44.51096782
+      ],
+      [
+        -123.36113466,
+        44.51128083
+      ],
+      [
+        -123.36082954,
+        44.51158389
+      ],
+      [
+        -123.36054524,
+        44.51189159
+      ],
+      [
+        -123.36025421,
+        44.51217325
+      ],
+      [
+        -123.36001114,
+        44.51245718
+      ],
+      [
+        -123.35987299,
+        44.51279487
+      ],
+      [
+        -123.35985717,
+        44.51313432
+      ],
+      [
+        -123.3602277,
+        44.5133997
+      ],
+      [
+        -123.36056287,
+        44.51364922
+      ],
+      [
+        -123.36095109,
+        44.51388464
+      ],
+      [
+        -123.36138379,
+        44.5141023
+      ],
+      [
+        -123.3618181,
+        44.51435051
+      ],
+      [
+        -123.36222187,
+        44.51457467
+      ],
+      [
+        -123.36263918,
+        44.51481453
+      ],
+      [
+        -123.36306052,
+        44.51504774
+      ],
+      [
+        -123.36346434,
+        44.51529273
+      ],
+      [
+        -123.36387324,
+        44.5155298
+      ],
+      [
+        -123.36427573,
+        44.51576239
+      ],
+      [
+        -123.36466981,
+        44.51598443
+      ],
+      [
+        -123.36507139,
+        44.51623301
+      ],
+      [
+        -123.36546163,
+        44.5164847
+      ],
+      [
+        -123.36583731,
+        44.51672113
+      ],
+      [
+        -123.36622329,
+        44.51694135
+      ],
+      [
+        -123.36655692,
+        44.51715792
+      ],
+      [
+        -123.36683566,
+        44.51734066
+      ],
+      [
+        -123.36708619,
+        44.51771857
+      ],
+      [
+        -123.36713373,
+        44.51805205
+      ],
+      [
+        -123.36715191,
+        44.51838168
+      ],
+      [
+        -123.36716909,
+        44.51875543
+      ],
+      [
+        -123.36720218,
+        44.51908413
+      ],
+      [
+        -123.36721678,
+        44.51943734
+      ],
+      [
+        -123.36725533,
+        44.51980132
+      ],
+      [
+        -123.36728599,
+        44.52016355
+      ],
+      [
+        -123.36733928,
+        44.52051227
+      ],
+      [
+        -123.36736583,
+        44.5208765
+      ],
+      [
+        -123.36740184,
+        44.52122961
+      ],
+      [
+        -123.36744832,
+        44.52157524
+      ],
+      [
+        -123.36749248,
+        44.52191219
+      ],
+      [
+        -123.36752064,
+        44.52228549
+      ],
+      [
+        -123.367545,
+        44.52263567
+      ],
+      [
+        -123.36758798,
+        44.52299975
+      ],
+      [
+        -123.36762097,
+        44.52337038
+      ],
+      [
+        -123.36765269,
+        44.52370824
+      ],
+      [
+        -123.36771761,
+        44.52407281
+      ],
+      [
+        -123.36777188,
+        44.52443368
+      ],
+      [
+        -123.36786312,
+        44.52480202
+      ],
+      [
+        -123.36795255,
+        44.52515584
+      ],
+      [
+        -123.36805044,
+        44.52550058
+      ],
+      [
+        -123.3681332,
+        44.52585043
+      ],
+      [
+        -123.36824639,
+        44.52621328
+      ],
+      [
+        -123.36836139,
+        44.52659395
+      ],
+      [
+        -123.36848099,
+        44.52697476
+      ],
+      [
+        -123.36858801,
+        44.52734381
+      ],
+      [
+        -123.36868571,
+        44.52768466
+      ],
+      [
+        -123.36876652,
+        44.52804732
+      ],
+      [
+        -123.36887051,
+        44.52839267
+      ],
+      [
+        -123.36888905,
+        44.52872868
+      ],
+      [
+        -123.36886609,
+        44.52904234
+      ],
+      [
+        -123.3687869,
+        44.52931052
+      ],
+      [
+        -123.36864168,
+        44.5295885
+      ],
+      [
+        -123.36850086,
+        44.52987966
+      ],
+      [
+        -123.36835275,
+        44.5301667
+      ],
+      [
+        -123.36821015,
+        44.5304506
+      ],
+      [
+        -123.36813521,
+        44.53074289
+      ],
+      [
+        -123.36809417,
+        44.5310493
+      ],
+      [
+        -123.36808307,
+        44.53135268
+      ],
+      [
+        -123.36807709,
+        44.53166551
+      ],
+      [
+        -123.36806277,
+        44.53196998
+      ],
+      [
+        -123.3680463,
+        44.53227926
+      ],
+      [
+        -123.36803965,
+        44.53259274
+      ],
+      [
+        -123.36804211,
+        44.53291313
+      ],
+      [
+        -123.36801791,
+        44.53322385
+      ],
+      [
+        -123.36799434,
+        44.53352872
+      ],
+      [
+        -123.36798858,
+        44.53383712
+      ],
+      [
+        -123.36796247,
+        44.5341586
+      ],
+      [
+        -123.36795658,
+        44.53448844
+      ],
+      [
+        -123.36795352,
+        44.53482638
+      ],
+      [
+        -123.36793744,
+        44.5351432
+      ],
+      [
+        -123.36793308,
+        44.53543689
+      ],
+      [
+        -123.36794899,
+        44.53572842
+      ],
+      [
+        -123.36794201,
+        44.53604456
+      ],
+      [
+        -123.3679144,
+        44.53635445
+      ],
+      [
+        -123.36789605,
+        44.53665071
+      ],
+      [
+        -123.36789202,
+        44.53706667
+      ],
+      [
+        -123.36790227,
+        44.5373534
+      ],
+      [
+        -123.36791436,
+        44.5377419
+      ],
+      [
+        -123.36792139,
+        44.53806974
+      ],
+      [
+        -123.367915,
+        44.5383973
+      ],
+      [
+        -123.36787962,
+        44.53868981
+      ],
+      [
+        -123.3678659,
+        44.5390235
+      ],
+      [
+        -123.3678325,
+        44.53929856
+      ],
+      [
+        -123.36783567,
+        44.53961652
+      ],
+      [
+        -123.36780379,
+        44.5399079
+      ],
+      [
+        -123.36782765,
+        44.54022154
+      ],
+      [
+        -123.3678069,
+        44.54055044
+      ],
+      [
+        -123.36775867,
+        44.54082702
+      ],
+      [
+        -123.36769652,
+        44.5411808
+      ],
+      [
+        -123.36770418,
+        44.54150015
+      ],
+      [
+        -123.36773166,
+        44.54183987
+      ],
+      [
+        -123.36774199,
+        44.54213937
+      ],
+      [
+        -123.3681235,
+        44.54227766
+      ],
+      [
+        -123.36856158,
+        44.5422959
+      ],
+      [
+        -123.36896913,
+        44.54231307
+      ],
+      [
+        -123.36936627,
+        44.5423194
+      ],
+      [
+        -123.36978548,
+        44.54234806
+      ],
+      [
+        -123.37020903,
+        44.54234748
+      ],
+      [
+        -123.37065816,
+        44.54234615
+      ],
+      [
+        -123.37108325,
+        44.54235983
+      ],
+      [
+        -123.37146003,
+        44.54237851
+      ],
+      [
+        -123.37183894,
+        44.54239259
+      ],
+      [
+        -123.37223681,
+        44.54240624
+      ],
+      [
+        -123.37262286,
+        44.54242518
+      ],
+      [
+        -123.37303438,
+        44.5424402
+      ],
+      [
+        -123.37351583,
+        44.54245531
+      ],
+      [
+        -123.37383987,
+        44.54227731
+      ],
+      [
+        -123.37383196,
+        44.54195434
+      ],
+      [
+        -123.37383654,
+        44.5416236
+      ],
+      [
+        -123.37384348,
+        44.5413155
+      ],
+      [
+        -123.37387057,
+        44.54098763
+      ],
+      [
+        -123.37389542,
+        44.54063022
+      ],
+      [
+        -123.37390416,
+        44.54036024
+      ],
+      [
+        -123.37393021,
+        44.54002603
+      ],
+      [
+        -123.37396232,
+        44.53973402
+      ],
+      [
+        -123.37397401,
+        44.53944478
+      ],
+      [
+        -123.37374496,
+        44.53919767
+      ],
+      [
+        -123.37329827,
+        44.53918978
+      ],
+      [
+        -123.37275801,
+        44.53914873
+      ],
+      [
+        -123.37237788,
+        44.53916578
+      ],
+      [
+        -123.37181974,
+        44.53916483
+      ],
+      [
+        -123.37129244,
+        44.53915226
+      ],
+      [
+        -123.37076351,
+        44.53913647
+      ],
+      [
+        -123.37022045,
+        44.53912019
+      ],
+      [
+        -123.36967466,
+        44.53910229
+      ],
+      [
+        -123.36913869,
+        44.5390945
+      ],
+      [
+        -123.36864067,
+        44.53908554
+      ],
+      [
+        -123.36820487,
+        44.53909592
+      ],
+      [
+        -123.36781846,
+        44.53910652
+      ],
+      [
+        -123.36729566,
+        44.539101
+      ],
+      [
+        -123.36681229,
+        44.53908135
+      ],
+      [
+        -123.36633677,
+        44.53907648
+      ],
+      [
+        -123.36586587,
+        44.53909134
+      ],
+      [
+        -123.36543583,
+        44.53918949
+      ],
+      [
+        -123.36507294,
+        44.53938391
+      ],
+      [
+        -123.36484442,
+        44.53965598
+      ],
+      [
+        -123.36453922,
+        44.53989085
+      ],
+      [
+        -123.36407934,
+        44.5400364
+      ],
+      [
+        -123.36354648,
+        44.54002754
+      ],
+      [
+        -123.36299412,
+        44.54000902
+      ],
+      [
+        -123.36244989,
+        44.53999501
+      ],
+      [
+        -123.36192411,
+        44.53996992
+      ],
+      [
+        -123.36140626,
+        44.53996283
+      ],
+      [
+        -123.36089448,
+        44.53995435
+      ],
+      [
+        -123.3604195,
+        44.53995083
+      ],
+      [
+        -123.35993781,
+        44.53993368
+      ],
+      [
+        -123.35945167,
+        44.5399286
+      ],
+      [
+        -123.35896432,
+        44.53992065
+      ],
+      [
+        -123.35844079,
+        44.53991354
+      ],
+      [
+        -123.3580599,
+        44.53991998
+      ],
+      [
+        -123.3576619,
+        44.53994369
+      ],
+      [
+        -123.35726352,
+        44.53997553
+      ],
+      [
+        -123.35683844,
+        44.54001482
+      ],
+      [
+        -123.35641025,
+        44.54007779
+      ],
+      [
+        -123.35601564,
+        44.54013913
+      ],
+      [
+        -123.35559222,
+        44.54020833
+      ],
+      [
+        -123.35516143,
+        44.54027658
+      ],
+      [
+        -123.35472893,
+        44.54036935
+      ],
+      [
+        -123.3542955,
+        44.54044764
+      ],
+      [
+        -123.35387838,
+        44.54052771
+      ],
+      [
+        -123.35345842,
+        44.54060082
+      ],
+      [
+        -123.35302709,
+        44.54067578
+      ],
+      [
+        -123.35260504,
+        44.5407514
+      ],
+      [
+        -123.35216942,
+        44.54082992
+      ],
+      [
+        -123.35174408,
+        44.540909
+      ],
+      [
+        -123.35131936,
+        44.54098493
+      ],
+      [
+        -123.35089852,
+        44.54106325
+      ],
+      [
+        -123.35046616,
+        44.54113647
+      ],
+      [
+        -123.35003257,
+        44.541214
+      ],
+      [
+        -123.34959196,
+        44.54129491
+      ],
+      [
+        -123.34914326,
+        44.54136874
+      ],
+      [
+        -123.3486948,
+        44.54145045
+      ],
+      [
+        -123.34825091,
+        44.54153397
+      ],
+      [
+        -123.34780619,
+        44.54161201
+      ],
+      [
+        -123.34737654,
+        44.54169485
+      ],
+      [
+        -123.34693627,
+        44.54177226
+      ],
+      [
+        -123.3465053,
+        44.54184768
+      ],
+      [
+        -123.34605872,
+        44.54193055
+      ],
+      [
+        -123.34560894,
+        44.54200864
+      ],
+      [
+        -123.34515577,
+        44.54207941
+      ],
+      [
+        -123.34469986,
+        44.54215613
+      ],
+      [
+        -123.34425035,
+        44.54223638
+      ],
+      [
+        -123.34379305,
+        44.54232516
+      ],
+      [
+        -123.34332858,
+        44.54241009
+      ],
+      [
+        -123.34286511,
+        44.54248899
+      ],
+      [
+        -123.34240605,
+        44.54258027
+      ],
+      [
+        -123.34191071,
+        44.54265805
+      ],
+      [
+        -123.34144605,
+        44.54273822
+      ],
+      [
+        -123.34097164,
+        44.54281773
+      ],
+      [
+        -123.34049089,
+        44.54291136
+      ],
+      [
+        -123.34001549,
+        44.54299275
+      ],
+      [
+        -123.33954619,
+        44.54306487
+      ],
+      [
+        -123.33907374,
+        44.54313308
+      ],
+      [
+        -123.33862872,
+        44.54320893
+      ],
+      [
+        -123.3381779,
+        44.54329137
+      ],
+      [
+        -123.33772016,
+        44.54337602
+      ],
+      [
+        -123.33727489,
+        44.54344441
+      ],
+      [
+        -123.33682816,
+        44.54350219
+      ],
+      [
+        -123.33638509,
+        44.54358552
+      ],
+      [
+        -123.33593829,
+        44.54367072
+      ],
+      [
+        -123.33546824,
+        44.54376649
+      ],
+      [
+        -123.33497755,
+        44.54385456
+      ],
+      [
+        -123.33448343,
+        44.54396112
+      ],
+      [
+        -123.33397749,
+        44.5440744
+      ],
+      [
+        -123.33345742,
+        44.54420844
+      ],
+      [
+        -123.33292713,
+        44.54436008
+      ],
+      [
+        -123.33239796,
+        44.54451878
+      ],
+      [
+        -123.33186398,
+        44.5446863
+      ],
+      [
+        -123.33134261,
+        44.54485311
+      ],
+      [
+        -123.33082993,
+        44.54504215
+      ],
+      [
+        -123.33032629,
+        44.54519326
+      ],
+      [
+        -123.32982344,
+        44.5453518
+      ],
+      [
+        -123.3293095,
+        44.5454894
+      ],
+      [
+        -123.32881378,
+        44.54564453
+      ],
+      [
+        -123.32829921,
+        44.54578852
+      ],
+      [
+        -123.3277828,
+        44.54594657
+      ],
+      [
+        -123.32727762,
+        44.54610511
+      ],
+      [
+        -123.32676085,
+        44.5462653
+      ],
+      [
+        -123.32627765,
+        44.54643078
+      ],
+      [
+        -123.32576999,
+        44.546576
+      ],
+      [
+        -123.32528599,
+        44.54674234
+      ],
+      [
+        -123.32478965,
+        44.54691086
+      ],
+      [
+        -123.32427832,
+        44.54705935
+      ],
+      [
+        -123.32378277,
+        44.54721833
+      ],
+      [
+        -123.32329791,
+        44.54736043
+      ],
+      [
+        -123.32280469,
+        44.54751419
+      ],
+      [
+        -123.32229631,
+        44.54766825
+      ],
+      [
+        -123.32179702,
+        44.54780808
+      ],
+      [
+        -123.32131495,
+        44.54794972
+      ],
+      [
+        -123.32086643,
+        44.54807246
+      ],
+      [
+        -123.32040346,
+        44.54822164
+      ],
+      [
+        -123.31993765,
+        44.54839123
+      ],
+      [
+        -123.31949408,
+        44.54851594
+      ],
+      [
+        -123.31899274,
+        44.548659
+      ],
+      [
+        -123.31853074,
+        44.54880099
+      ],
+      [
+        -123.31804481,
+        44.54893515
+      ],
+      [
+        -123.31758997,
+        44.54910401
+      ],
+      [
+        -123.31710916,
+        44.5492607
+      ],
+      [
+        -123.31663671,
+        44.54940898
+      ],
+      [
+        -123.31611987,
+        44.54955905
+      ],
+      [
+        -123.31563779,
+        44.54970864
+      ],
+      [
+        -123.31515491,
+        44.54985207
+      ],
+      [
+        -123.314689,
+        44.54999476
+      ],
+      [
+        -123.31421445,
+        44.55015187
+      ],
+      [
+        -123.31372962,
+        44.5502831
+      ],
+      [
+        -123.31330758,
+        44.55041177
+      ],
+      [
+        -123.31292017,
+        44.55052758
+      ],
+      [
+        -123.31251354,
+        44.55066436
+      ],
+      [
+        -123.31208603,
+        44.55077669
+      ],
+      [
+        -123.31161638,
+        44.55094352
+      ],
+      [
+        -123.3112482,
+        44.55105947
+      ],
+      [
+        -123.31086419,
+        44.55119654
+      ],
+      [
+        -123.31046132,
+        44.5513475
+      ],
+      [
+        -123.31005278,
+        44.55148959
+      ],
+      [
+        -123.30961361,
+        44.55159178
+      ],
+      [
+        -123.30920571,
+        44.55172635
+      ],
+      [
+        -123.30874104,
+        44.55184633
+      ],
+      [
+        -123.30829359,
+        44.55198769
+      ],
+      [
+        -123.30787319,
+        44.5520999
+      ],
+      [
+        -123.3074458,
+        44.5522332
+      ],
+      [
+        -123.30706032,
+        44.55234182
+      ],
+      [
+        -123.30672195,
+        44.55247608
+      ],
+      [
+        -123.30631133,
+        44.55258632
+      ],
+      [
+        -123.30591744,
+        44.55270406
+      ],
+      [
+        -123.30552757,
+        44.55283411
+      ],
+      [
+        -123.3051465,
+        44.55296585
+      ],
+      [
+        -123.30474396,
+        44.55309861
+      ],
+      [
+        -123.30434769,
+        44.55324569
+      ],
+      [
+        -123.30394705,
+        44.55338725
+      ],
+      [
+        -123.30354834,
+        44.55350028
+      ],
+      [
+        -123.30313005,
+        44.55361894
+      ],
+      [
+        -123.30266868,
+        44.55374065
+      ],
+      [
+        -123.30221645,
+        44.55388066
+      ],
+      [
+        -123.30173418,
+        44.55401417
+      ],
+      [
+        -123.30124558,
+        44.55413817
+      ],
+      [
+        -123.30079325,
+        44.55427585
+      ],
+      [
+        -123.30029551,
+        44.55437196
+      ],
+      [
+        -123.2997996,
+        44.55448399
+      ],
+      [
+        -123.29932269,
+        44.55452997
+      ],
+      [
+        -123.29879777,
+        44.55454446
+      ],
+      [
+        -123.29830041,
+        44.55457205
+      ],
+      [
+        -123.29779975,
+        44.55457596
+      ],
+      [
+        -123.29729846,
+        44.55460096
+      ],
+      [
+        -123.29679836,
+        44.55459604
+      ],
+      [
+        -123.29626802,
+        44.55456638
+      ],
+      [
+        -123.29575394,
+        44.55454353
+      ],
+      [
+        -123.2952318,
+        44.55451849
+      ],
+      [
+        -123.29473383,
+        44.55452178
+      ],
+      [
+        -123.29423418,
+        44.55451254
+      ],
+      [
+        -123.29371862,
+        44.55453089
+      ],
+      [
+        -123.29321517,
+        44.55453169
+      ],
+      [
+        -123.29275561,
+        44.55451971
+      ],
+      [
+        -123.29231079,
+        44.55451182
+      ],
+      [
+        -123.29187739,
+        44.55450104
+      ],
+      [
+        -123.29145284,
+        44.55450805
+      ],
+      [
+        -123.29105513,
+        44.55449366
+      ],
+      [
+        -123.29059146,
+        44.55449023
+      ],
+      [
+        -123.29019322,
+        44.55448379
+      ],
+      [
+        -123.28978738,
+        44.55447773
+      ],
+      [
+        -123.28929609,
+        44.55448625
+      ],
+      [
+        -123.28874549,
+        44.55450926
+      ],
+      [
+        -123.28834391,
+        44.55450056
+      ],
+      [
+        -123.28790724,
+        44.55449707
+      ],
+      [
+        -123.28741355,
+        44.55450849
+      ],
+      [
+        -123.28693096,
+        44.5545087
+      ],
+      [
+        -123.28646726,
+        44.55452037
+      ],
+      [
+        -123.2860079,
+        44.5545304
+      ],
+      [
+        -123.28554007,
+        44.5545346
+      ],
+      [
+        -123.28508315,
+        44.55454316
+      ],
+      [
+        -123.28462741,
+        44.55455558
+      ],
+      [
+        -123.28417334,
+        44.5545515
+      ],
+      [
+        -123.28374206,
+        44.55455117
+      ],
+      [
+        -123.28333752,
+        44.55453237
+      ],
+      [
+        -123.28278619,
+        44.55453389
+      ],
+      [
+        -123.28236548,
+        44.55452196
+      ],
+      [
+        -123.28188959,
+        44.55453161
+      ],
+      [
+        -123.28146483,
+        44.55453568
+      ],
+      [
+        -123.28109348,
+        44.55459914
+      ],
+      [
+        -123.28066717,
+        44.55469201
+      ],
+      [
+        -123.28020148,
+        44.5548682
+      ],
+      [
+        -123.27971168,
+        44.55503849
+      ],
+      [
+        -123.2793803,
+        44.55518461
+      ],
+      [
+        -123.27896031,
+        44.55543667
+      ],
+      [
+        -123.27862816,
+        44.55556901
+      ],
+      [
+        -123.27821949,
+        44.55573975
+      ],
+      [
+        -123.27783296,
+        44.55592006
+      ],
+      [
+        -123.27745719,
+        44.55609727
+      ],
+      [
+        -123.27714064,
+        44.55625404
+      ],
+      [
+        -123.2767167,
+        44.55644134
+      ],
+      [
+        -123.27634067,
+        44.55656543
+      ],
+      [
+        -123.27596722,
+        44.55669426
+      ],
+      [
+        -123.27549069,
+        44.55678284
+      ],
+      [
+        -123.27496926,
+        44.55689358
+      ],
+      [
+        -123.27458313,
+        44.5569124
+      ],
+      [
+        -123.27419125,
+        44.55689802
+      ],
+      [
+        -123.27377744,
+        44.5568866
+      ],
+      [
+        -123.2733415,
+        44.55686836
+      ],
+      [
+        -123.27290315,
+        44.55682259
+      ],
+      [
+        -123.27243825,
+        44.55675093
+      ],
+      [
+        -123.2720012,
+        44.55668193
+      ],
+      [
+        -123.27155253,
+        44.55660638
+      ],
+      [
+        -123.27110968,
+        44.55655408
+      ],
+      [
+        -123.27065104,
+        44.55648773
+      ],
+      [
+        -123.27018728,
+        44.55641826
+      ],
+      [
+        -123.26972832,
+        44.55634392
+      ],
+      [
+        -123.26928058,
+        44.55627108
+      ],
+      [
+        -123.26906268,
+        44.55623613
+      ],
+      [
+        -123.26882152,
+        44.55624357
+      ],
+      [
+        -123.26860188,
+        44.55623933
+      ],
+      [
+        -123.26834039,
+        44.55622165
+      ],
+      [
+        -123.26811121,
+        44.5562004
+      ],
+      [
+        -123.26788139,
+        44.55618992
+      ],
+      [
+        -123.26767505,
+        44.55619525
+      ],
+      [
+        -123.26745099,
+        44.55621678
+      ],
+      [
+        -123.26722733,
+        44.55625385
+      ],
+      [
+        -123.26699088,
+        44.5562802
+      ],
+      [
+        -123.26677956,
+        44.55633282
+      ],
+      [
+        -123.26654448,
+        44.55639357
+      ],
+      [
+        -123.26631436,
+        44.55645412
+      ],
+      [
+        -123.26606874,
+        44.55652551
+      ],
+      [
+        -123.26583708,
+        44.55660041
+      ],
+      [
+        -123.26558672,
+        44.55669278
+      ],
+      [
+        -123.26534835,
+        44.55678462
+      ],
+      [
+        -123.26510338,
+        44.55687513
+      ],
+      [
+        -123.26486778,
+        44.55696448
+      ],
+      [
+        -123.26462215,
+        44.55704933
+      ],
+      [
+        -123.26437856,
+        44.55713732
+      ],
+      [
+        -123.26413268,
+        44.55721805
+      ],
+      [
+        -123.26388708,
+        44.55730522
+      ],
+      [
+        -123.26362142,
+        44.55739124
+      ],
+      [
+        -123.26309051,
+        44.55753223
+      ],
+      [
+        -123.26252542,
+        44.55763486
+      ],
+      [
+        -123.26195273,
+        44.55772093
+      ],
+      [
+        -123.26139849,
+        44.55781796
+      ],
+      [
+        -123.26085362,
+        44.55789672
+      ],
+      [
+        -123.26032307,
+        44.55798129
+      ],
+      [
+        -123.25980237,
+        44.55806619
+      ],
+      [
+        -123.25928996,
+        44.55815663
+      ],
+      [
+        -123.25903973,
+        44.55821426
+      ],
+      [
+        -123.2587808,
+        44.55828566
+      ],
+      [
+        -123.2585309,
+        44.55835269
+      ],
+      [
+        -123.25827879,
+        44.55842939
+      ],
+      [
+        -123.25802216,
+        44.55851736
+      ],
+      [
+        -123.25776741,
+        44.55860888
+      ],
+      [
+        -123.2575384,
+        44.55870622
+      ],
+      [
+        -123.25731551,
+        44.55882039
+      ],
+      [
+        -123.25711364,
+        44.55896099
+      ],
+      [
+        -123.25693392,
+        44.55911406
+      ],
+      [
+        -123.2567741,
+        44.55926982
+      ],
+      [
+        -123.25662538,
+        44.55943741
+      ],
+      [
+        -123.25648197,
+        44.55960931
+      ],
+      [
+        -123.25633859,
+        44.55978067
+      ],
+      [
+        -123.25618547,
+        44.55994987
+      ],
+      [
+        -123.25603755,
+        44.56012754
+      ],
+      [
+        -123.25591114,
+        44.56029996
+      ],
+      [
+        -123.25578258,
+        44.56046913
+      ],
+      [
+        -123.25564317,
+        44.56063656
+      ],
+      [
+        -123.25547978,
+        44.56081952
+      ],
+      [
+        -123.25535444,
+        44.56098902
+      ],
+      [
+        -123.2552067,
+        44.56116703
+      ],
+      [
+        -123.25505769,
+        44.56132321
+      ],
+      [
+        -123.25491742,
+        44.56147616
+      ],
+      [
+        -123.2547614,
+        44.56163734
+      ],
+      [
+        -123.25461235,
+        44.56179536
+      ],
+      [
+        -123.25447106,
+        44.56194753
+      ],
+      [
+        -123.25432341,
+        44.56210449
+      ],
+      [
+        -123.25418716,
+        44.56224661
+      ],
+      [
+        -123.25404152,
+        44.56239059
+      ],
+      [
+        -123.25390358,
+        44.56253388
+      ],
+      [
+        -123.25376721,
+        44.56268813
+      ],
+      [
+        -123.25363454,
+        44.56284177
+      ],
+      [
+        -123.25349972,
+        44.56299846
+      ],
+      [
+        -123.25337634,
+        44.56313844
+      ],
+      [
+        -123.25326474,
+        44.56329604
+      ],
+      [
+        -123.25316373,
+        44.56343593
+      ],
+      [
+        -123.25306593,
+        44.56358197
+      ],
+      [
+        -123.25296928,
+        44.56371839
+      ],
+      [
+        -123.25287633,
+        44.56383955
+      ],
+      [
+        -123.2527811,
+        44.56396021
+      ],
+      [
+        -123.2527006,
+        44.56409962
+      ],
+      [
+        -123.25251666,
+        44.5642821
+      ],
+      [
+        -123.252464,
+        44.56436555
+      ],
+      [
+        -123.2523231,
+        44.56453533
+      ],
+      [
+        -123.25225519,
+        44.5645614
+      ],
+      [
+        -123.25228097,
+        44.56463903
+      ],
+      [
+        -123.2524103,
+        44.56476912
+      ],
+      [
+        -123.25265286,
+        44.56484287
+      ],
+      [
+        -123.25280326,
+        44.5648831
+      ],
+      [
+        -123.253176,
+        44.56495496
+      ],
+      [
+        -123.25360282,
+        44.56504142
+      ],
+      [
+        -123.25401679,
+        44.56515583
+      ],
+      [
+        -123.25443631,
+        44.56532004
+      ],
+      [
+        -123.25480816,
+        44.56548473
+      ],
+      [
+        -123.25519484,
+        44.56566755
+      ],
+      [
+        -123.25551553,
+        44.56583166
+      ],
+      [
+        -123.25596529,
+        44.56603905
+      ],
+      [
+        -123.25639336,
+        44.56622896
+      ],
+      [
+        -123.25652885,
+        44.56629939
+      ],
+      [
+        -123.25678678,
+        44.56643649
+      ],
+      [
+        -123.2569142,
+        44.56649582
+      ],
+      [
+        -123.25715173,
+        44.56660402
+      ],
+      [
+        -123.25726289,
+        44.566648
+      ],
+      [
+        -123.25752143,
+        44.56675673
+      ],
+      [
+        -123.25760653,
+        44.56680001
+      ],
+      [
+        -123.25767378,
+        44.56679999
+      ],
+      [
+        -123.25787237,
+        44.56687549
+      ],
+      [
+        -123.25801719,
+        44.56693186
+      ],
+      [
+        -123.25822182,
+        44.56700321
+      ],
+      [
+        -123.25837141,
+        44.56703318
+      ],
+      [
+        -123.25860196,
+        44.56707244
+      ],
+      [
+        -123.25878758,
+        44.56710355
+      ],
+      [
+        -123.25887093,
+        44.56712097
+      ],
+      [
+        -123.25904221,
+        44.56717036
+      ],
+      [
+        -123.25922649,
+        44.56721374
+      ],
+      [
+        -123.25940227,
+        44.56725654
+      ],
+      [
+        -123.25958777,
+        44.56731148
+      ],
+      [
+        -123.25976646,
+        44.56736335
+      ],
+      [
+        -123.26003077,
+        44.56743253
+      ],
+      [
+        -123.26012839,
+        44.56745472
+      ],
+      [
+        -123.26038022,
+        44.56751068
+      ],
+      [
+        -123.26055354,
+        44.56742884
+      ],
+      [
+        -123.26063004,
+        44.56728882
+      ],
+      [
+        -123.26068524,
+        44.56711308
+      ],
+      [
+        -123.26074998,
+        44.56695316
+      ],
+      [
+        -123.2608089,
+        44.56678942
+      ],
+      [
+        -123.26089009,
+        44.56659957
+      ],
+      [
+        -123.26093937,
+        44.56650242
+      ],
+      [
+        -123.26102979,
+        44.56631785
+      ],
+      [
+        -123.26107432,
+        44.56621301
+      ],
+      [
+        -123.26117094,
+        44.56601462
+      ],
+      [
+        -123.26120647,
+        44.5659277
+      ],
+      [
+        -123.26127949,
+        44.56572113
+      ],
+      [
+        -123.26134965,
+        44.565611
+      ],
+      [
+        -123.26140875,
+        44.56550587
+      ],
+      [
+        -123.26153761,
+        44.56528539
+      ],
+      [
+        -123.2615853,
+        44.56518097
+      ],
+      [
+        -123.26170963,
+        44.56499887
+      ],
+      [
+        -123.26177122,
+        44.56490562
+      ],
+      [
+        -123.26189227,
+        44.56471824
+      ],
+      [
+        -123.26193688,
+        44.56462046
+      ],
+      [
+        -123.26203489,
+        44.56443367
+      ],
+      [
+        -123.2620959,
+        44.56432723
+      ],
+      [
+        -123.26224802,
+        44.56409988
+      ],
+      [
+        -123.26222823,
+        44.56401989
+      ],
+      [
+        -123.26222969,
+        44.56394001
+      ],
+      [
+        -123.26235411,
+        44.56373793
+      ],
+      [
+        -123.26240754,
+        44.56363945
+      ],
+      [
+        -123.26253763,
+        44.56341107
+      ],
+      [
+        -123.26260672,
+        44.5633341
+      ],
+      [
+        -123.26270288,
+        44.56315453
+      ],
+      [
+        -123.26274507,
+        44.56306436
+      ],
+      [
+        -123.26287169,
+        44.56281372
+      ],
+      [
+        -123.26293765,
+        44.56273657
+      ],
+      [
+        -123.2630292,
+        44.56252632
+      ],
+      [
+        -123.26310572,
+        44.56240685
+      ],
+      [
+        -123.26322777,
+        44.56217996
+      ],
+      [
+        -123.26326892,
+        44.56206816
+      ],
+      [
+        -123.26338999,
+        44.56184057
+      ],
+      [
+        -123.26344102,
+        44.56173574
+      ],
+      [
+        -123.2635509,
+        44.56152058
+      ],
+      [
+        -123.26372206,
+        44.56116824
+      ],
+      [
+        -123.26387451,
+        44.56086544
+      ],
+      [
+        -123.26401468,
+        44.56056363
+      ],
+      [
+        -123.26418536,
+        44.56026245
+      ],
+      [
+        -123.26433945,
+        44.55997664
+      ],
+      [
+        -123.2643915,
+        44.55987913
+      ],
+      [
+        -123.26446575,
+        44.55970194
+      ],
+      [
+        -123.26451613,
+        44.55958902
+      ],
+      [
+        -123.26459456,
+        44.55937425
+      ],
+      [
+        -123.26461077,
+        44.55926399
+      ],
+      [
+        -123.26473225,
+        44.55909383
+      ],
+      [
+        -123.26478695,
+        44.55898226
+      ],
+      [
+        -123.26492466,
+        44.5587611
+      ],
+      [
+        -123.26497928,
+        44.55865923
+      ],
+      [
+        -123.26509293,
+        44.55842729
+      ],
+      [
+        -123.26514855,
+        44.55831671
+      ],
+      [
+        -123.26525712,
+        44.55809135
+      ],
+      [
+        -123.26531496,
+        44.55798363
+      ],
+      [
+        -123.26543232,
+        44.55779935
+      ],
+      [
+        -123.26549013,
+        44.55770322
+      ],
+      [
+        -123.26558955,
+        44.55749812
+      ],
+      [
+        -123.26565084,
+        44.55737409
+      ],
+      [
+        -123.26575958,
+        44.55717786
+      ],
+      [
+        -123.26581655,
+        44.55705329
+      ],
+      [
+        -123.26585019,
+        44.55690699
+      ],
+      [
+        -123.26593923,
+        44.55666239
+      ],
+      [
+        -123.26597135,
+        44.55657634
+      ],
+      [
+        -123.2659601,
+        44.55632352
+      ],
+      [
+        -123.26592714,
+        44.5561932
+      ],
+      [
+        -123.26582439,
+        44.55597695
+      ],
+      [
+        -123.26572437,
+        44.55584709
+      ],
+      [
+        -123.26563835,
+        44.55571634
+      ],
+      [
+        -123.26541291,
+        44.55553334
+      ],
+      [
+        -123.26510286,
+        44.55524448
+      ],
+      [
+        -123.26490101,
+        44.55490589
+      ],
+      [
+        -123.26489186,
+        44.55455867
+      ],
+      [
+        -123.26493487,
+        44.55421581
+      ],
+      [
+        -123.26497802,
+        44.55394571
+      ],
+      [
+        -123.26498909,
+        44.55366594
+      ],
+      [
+        -123.26505023,
+        44.55331664
+      ],
+      [
+        -123.2650603,
+        44.55321268
+      ],
+      [
+        -123.26509157,
+        44.55301434
+      ],
+      [
+        -123.26510354,
+        44.55290039
+      ],
+      [
+        -123.26512899,
+        44.55267696
+      ],
+      [
+        -123.26515485,
+        44.55256558
+      ],
+      [
+        -123.26518503,
+        44.55234615
+      ],
+      [
+        -123.26518099,
+        44.55223245
+      ],
+      [
+        -123.26519534,
+        44.55199671
+      ],
+      [
+        -123.26520451,
+        44.55187375
+      ],
+      [
+        -123.2652246,
+        44.55161241
+      ],
+      [
+        -123.2652252,
+        44.55150293
+      ],
+      [
+        -123.26522555,
+        44.55136002
+      ],
+      [
+        -123.26523907,
+        44.55123375
+      ],
+      [
+        -123.26525674,
+        44.55109084
+      ],
+      [
+        -123.26527545,
+        44.5509604
+      ],
+      [
+        -123.26531051,
+        44.55068985
+      ],
+      [
+        -123.26534583,
+        44.55030138
+      ],
+      [
+        -123.26537778,
+        44.55000365
+      ],
+      [
+        -123.26497946,
+        44.5498342
+      ],
+      [
+        -123.26450003,
+        44.54982978
+      ],
+      [
+        -123.26414419,
+        44.54980376
+      ]
+    ]
+  },
+  "properties": {
+    "time": [
+      1369786338000,
+      1369786340000,
+      1369786342000,
+      1369786343000,
+      1369786345000,
+      1369786346000,
+      1369786348000,
+      1369786349000,
+      1369786352000,
+      1369786355000,
+      1369786358000,
+      1369786361000,
+      1369786364000,
+      1369786367000,
+      1369786370000,
+      1369786371000,
+      1369786375000,
+      1369786377000,
+      1369786388000,
+      1369786401000,
+      1369786403000,
+      1369786405000,
+      1369786406000,
+      1369786408000,
+      1369786411000,
+      1369786414000,
+      1369786417000,
+      1369786420000,
+      1369786423000,
+      1369786426000,
+      1369786428000,
+      1369786429000,
+      1369786431000,
+      1369786432000,
+      1369786434000,
+      1369786435000,
+      1369786437000,
+      1369786438000,
+      1369786439000,
+      1369786440000,
+      1369786441000,
+      1369786442000,
+      1369786443000,
+      1369786444000,
+      1369786445000,
+      1369786446000,
+      1369786447000,
+      1369786448000,
+      1369786449000,
+      1369786450000,
+      1369786452000,
+      1369786454000,
+      1369786456000,
+      1369786458000,
+      1369786460000,
+      1369786462000,
+      1369786464000,
+      1369786466000,
+      1369786468000,
+      1369786470000,
+      1369786471000,
+      1369786472000,
+      1369786473000,
+      1369786474000,
+      1369786475000,
+      1369786476000,
+      1369786477000,
+      1369786478000,
+      1369786479000,
+      1369786480000,
+      1369786481000,
+      1369786482000,
+      1369786483000,
+      1369786484000,
+      1369786485000,
+      1369786486000,
+      1369786487000,
+      1369786488000,
+      1369786490000,
+      1369786492000,
+      1369786494000,
+      1369786496000,
+      1369786498000,
+      1369786500000,
+      1369786503000,
+      1369786506000,
+      1369786508000,
+      1369786510000,
+      1369786512000,
+      1369786514000,
+      1369786516000,
+      1369786518000,
+      1369786520000,
+      1369786522000,
+      1369786524000,
+      1369786526000,
+      1369786528000,
+      1369786530000,
+      1369786532000,
+      1369786534000,
+      1369786536000,
+      1369786538000,
+      1369786540000,
+      1369786542000,
+      1369786544000,
+      1369786546000,
+      1369786548000,
+      1369786550000,
+      1369786552000,
+      1369786553000,
+      1369786555000,
+      1369786557000,
+      1369786559000,
+      1369786561000,
+      1369786563000,
+      1369786565000,
+      1369786567000,
+      1369786569000,
+      1369786571000,
+      1369786573000,
+      1369786575000,
+      1369786577000,
+      1369786579000,
+      1369786581000,
+      1369786583000,
+      1369786585000,
+      1369786587000,
+      1369786589000,
+      1369786591000,
+      1369786593000,
+      1369786595000,
+      1369786597000,
+      1369786599000,
+      1369786601000,
+      1369786603000,
+      1369786605000,
+      1369786607000,
+      1369786609000,
+      1369786611000,
+      1369786613000,
+      1369786615000,
+      1369786617000,
+      1369786619000,
+      1369786621000,
+      1369786623000,
+      1369786625000,
+      1369786627000,
+      1369786629000,
+      1369786632000,
+      1369786636000,
+      1369786640000,
+      1369786644000,
+      1369786647000,
+      1369786650000,
+      1369786654000,
+      1369786657000,
+      1369786660000,
+      1369786663000,
+      1369786666000,
+      1369786669000,
+      1369786672000,
+      1369786676000,
+      1369786679000,
+      1369786682000,
+      1369786685000,
+      1369786688000,
+      1369786691000,
+      1369786694000,
+      1369786697000,
+      1369786700000,
+      1369786703000,
+      1369786706000,
+      1369786708000,
+      1369786709000,
+      1369786711000,
+      1369786712000,
+      1369786713000,
+      1369786714000,
+      1369786716000,
+      1369786717000,
+      1369786719000,
+      1369786720000,
+      1369786722000,
+      1369786724000,
+      1369786727000,
+      1369786729000,
+      1369786730000,
+      1369786732000,
+      1369786733000,
+      1369786736000,
+      1369786738000,
+      1369786885000,
+      1369786888000,
+      1369786891000,
+      1369786894000,
+      1369786897000,
+      1369786900000,
+      1369786903000,
+      1369786906000,
+      1369786909000,
+      1369786912000,
+      1369786915000,
+      1369786918000,
+      1369786922000,
+      1369786927000,
+      1369786949000,
+      1369786953000,
+      1369786956000,
+      1369786959000,
+      1369786962000,
+      1369786965000,
+      1369786968000,
+      1369786971000,
+      1369786974000,
+      1369786977000,
+      1369786980000,
+      1369786983000,
+      1369786988000,
+      1369786993000,
+      1369786996000,
+      1369786999000,
+      1369787002000,
+      1369787005000,
+      1369787007000,
+      1369787010000,
+      1369787012000,
+      1369787014000,
+      1369787016000,
+      1369787018000,
+      1369787020000,
+      1369787022000,
+      1369787024000,
+      1369787026000,
+      1369787028000,
+      1369787030000,
+      1369787032000,
+      1369787034000,
+      1369787036000,
+      1369787038000,
+      1369787040000,
+      1369787042000,
+      1369787044000,
+      1369787046000,
+      1369787048000,
+      1369787050000,
+      1369787052000,
+      1369787054000,
+      1369787056000,
+      1369787058000,
+      1369787060000,
+      1369787062000,
+      1369787064000,
+      1369787066000,
+      1369787068000,
+      1369787070000,
+      1369787072000,
+      1369787074000,
+      1369787076000,
+      1369787078000,
+      1369787080000,
+      1369787082000,
+      1369787084000,
+      1369787086000,
+      1369787088000,
+      1369787090000,
+      1369787092000,
+      1369787094000,
+      1369787096000,
+      1369787098000,
+      1369787100000,
+      1369787102000,
+      1369787104000,
+      1369787106000,
+      1369787108000,
+      1369787110000,
+      1369787112000,
+      1369787114000,
+      1369787117000,
+      1369787119000,
+      1369787122000,
+      1369787125000,
+      1369787128000,
+      1369787130000,
+      1369787132000,
+      1369787134000,
+      1369787136000,
+      1369787138000,
+      1369787140000,
+      1369787142000,
+      1369787144000,
+      1369787146000,
+      1369787148000,
+      1369787150000,
+      1369787152000,
+      1369787154000,
+      1369787157000,
+      1369787160000,
+      1369787163000,
+      1369787165000,
+      1369787167000,
+      1369787169000,
+      1369787171000,
+      1369787173000,
+      1369787175000,
+      1369787177000,
+      1369787179000,
+      1369787181000,
+      1369787183000,
+      1369787185000,
+      1369787187000,
+      1369787190000,
+      1369787193000,
+      1369787196000,
+      1369787199000,
+      1369787202000,
+      1369787205000,
+      1369787208000,
+      1369787211000,
+      1369787214000,
+      1369787216000,
+      1369787218000,
+      1369787220000,
+      1369787222000,
+      1369787224000,
+      1369787226000,
+      1369787228000,
+      1369787230000,
+      1369787232000,
+      1369787234000,
+      1369787236000,
+      1369787238000,
+      1369787240000,
+      1369787242000,
+      1369787244000,
+      1369787246000,
+      1369787248000,
+      1369787250000,
+      1369787252000,
+      1369787254000,
+      1369787256000,
+      1369787258000,
+      1369787260000,
+      1369787262000,
+      1369787264000,
+      1369787266000,
+      1369787268000,
+      1369787270000,
+      1369787272000,
+      1369787274000,
+      1369787276000,
+      1369787278000,
+      1369787281000,
+      1369787284000,
+      1369787290000,
+      1369787304000,
+      1369787307000,
+      1369787309000,
+      1369787311000,
+      1369787313000,
+      1369787315000,
+      1369787317000,
+      1369787319000,
+      1369787321000,
+      1369787323000,
+      1369787325000,
+      1369787327000,
+      1369787329000,
+      1369787331000,
+      1369787333000,
+      1369787335000,
+      1369787337000,
+      1369787339000,
+      1369787341000,
+      1369787343000,
+      1369787345000,
+      1369787347000,
+      1369787349000,
+      1369787351000,
+      1369787353000,
+      1369787355000,
+      1369787357000,
+      1369787359000,
+      1369787361000,
+      1369787363000,
+      1369787365000,
+      1369787367000,
+      1369787369000,
+      1369787371000,
+      1369787373000,
+      1369787375000,
+      1369787377000,
+      1369787379000,
+      1369787381000,
+      1369787383000,
+      1369787385000,
+      1369787387000,
+      1369787389000,
+      1369787392000,
+      1369787400000,
+      1369787403000,
+      1369787406000,
+      1369787408000,
+      1369787410000,
+      1369787412000,
+      1369787414000,
+      1369787416000,
+      1369787418000,
+      1369787420000,
+      1369787422000,
+      1369787424000,
+      1369787426000,
+      1369787428000,
+      1369787430000,
+      1369787433000,
+      1369787436000,
+      1369787438000,
+      1369787440000,
+      1369787442000,
+      1369787445000,
+      1369787449000,
+      1369787462000,
+      1369787465000,
+      1369787469000,
+      1369787473000,
+      1369787477000,
+      1369787480000,
+      1369787484000,
+      1369787488000,
+      1369787493000,
+      1369787497000,
+      1369787500000,
+      1369787503000,
+      1369787506000,
+      1369787509000,
+      1369787512000,
+      1369787515000,
+      1369787518000,
+      1369787521000,
+      1369787524000,
+      1369787528000,
+      1369787532000,
+      1369787536000,
+      1369787540000,
+      1369787543000,
+      1369787546000,
+      1369787549000,
+      1369787552000,
+      1369787554000,
+      1369787557000,
+      1369787560000,
+      1369787563000,
+      1369787567000,
+      1369787570000,
+      1369787573000,
+      1369787576000,
+      1369787579000,
+      1369787582000,
+      1369787584000,
+      1369787586000,
+      1369787588000,
+      1369787591000,
+      1369787594000,
+      1369787597000,
+      1369787601000,
+      1369787606000,
+      1369787611000,
+      1369787614000,
+      1369787617000,
+      1369787620000,
+      1369787623000,
+      1369787626000,
+      1369787629000,
+      1369787632000,
+      1369787637000,
+      1369787641000,
+      1369787643000,
+      1369787645000,
+      1369787647000,
+      1369787649000,
+      1369787651000,
+      1369787653000,
+      1369787655000,
+      1369787658000,
+      1369787661000,
+      1369787664000,
+      1369787667000,
+      1369787671000,
+      1369787677000,
+      1369787683000,
+      1369787687000,
+      1369787694000,
+      1369787698000,
+      1369787701000,
+      1369787704000,
+      1369787707000,
+      1369787710000,
+      1369787713000,
+      1369787716000,
+      1369787719000,
+      1369787722000,
+      1369787725000,
+      1369787728000,
+      1369787731000,
+      1369787734000,
+      1369787737000,
+      1369787740000,
+      1369787743000,
+      1369787746000,
+      1369787750000,
+      1369787753000,
+      1369787756000,
+      1369787759000,
+      1369787761000,
+      1369787763000,
+      1369787765000,
+      1369787768000,
+      1369787771000,
+      1369787774000,
+      1369787782000,
+      1369787785000,
+      1369787787000,
+      1369787789000,
+      1369787791000,
+      1369787793000,
+      1369787795000,
+      1369787797000,
+      1369787799000,
+      1369787801000,
+      1369787803000,
+      1369787805000,
+      1369787807000,
+      1369787809000,
+      1369787810000,
+      1369787811000,
+      1369787812000,
+      1369787813000,
+      1369787814000,
+      1369787815000,
+      1369787816000,
+      1369787817000,
+      1369787818000,
+      1369787819000,
+      1369787820000,
+      1369787821000,
+      1369787822000,
+      1369787823000,
+      1369787824000,
+      1369787825000,
+      1369787826000,
+      1369787827000,
+      1369787829000,
+      1369787832000,
+      1369787834000,
+      1369787836000,
+      1369787837000,
+      1369787839000,
+      1369787840000,
+      1369787843000,
+      1369787844000,
+      1369787847000,
+      1369787851000,
+      1369787873000,
+      1369787876000,
+      1369787879000,
+      1369787882000,
+      1369787885000,
+      1369787889000,
+      1369787894000,
+      1369787897000,
+      1369787899000,
+      1369787901000,
+      1369787903000,
+      1369787905000,
+      1369787907000,
+      1369787909000,
+      1369787911000,
+      1369787913000,
+      1369787915000,
+      1369787917000,
+      1369787919000,
+      1369787921000,
+      1369787923000,
+      1369787925000,
+      1369787927000,
+      1369787929000,
+      1369787931000,
+      1369787933000,
+      1369787935000,
+      1369787937000,
+      1369787939000,
+      1369787941000,
+      1369787943000,
+      1369787945000,
+      1369787947000,
+      1369787949000,
+      1369787951000,
+      1369787953000,
+      1369787955000,
+      1369787957000,
+      1369787959000,
+      1369787961000,
+      1369787963000,
+      1369787965000,
+      1369787967000,
+      1369787969000,
+      1369787971000,
+      1369787973000,
+      1369787975000,
+      1369787977000,
+      1369787979000,
+      1369787981000,
+      1369787983000,
+      1369787985000,
+      1369787987000,
+      1369787989000,
+      1369787991000,
+      1369787993000,
+      1369787995000,
+      1369787997000,
+      1369787999000,
+      1369788001000,
+      1369788003000,
+      1369788005000,
+      1369788007000,
+      1369788009000,
+      1369788011000,
+      1369788013000,
+      1369788015000,
+      1369788017000,
+      1369788019000,
+      1369788021000,
+      1369788023000,
+      1369788025000,
+      1369788027000,
+      1369788029000,
+      1369788031000,
+      1369788033000,
+      1369788035000,
+      1369788037000,
+      1369788039000,
+      1369788041000,
+      1369788043000,
+      1369788045000,
+      1369788047000,
+      1369788049000,
+      1369788051000,
+      1369788053000,
+      1369788055000,
+      1369788057000,
+      1369788059000,
+      1369788061000,
+      1369788063000,
+      1369788065000,
+      1369788067000,
+      1369788069000,
+      1369788071000,
+      1369788073000,
+      1369788075000,
+      1369788077000,
+      1369788079000,
+      1369788081000,
+      1369788083000,
+      1369788085000,
+      1369788087000,
+      1369788089000,
+      1369788091000,
+      1369788093000,
+      1369788095000,
+      1369788097000,
+      1369788099000,
+      1369788101000,
+      1369788103000,
+      1369788105000,
+      1369788107000,
+      1369788109000,
+      1369788111000,
+      1369788113000,
+      1369788115000,
+      1369788117000,
+      1369788119000,
+      1369788121000,
+      1369788123000,
+      1369788125000,
+      1369788127000,
+      1369788129000,
+      1369788131000,
+      1369788133000,
+      1369788135000,
+      1369788137000,
+      1369788139000,
+      1369788141000,
+      1369788143000,
+      1369788145000,
+      1369788147000,
+      1369788149000,
+      1369788151000,
+      1369788153000,
+      1369788155000,
+      1369788157000,
+      1369788159000,
+      1369788161000,
+      1369788163000,
+      1369788166000,
+      1369788168000,
+      1369788170000,
+      1369788172000,
+      1369788174000,
+      1369788176000,
+      1369788178000,
+      1369788180000,
+      1369788182000,
+      1369788184000,
+      1369788186000,
+      1369788188000,
+      1369788190000,
+      1369788192000,
+      1369788194000,
+      1369788196000,
+      1369788198000,
+      1369788200000,
+      1369788202000,
+      1369788204000,
+      1369788206000,
+      1369788208000,
+      1369788210000,
+      1369788212000,
+      1369788214000,
+      1369788216000,
+      1369788218000,
+      1369788220000,
+      1369788222000,
+      1369788224000,
+      1369788226000,
+      1369788228000,
+      1369788230000,
+      1369788232000,
+      1369788234000,
+      1369788236000,
+      1369788238000,
+      1369788240000,
+      1369788242000,
+      1369788244000,
+      1369788246000,
+      1369788248000,
+      1369788250000,
+      1369788252000,
+      1369788254000,
+      1369788256000,
+      1369788258000,
+      1369788260000,
+      1369788262000,
+      1369788264000,
+      1369788266000,
+      1369788268000,
+      1369788270000,
+      1369788272000,
+      1369788274000,
+      1369788276000,
+      1369788278000,
+      1369788280000,
+      1369788283000,
+      1369788285000,
+      1369788288000,
+      1369788291000,
+      1369788294000,
+      1369788298000,
+      1369788325000,
+      1369788329000,
+      1369788333000,
+      1369788338000,
+      1369788343000,
+      1369788347000,
+      1369788350000,
+      1369788354000,
+      1369788358000,
+      1369788362000,
+      1369788367000,
+      1369788374000,
+      1369788378000,
+      1369788383000,
+      1369788392000,
+      1369788396000,
+      1369788400000,
+      1369788404000,
+      1369788408000,
+      1369788413000,
+      1369788417000,
+      1369788420000,
+      1369788423000,
+      1369788426000,
+      1369788430000,
+      1369788438000,
+      1369788441000,
+      1369788444000,
+      1369788450000,
+      1369788454000,
+      1369788457000,
+      1369788463000,
+      1369788469000,
+      1369788472000,
+      1369788475000,
+      1369788483000,
+      1369788486000,
+      1369788489000,
+      1369788491000,
+      1369788494000,
+      1369788497000,
+      1369788500000,
+      1369788503000,
+      1369788506000,
+      1369788509000,
+      1369788512000,
+      1369788517000,
+      1369788530000,
+      1369788534000,
+      1369788537000,
+      1369788540000,
+      1369788543000,
+      1369788546000,
+      1369788549000,
+      1369788552000,
+      1369788555000,
+      1369788558000,
+      1369788561000,
+      1369788564000,
+      1369788567000,
+      1369788570000,
+      1369788573000,
+      1369788576000,
+      1369788579000,
+      1369788582000,
+      1369788585000,
+      1369788588000,
+      1369788591000,
+      1369788593000,
+      1369788595000,
+      1369788597000,
+      1369788599000,
+      1369788601000,
+      1369788603000,
+      1369788605000,
+      1369788607000,
+      1369788609000,
+      1369788611000,
+      1369788613000,
+      1369788615000,
+      1369788617000,
+      1369788619000,
+      1369788621000,
+      1369788623000,
+      1369788625000,
+      1369788627000,
+      1369788629000,
+      1369788631000,
+      1369788633000,
+      1369788635000,
+      1369788637000,
+      1369788639000,
+      1369788641000,
+      1369788643000,
+      1369788645000,
+      1369788647000,
+      1369788649000,
+      1369788651000,
+      1369788653000,
+      1369788655000,
+      1369788657000,
+      1369788659000,
+      1369788661000,
+      1369788663000,
+      1369788665000,
+      1369788667000,
+      1369788669000,
+      1369788671000,
+      1369788673000,
+      1369788675000,
+      1369788677000,
+      1369788679000,
+      1369788681000,
+      1369788683000,
+      1369788685000,
+      1369788687000,
+      1369788689000,
+      1369788691000,
+      1369788693000,
+      1369788695000,
+      1369788697000,
+      1369788699000,
+      1369788701000,
+      1369788703000,
+      1369788705000,
+      1369788707000,
+      1369788709000,
+      1369788711000,
+      1369788713000,
+      1369788715000,
+      1369788717000,
+      1369788719000,
+      1369788721000,
+      1369788723000,
+      1369788725000,
+      1369788727000,
+      1369788729000,
+      1369788731000,
+      1369788733000,
+      1369788735000,
+      1369788737000,
+      1369788739000,
+      1369788741000,
+      1369788743000,
+      1369788745000,
+      1369788747000,
+      1369788749000,
+      1369788751000,
+      1369788753000,
+      1369788755000,
+      1369788757000,
+      1369788759000,
+      1369788761000,
+      1369788763000,
+      1369788765000,
+      1369788767000,
+      1369788769000,
+      1369788771000,
+      1369788773000,
+      1369788775000,
+      1369788777000,
+      1369788779000,
+      1369788781000,
+      1369788783000,
+      1369788785000,
+      1369788787000,
+      1369788790000,
+      1369788851000,
+      1369788854000,
+      1369788856000,
+      1369788858000,
+      1369788860000,
+      1369788862000,
+      1369788864000,
+      1369788866000,
+      1369788868000,
+      1369788870000,
+      1369788872000,
+      1369788874000,
+      1369788876000,
+      1369788878000,
+      1369788880000,
+      1369788882000,
+      1369788884000,
+      1369788886000,
+      1369788888000,
+      1369788890000,
+      1369788892000,
+      1369788894000,
+      1369788896000,
+      1369788898000,
+      1369788900000,
+      1369788902000,
+      1369788904000,
+      1369788906000,
+      1369788908000,
+      1369788910000,
+      1369788912000,
+      1369788914000,
+      1369788916000,
+      1369788918000,
+      1369788920000,
+      1369788922000,
+      1369788924000,
+      1369788926000,
+      1369788928000,
+      1369788930000,
+      1369788932000,
+      1369788934000,
+      1369788936000,
+      1369788938000,
+      1369788940000,
+      1369788942000,
+      1369788944000,
+      1369788946000,
+      1369788949000,
+      1369788953000,
+      1369788958000,
+      1369788962000,
+      1369788965000,
+      1369788967000,
+      1369788969000,
+      1369788971000,
+      1369788973000,
+      1369788975000,
+      1369788977000,
+      1369788979000,
+      1369788981000,
+      1369788983000,
+      1369788985000,
+      1369788987000,
+      1369788989000,
+      1369788992000,
+      1369788995000,
+      1369788999000,
+      1369789003000,
+      1369789006000,
+      1369789009000,
+      1369789012000,
+      1369789015000,
+      1369789017000,
+      1369789020000,
+      1369789022000,
+      1369789025000,
+      1369789028000,
+      1369789031000,
+      1369789034000,
+      1369789038000,
+      1369789041000,
+      1369789044000,
+      1369789047000,
+      1369789050000,
+      1369789052000,
+      1369789054000,
+      1369789056000,
+      1369789058000,
+      1369789060000,
+      1369789062000,
+      1369789064000,
+      1369789066000,
+      1369789068000,
+      1369789070000,
+      1369789072000,
+      1369789074000,
+      1369789076000,
+      1369789077000,
+      1369789078000,
+      1369789079000,
+      1369789080000,
+      1369789081000,
+      1369789082000,
+      1369789083000,
+      1369789084000,
+      1369789085000,
+      1369789086000,
+      1369789087000,
+      1369789088000,
+      1369789089000,
+      1369789090000,
+      1369789091000,
+      1369789092000,
+      1369789093000,
+      1369789094000,
+      1369789095000,
+      1369789096000,
+      1369789097000,
+      1369789098000,
+      1369789099000,
+      1369789100000,
+      1369789102000,
+      1369789104000,
+      1369789106000,
+      1369789108000,
+      1369789110000,
+      1369789112000,
+      1369789114000,
+      1369789116000,
+      1369789117000,
+      1369789118000,
+      1369789119000,
+      1369789120000,
+      1369789121000,
+      1369789122000,
+      1369789123000,
+      1369789124000,
+      1369789125000,
+      1369789126000,
+      1369789127000,
+      1369789128000,
+      1369789129000,
+      1369789130000,
+      1369789131000,
+      1369789132000,
+      1369789133000,
+      1369789134000,
+      1369789135000,
+      1369789136000,
+      1369789137000,
+      1369789138000,
+      1369789139000,
+      1369789140000,
+      1369789141000,
+      1369789142000,
+      1369789143000,
+      1369789144000,
+      1369789145000,
+      1369789146000,
+      1369789147000,
+      1369789148000,
+      1369789149000,
+      1369789150000,
+      1369789151000,
+      1369789152000,
+      1369789153000,
+      1369789154000,
+      1369789155000,
+      1369789156000,
+      1369789157000,
+      1369789158000,
+      1369789160000,
+      1369789161000,
+      1369789164000,
+      1369789181000,
+      1369789195000,
+      1369789197000,
+      1369789199000,
+      1369789200000,
+      1369789202000,
+      1369789204000,
+      1369789206000,
+      1369789208000,
+      1369789210000,
+      1369789212000,
+      1369789214000,
+      1369789217000,
+      1369789220000,
+      1369789221000,
+      1369789223000,
+      1369789224000,
+      1369789226000,
+      1369789227000,
+      1369789230000,
+      1369789232000,
+      1369789237000,
+      1369789246000,
+      1369789249000,
+      1369789252000,
+      1369789254000,
+      1369789257000,
+      1369789259000,
+      1369789260000,
+      1369789262000,
+      1369789264000,
+      1369789266000,
+      1369789268000,
+      1369789270000,
+      1369789273000,
+      1369789274000,
+      1369789277000,
+      1369789280000,
+      1369789282000,
+      1369789284000,
+      1369789286000,
+      1369789288000,
+      1369789290000,
+      1369789291000,
+      1369789293000,
+      1369789294000,
+      1369789296000,
+      1369789297000,
+      1369789299000,
+      1369789300000,
+      1369789301000,
+      1369789303000,
+      1369789304000,
+      1369789306000,
+      1369789307000,
+      1369789309000,
+      1369789310000,
+      1369789312000,
+      1369789313000,
+      1369789315000,
+      1369789316000,
+      1369789317000,
+      1369789319000,
+      1369789320000,
+      1369789323000,
+      1369789324000,
+      1369789326000,
+      1369789327000,
+      1369789330000,
+      1369789331000,
+      1369789333000,
+      1369789334000,
+      1369789336000,
+      1369789337000,
+      1369789339000,
+      1369789340000,
+      1369789342000,
+      1369789345000,
+      1369789348000,
+      1369789351000,
+      1369789354000,
+      1369789357000,
+      1369789358000,
+      1369789360000,
+      1369789361000,
+      1369789363000,
+      1369789364000,
+      1369789366000,
+      1369789367000,
+      1369789369000,
+      1369789370000,
+      1369789372000,
+      1369789373000,
+      1369789375000,
+      1369789376000,
+      1369789378000,
+      1369789379000,
+      1369789381000,
+      1369789382000,
+      1369789384000,
+      1369789385000,
+      1369789386000,
+      1369789388000,
+      1369789389000,
+      1369789391000,
+      1369789392000,
+      1369789394000,
+      1369789395000,
+      1369789396000,
+      1369789398000,
+      1369789401000,
+      1369789404000,
+      1369789407000,
+      1369789410000,
+      1369789413000,
+      1369789417000,
+      1369789421000,
+      1369789422000,
+      1369789424000,
+      1369789425000,
+      1369789427000,
+      1369789428000,
+      1369789430000,
+      1369789431000,
+      1369789433000,
+      1369789434000,
+      1369789436000,
+      1369789437000,
+      1369789438000,
+      1369789439000,
+      1369789440000,
+      1369789441000,
+      1369789443000,
+      1369789446000,
+      1369789449000,
+      1369789454000,
+      1369789458000,
+      1369789461000
+    ],
+    "speed": [
+      22,
+      24,
+      42,
+      48,
+      52,
+      52,
+      53,
+      53,
+      53,
+      52,
+      50,
+      50,
+      51,
+      46,
+      40,
+      36,
+      21,
+      14,
+      0,
+      26,
+      33,
+      38,
+      39,
+      41,
+      45,
+      46,
+      50,
+      50,
+      50,
+      51,
+      52,
+      52,
+      52,
+      52,
+      54,
+      53,
+      55,
+      55,
+      56,
+      59,
+      58,
+      58,
+      58,
+      59,
+      59,
+      60,
+      60,
+      62,
+      59,
+      59,
+      59,
+      59,
+      59,
+      60,
+      60,
+      60,
+      60,
+      59,
+      60,
+      61,
+      61,
+      60,
+      61,
+      61,
+      61,
+      61,
+      61,
+      61,
+      64,
+      63,
+      62,
+      63,
+      62,
+      62,
+      59,
+      59,
+      59,
+      59,
+      59,
+      58,
+      59,
+      58,
+      55,
+      53,
+      52,
+      52,
+      55,
+      58,
+      55,
+      58,
+      59,
+      59,
+      59,
+      59,
+      61,
+      60,
+      59,
+      60,
+      64,
+      68,
+      67,
+      65,
+      63,
+      65,
+      71,
+      73,
+      76,
+      77,
+      81,
+      84,
+      85,
+      83,
+      84,
+      82,
+      83,
+      81,
+      82,
+      78,
+      80,
+      82,
+      81,
+      83,
+      82,
+      81,
+      80,
+      80,
+      85,
+      83,
+      81,
+      77,
+      78,
+      77,
+      77,
+      76,
+      73,
+      73,
+      71,
+      71,
+      70,
+      70,
+      73,
+      73,
+      68,
+      68,
+      75,
+      77,
+      76,
+      70,
+      51,
+      32,
+      34,
+      31,
+      38,
+      39,
+      40,
+      42,
+      46,
+      47,
+      47,
+      47,
+      44,
+      39,
+      38,
+      40,
+      40,
+      41,
+      43,
+      43,
+      45,
+      47,
+      44,
+      46,
+      48,
+      49,
+      50,
+      51,
+      52,
+      52,
+      54,
+      52,
+      52,
+      52,
+      51,
+      50,
+      45,
+      42,
+      42,
+      41,
+      40,
+      25,
+      19,
+      31,
+      41,
+      44,
+      43,
+      40,
+      37,
+      38,
+      40,
+      42,
+      41,
+      38,
+      35,
+      29,
+      20,
+      31,
+      33,
+      37,
+      41,
+      42,
+      43,
+      42,
+      41,
+      42,
+      42,
+      41,
+      37,
+      11,
+      39,
+      47,
+      51,
+      51,
+      52,
+      53,
+      54,
+      56,
+      58,
+      59,
+      60,
+      61,
+      62,
+      63,
+      64,
+      66,
+      67,
+      68,
+      67,
+      66,
+      66,
+      65,
+      63,
+      63,
+      64,
+      66,
+      67,
+      68,
+      68,
+      68,
+      68,
+      68,
+      68,
+      68,
+      69,
+      70,
+      73,
+      83,
+      94,
+      104,
+      100,
+      95,
+      91,
+      86,
+      79,
+      76,
+      72,
+      68,
+      66,
+      62,
+      59,
+      57,
+      57,
+      57,
+      57,
+      57,
+      57,
+      55,
+      55,
+      56,
+      54,
+      51,
+      52,
+      54,
+      54,
+      57,
+      59,
+      63,
+      64,
+      66,
+      67,
+      68,
+      70,
+      73,
+      73,
+      70,
+      59,
+      36,
+      46,
+      58,
+      60,
+      63,
+      65,
+      65,
+      64,
+      65,
+      65,
+      66,
+      65,
+      61,
+      58,
+      54,
+      50,
+      46,
+      42,
+      41,
+      40,
+      39,
+      39,
+      42,
+      57,
+      61,
+      63,
+      64,
+      64,
+      64,
+      63,
+      63,
+      64,
+      64,
+      68,
+      64,
+      63,
+      64,
+      65,
+      66,
+      68,
+      68,
+      69,
+      70,
+      68,
+      65,
+      64,
+      60,
+      59,
+      58,
+      57,
+      59,
+      61,
+      64,
+      60,
+      59,
+      56,
+      51,
+      44,
+      7,
+      36,
+      56,
+      65,
+      73,
+      80,
+      82,
+      83,
+      82,
+      82,
+      81,
+      81,
+      81,
+      83,
+      84,
+      83,
+      82,
+      81,
+      80,
+      78,
+      77,
+      77,
+      78,
+      78,
+      78,
+      79,
+      78,
+      78,
+      77,
+      77,
+      77,
+      77,
+      75,
+      75,
+      73,
+      72,
+      72,
+      71,
+      73,
+      73,
+      74,
+      70,
+      65,
+      54,
+      46,
+      20,
+      43,
+      57,
+      62,
+      68,
+      69,
+      70,
+      68,
+      67,
+      67,
+      63,
+      61,
+      59,
+      59,
+      58,
+      50,
+      52,
+      59,
+      59,
+      58,
+      46,
+      20,
+      30,
+      36,
+      33,
+      35,
+      36,
+      37,
+      34,
+      27,
+      23,
+      30,
+      37,
+      37,
+      41,
+      41,
+      41,
+      44,
+      42,
+      40,
+      39,
+      32,
+      32,
+      32,
+      32,
+      35,
+      45,
+      46,
+      50,
+      51,
+      50,
+      47,
+      35,
+      27,
+      38,
+      48,
+      53,
+      52,
+      52,
+      54,
+      54,
+      54,
+      52,
+      56,
+      43,
+      30,
+      24,
+      26,
+      34,
+      39,
+      39,
+      41,
+      42,
+      41,
+      37,
+      23,
+      36,
+      51,
+      56,
+      59,
+      60,
+      59,
+      59,
+      61,
+      51,
+      50,
+      45,
+      43,
+      33,
+      14,
+      25,
+      33,
+      21,
+      33,
+      39,
+      46,
+      45,
+      43,
+      44,
+      45,
+      45,
+      46,
+      47,
+      45,
+      41,
+      39,
+      41,
+      46,
+      42,
+      36,
+      41,
+      50,
+      51,
+      52,
+      55,
+      55,
+      54,
+      49,
+      45,
+      38,
+      35,
+      53,
+      61,
+      65,
+      66,
+      67,
+      68,
+      68,
+      69,
+      69,
+      71,
+      71,
+      73,
+      72,
+      72,
+      71,
+      70,
+      70,
+      70,
+      69,
+      69,
+      69,
+      69,
+      69,
+      68,
+      68,
+      68,
+      68,
+      68,
+      68,
+      61,
+      59,
+      34,
+      24,
+      37,
+      45,
+      45,
+      45,
+      40,
+      28,
+      31,
+      41,
+      23,
+      40,
+      48,
+      47,
+      45,
+      41,
+      28,
+      33,
+      50,
+      55,
+      59,
+      60,
+      62,
+      63,
+      63,
+      64,
+      65,
+      63,
+      64,
+      62,
+      62,
+      65,
+      67,
+      68,
+      68,
+      68,
+      68,
+      76,
+      80,
+      80,
+      83,
+      81,
+      79,
+      79,
+      78,
+      77,
+      82,
+      81,
+      79,
+      79,
+      77,
+      76,
+      76,
+      77,
+      76,
+      77,
+      77,
+      77,
+      77,
+      76,
+      77,
+      78,
+      79,
+      77,
+      77,
+      77,
+      75,
+      77,
+      77,
+      77,
+      77,
+      75,
+      77,
+      77,
+      76,
+      77,
+      77,
+      77,
+      77,
+      77,
+      75,
+      70,
+      68,
+      66,
+      66,
+      65,
+      66,
+      66,
+      66,
+      66,
+      67,
+      64,
+      62,
+      61,
+      63,
+      63,
+      64,
+      65,
+      64,
+      65,
+      64,
+      65,
+      66,
+      68,
+      67,
+      68,
+      67,
+      69,
+      70,
+      71,
+      70,
+      71,
+      73,
+      72,
+      74,
+      75,
+      75,
+      74,
+      69,
+      68,
+      67,
+      67,
+      68,
+      67,
+      67,
+      67,
+      67,
+      69,
+      75,
+      76,
+      75,
+      69,
+      68,
+      67,
+      68,
+      68,
+      71,
+      74,
+      76,
+      75,
+      76,
+      76,
+      76,
+      76,
+      75,
+      74,
+      76,
+      74,
+      73,
+      71,
+      66,
+      58,
+      56,
+      59,
+      64,
+      67,
+      68,
+      68,
+      70,
+      71,
+      70,
+      71,
+      71,
+      69,
+      69,
+      71,
+      70,
+      72,
+      72,
+      71,
+      72,
+      72,
+      74,
+      74,
+      73,
+      72,
+      74,
+      77,
+      77,
+      76,
+      73,
+      73,
+      71,
+      68,
+      65,
+      60,
+      59,
+      60,
+      60,
+      60,
+      60,
+      61,
+      62,
+      62,
+      63,
+      61,
+      62,
+      62,
+      63,
+      61,
+      62,
+      63,
+      64,
+      67,
+      65,
+      62,
+      61,
+      62,
+      60,
+      59,
+      58,
+      58,
+      53,
+      49,
+      42,
+      27,
+      19,
+      29,
+      26,
+      23,
+      28,
+      32,
+      32,
+      33,
+      33,
+      33,
+      23,
+      25,
+      30,
+      19,
+      20,
+      30,
+      30,
+      31,
+      29,
+      23,
+      27,
+      32,
+      37,
+      37,
+      32,
+      24,
+      40,
+      40,
+      24,
+      35,
+      41,
+      5,
+      36,
+      40,
+      37,
+      24,
+      42,
+      50,
+      51,
+      51,
+      50,
+      50,
+      52,
+      53,
+      52,
+      41,
+      20,
+      22,
+      41,
+      46,
+      44,
+      43,
+      44,
+      43,
+      41,
+      44,
+      47,
+      51,
+      52,
+      52,
+      50,
+      49,
+      49,
+      45,
+      46,
+      47,
+      47,
+      51,
+      55,
+      57,
+      58,
+      60,
+      61,
+      61,
+      62,
+      63,
+      63,
+      63,
+      62,
+      63,
+      63,
+      63,
+      63,
+      63,
+      63,
+      63,
+      64,
+      64,
+      66,
+      67,
+      66,
+      66,
+      65,
+      65,
+      64,
+      64,
+      65,
+      66,
+      67,
+      67,
+      68,
+      68,
+      68,
+      69,
+      68,
+      70,
+      70,
+      70,
+      70,
+      70,
+      69,
+      68,
+      66,
+      67,
+      66,
+      66,
+      66,
+      66,
+      67,
+      69,
+      71,
+      73,
+      75,
+      77,
+      80,
+      81,
+      82,
+      82,
+      81,
+      80,
+      78,
+      76,
+      77,
+      77,
+      79,
+      79,
+      79,
+      78,
+      80,
+      79,
+      78,
+      79,
+      77,
+      77,
+      77,
+      77,
+      76,
+      72,
+      69,
+      73,
+      73,
+      72,
+      74,
+      74,
+      74,
+      74,
+      74,
+      76,
+      77,
+      77,
+      76,
+      75,
+      71,
+      73,
+      66,
+      58,
+      43,
+      22,
+      44,
+      52,
+      57,
+      62,
+      64,
+      65,
+      65,
+      64,
+      62,
+      63,
+      62,
+      59,
+      59,
+      59,
+      59,
+      59,
+      60,
+      62,
+      63,
+      63,
+      62,
+      64,
+      68,
+      71,
+      75,
+      75,
+      75,
+      75,
+      74,
+      71,
+      72,
+      71,
+      72,
+      74,
+      73,
+      75,
+      74,
+      73,
+      73,
+      73,
+      72,
+      71,
+      68,
+      65,
+      62,
+      59,
+      54,
+      41,
+      24,
+      27,
+      40,
+      54,
+      58,
+      63,
+      66,
+      68,
+      68,
+      67,
+      67,
+      66,
+      67,
+      67,
+      61,
+      56,
+      51,
+      36,
+      33,
+      32,
+      38,
+      42,
+      49,
+      50,
+      55,
+      50,
+      50,
+      45,
+      41,
+      42,
+      40,
+      39,
+      40,
+      41,
+      47,
+      50,
+      53,
+      57,
+      59,
+      61,
+      63,
+      68,
+      66,
+      65,
+      64,
+      67,
+      67,
+      65,
+      64,
+      65,
+      66,
+      66,
+      67,
+      66,
+      65,
+      64,
+      64,
+      65,
+      67,
+      68,
+      70,
+      72,
+      73,
+      76,
+      77,
+      77,
+      77,
+      77,
+      77,
+      77,
+      77,
+      78,
+      79,
+      81,
+      83,
+      83,
+      81,
+      79,
+      77,
+      76,
+      77,
+      77,
+      77,
+      77,
+      77,
+      79,
+      79,
+      78,
+      77,
+      79,
+      78,
+      79,
+      79,
+      79,
+      79,
+      80,
+      80,
+      80,
+      79,
+      79,
+      80,
+      79,
+      79,
+      79,
+      77,
+      76,
+      74,
+      74,
+      73,
+      73,
+      72,
+      71,
+      71,
+      71,
+      70,
+      69,
+      68,
+      68,
+      66,
+      65,
+      62,
+      59,
+      57,
+      45,
+      41,
+      25,
+      0,
+      18,
+      27,
+      38,
+      42,
+      52,
+      59,
+      62,
+      64,
+      64,
+      64,
+      58,
+      50,
+      47,
+      47,
+      46,
+      44,
+      41,
+      38,
+      23,
+      15,
+      2,
+      13,
+      15,
+      20,
+      22,
+      24,
+      25,
+      25,
+      26,
+      26,
+      27,
+      30,
+      28,
+      28,
+      29,
+      22,
+      21,
+      28,
+      32,
+      32,
+      33,
+      36,
+      38,
+      39,
+      40,
+      41,
+      41,
+      42,
+      43,
+      43,
+      44,
+      43,
+      43,
+      41,
+      41,
+      41,
+      41,
+      43,
+      48,
+      43,
+      41,
+      40,
+      40,
+      39,
+      39,
+      39,
+      39,
+      36,
+      37,
+      41,
+      42,
+      46,
+      48,
+      49,
+      48,
+      47,
+      48,
+      42,
+      41,
+      43,
+      41,
+      41,
+      41,
+      42,
+      43,
+      43,
+      43,
+      44,
+      45,
+      45,
+      46,
+      46,
+      46,
+      46,
+      44,
+      43,
+      44,
+      46,
+      46,
+      48,
+      49,
+      48,
+      50,
+      48,
+      49,
+      49,
+      51,
+      52,
+      50,
+      50,
+      49,
+      46,
+      44,
+      37,
+      28,
+      36,
+      38,
+      41,
+      43,
+      45,
+      46,
+      46,
+      47,
+      48,
+      48,
+      49,
+      50,
+      52,
+      52,
+      53,
+      54,
+      53,
+      50,
+      36,
+      32,
+      34,
+      32
+    ],
+    "altitude": [
+      38,
+      39,
+      39,
+      38,
+      38,
+      38,
+      39,
+      38,
+      38,
+      37,
+      37,
+      38,
+      39,
+      39,
+      39,
+      40,
+      40,
+      40,
+      40,
+      41,
+      40,
+      41,
+      41,
+      41,
+      40,
+      40,
+      40,
+      41,
+      40,
+      40,
+      40,
+      40,
+      40,
+      41,
+      41,
+      41,
+      42,
+      42,
+      42,
+      42,
+      42,
+      42,
+      43,
+      43,
+      43,
+      44,
+      43,
+      44,
+      44,
+      44,
+      43,
+      42,
+      41,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      44,
+      43,
+      43,
+      44,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      42,
+      42,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      43,
+      42,
+      42,
+      44,
+      44,
+      44,
+      44,
+      44,
+      43,
+      41,
+      42,
+      42,
+      43,
+      42,
+      42,
+      42,
+      42,
+      42,
+      42,
+      42,
+      41,
+      41,
+      41,
+      41,
+      41,
+      41,
+      41,
+      40,
+      40,
+      40,
+      40,
+      39,
+      39,
+      39,
+      40,
+      40,
+      39,
+      39,
+      39,
+      39,
+      39,
+      40,
+      40,
+      40,
+      40,
+      39,
+      39,
+      39,
+      40,
+      40,
+      40,
+      41,
+      41,
+      40,
+      40,
+      40,
+      39,
+      40,
+      40,
+      39,
+      40,
+      39,
+      37,
+      36,
+      35,
+      38,
+      37,
+      38,
+      39,
+      40,
+      40,
+      40,
+      40,
+      38,
+      37,
+      39,
+      38,
+      39,
+      39,
+      39,
+      39,
+      39,
+      39,
+      43,
+      44,
+      45,
+      46,
+      45,
+      45,
+      46,
+      45,
+      45,
+      45,
+      46,
+      45,
+      45,
+      45,
+      46,
+      46,
+      47,
+      47,
+      48,
+      48,
+      48,
+      48,
+      48,
+      49,
+      47,
+      46,
+      47,
+      47,
+      47,
+      47,
+      47,
+      47,
+      47,
+      48,
+      48,
+      49,
+      49,
+      49,
+      49,
+      48,
+      49,
+      50,
+      50,
+      51,
+      51,
+      52,
+      52,
+      52,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      50,
+      49,
+      48,
+      48,
+      49,
+      49,
+      49,
+      50,
+      50,
+      50,
+      50,
+      50,
+      50,
+      50,
+      50,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      52,
+      51,
+      51,
+      51,
+      51,
+      51,
+      50,
+      50,
+      49,
+      49,
+      48,
+      48,
+      48,
+      48,
+      47,
+      48,
+      48,
+      47,
+      47,
+      47,
+      47,
+      49,
+      49,
+      49,
+      49,
+      50,
+      50,
+      51,
+      51,
+      52,
+      52,
+      52,
+      52,
+      52,
+      51,
+      52,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      51,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      51,
+      50,
+      50,
+      50,
+      50,
+      51,
+      50,
+      50,
+      49,
+      49,
+      49,
+      49,
+      49,
+      49,
+      48,
+      48,
+      48,
+      48,
+      48,
+      48,
+      49,
+      48,
+      48,
+      48,
+      48,
+      48,
+      48,
+      48,
+      48,
+      49,
+      51,
+      52,
+      53,
+      55,
+      54,
+      54,
+      54,
+      57,
+      59,
+      60,
+      60,
+      61,
+      62,
+      62,
+      63,
+      65,
+      66,
+      66,
+      65,
+      64,
+      64,
+      63,
+      65,
+      65,
+      63,
+      62,
+      63,
+      61,
+      61,
+      61,
+      62,
+      63,
+      64,
+      65,
+      65,
+      67,
+      68,
+      69,
+      69,
+      69,
+      70,
+      69,
+      70,
+      70,
+      70,
+      70,
+      71,
+      71,
+      70,
+      71,
+      71,
+      71,
+      70,
+      71,
+      71,
+      72,
+      73,
+      72,
+      72,
+      72,
+      71,
+      73,
+      73,
+      71,
+      71,
+      71,
+      71,
+      71,
+      71,
+      70,
+      72,
+      73,
+      74,
+      74,
+      75,
+      76,
+      77,
+      76,
+      74,
+      73,
+      74,
+      75,
+      78,
+      80,
+      81,
+      82,
+      83,
+      82,
+      83,
+      84,
+      85,
+      85,
+      88,
+      91,
+      90,
+      91,
+      92,
+      93,
+      93,
+      94,
+      97,
+      99,
+      99,
+      100,
+      101,
+      101,
+      101,
+      100,
+      100,
+      101,
+      102,
+      103,
+      104,
+      105,
+      106,
+      107,
+      107,
+      107,
+      107,
+      106,
+      106,
+      107,
+      108,
+      106,
+      106,
+      104,
+      104,
+      104,
+      103,
+      103,
+      101,
+      101,
+      100,
+      98,
+      96,
+      93,
+      91,
+      89,
+      87,
+      85,
+      84,
+      81,
+      80,
+      78,
+      78,
+      76,
+      78,
+      78,
+      77,
+      77,
+      76,
+      77,
+      74,
+      72,
+      71,
+      71,
+      72,
+      71,
+      71,
+      71,
+      70,
+      70,
+      71,
+      71,
+      71,
+      73,
+      72,
+      72,
+      71,
+      71,
+      70,
+      71,
+      71,
+      71,
+      73,
+      74,
+      75,
+      80,
+      81,
+      84,
+      85,
+      83,
+      83,
+      82,
+      80,
+      80,
+      79,
+      78,
+      77,
+      75,
+      73,
+      73,
+      72,
+      71,
+      71,
+      72,
+      71,
+      71,
+      71,
+      71,
+      72,
+      71,
+      71,
+      71,
+      71,
+      71,
+      71,
+      70,
+      69,
+      68,
+      67,
+      67,
+      67,
+      67,
+      66,
+      65,
+      65,
+      65,
+      65,
+      65,
+      66,
+      66,
+      68,
+      66,
+      66,
+      66,
+      67,
+      67,
+      66,
+      65,
+      65,
+      64,
+      62,
+      62,
+      62,
+      62,
+      62,
+      64,
+      64,
+      65,
+      65,
+      64,
+      63,
+      62,
+      63,
+      63,
+      64,
+      65,
+      66,
+      65,
+      65,
+      64,
+      64,
+      64,
+      65,
+      66,
+      66,
+      66,
+      66,
+      66,
+      65,
+      65,
+      64,
+      64,
+      64,
+      63,
+      63,
+      63,
+      64,
+      64,
+      63,
+      64,
+      65,
+      65,
+      65,
+      66,
+      66,
+      67,
+      67,
+      67,
+      67,
+      67,
+      67,
+      67,
+      67,
+      67,
+      67,
+      69,
+      70,
+      70,
+      70,
+      72,
+      72,
+      72,
+      73,
+      73,
+      74,
+      74,
+      74,
+      74,
+      74,
+      74,
+      74,
+      74,
+      75,
+      75,
+      75,
+      75,
+      75,
+      75,
+      75,
+      76,
+      76,
+      75,
+      76,
+      76,
+      76,
+      77,
+      76,
+      77,
+      76,
+      75,
+      75,
+      75,
+      75,
+      75,
+      74,
+      73,
+      71,
+      73,
+      75,
+      75,
+      75,
+      74,
+      75,
+      74,
+      74,
+      75,
+      75,
+      75,
+      76,
+      75,
+      75,
+      73,
+      74,
+      73,
+      72,
+      71,
+      71,
+      71,
+      70,
+      70,
+      69,
+      69,
+      69,
+      69,
+      69,
+      68,
+      67,
+      66,
+      68,
+      68,
+      68,
+      68,
+      68,
+      68,
+      67,
+      67,
+      67,
+      66,
+      65,
+      65,
+      63,
+      64,
+      63,
+      63,
+      63,
+      63,
+      62,
+      61,
+      62,
+      61,
+      60,
+      60,
+      60,
+      60,
+      61,
+      62,
+      62,
+      62,
+      62,
+      62,
+      62,
+      62,
+      62,
+      62,
+      62,
+      61,
+      63,
+      62,
+      62,
+      62,
+      60,
+      61,
+      62,
+      61,
+      60,
+      60,
+      60,
+      59,
+      60,
+      61,
+      60,
+      60,
+      60,
+      59,
+      58,
+      57,
+      57,
+      54,
+      54,
+      55,
+      57,
+      57,
+      57,
+      57,
+      57,
+      57,
+      60,
+      61,
+      61,
+      61,
+      63,
+      63,
+      66,
+      70,
+      72,
+      71,
+      71,
+      71,
+      69,
+      71,
+      71,
+      71,
+      71,
+      69,
+      67,
+      66,
+      66,
+      65,
+      67,
+      67,
+      67,
+      69,
+      70,
+      70,
+      65,
+      66,
+      64,
+      64,
+      63,
+      63,
+      62,
+      60,
+      60,
+      60,
+      60,
+      60,
+      59,
+      61,
+      61,
+      60,
+      60,
+      60,
+      61,
+      59,
+      60,
+      60,
+      61,
+      64,
+      66,
+      66,
+      65,
+      65,
+      65,
+      67,
+      66,
+      67,
+      66,
+      68,
+      67,
+      67,
+      67,
+      67,
+      66,
+      66,
+      66,
+      66,
+      65,
+      65,
+      65,
+      65,
+      65,
+      65,
+      66,
+      66,
+      66,
+      66,
+      66,
+      66,
+      64,
+      64,
+      63,
+      63,
+      64,
+      64,
+      64,
+      65,
+      65,
+      65,
+      65,
+      64,
+      63,
+      63,
+      63,
+      63,
+      63,
+      63,
+      63,
+      63,
+      63,
+      64,
+      64,
+      63,
+      65,
+      64,
+      64,
+      65,
+      65,
+      66,
+      65,
+      66,
+      67,
+      67,
+      68,
+      68,
+      69,
+      69,
+      68,
+      68,
+      69,
+      68,
+      68,
+      67,
+      66,
+      67,
+      67,
+      67,
+      67,
+      68,
+      69,
+      69,
+      70,
+      71,
+      70,
+      70,
+      70,
+      70,
+      70,
+      71,
+      70,
+      70,
+      71,
+      70,
+      70,
+      70,
+      71,
+      71,
+      70,
+      70,
+      70,
+      71,
+      71,
+      69,
+      69,
+      69,
+      69,
+      68,
+      69,
+      68,
+      67,
+      67,
+      67,
+      67,
+      66,
+      62,
+      61,
+      61,
+      61,
+      61,
+      62,
+      62,
+      61,
+      60,
+      60,
+      59,
+      58,
+      58,
+      58,
+      58,
+      58,
+      58,
+      59,
+      59,
+      58,
+      58,
+      59,
+      60,
+      59,
+      59,
+      59,
+      61,
+      61,
+      61,
+      62,
+      62,
+      63,
+      61,
+      61,
+      61,
+      60,
+      60,
+      59,
+      59,
+      59,
+      60,
+      59,
+      59,
+      58,
+      57,
+      56,
+      55,
+      56,
+      57,
+      56,
+      58,
+      57,
+      58,
+      58,
+      59,
+      59,
+      59,
+      58,
+      56,
+      57,
+      56,
+      56,
+      56,
+      56,
+      55,
+      55,
+      54,
+      53,
+      53,
+      53,
+      53,
+      51,
+      51,
+      51,
+      50,
+      51,
+      51,
+      51,
+      51,
+      50,
+      49,
+      48,
+      48,
+      47,
+      47,
+      46,
+      46,
+      47,
+      48,
+      48,
+      48,
+      50,
+      50,
+      49,
+      50,
+      50,
+      50,
+      51,
+      51,
+      51,
+      52,
+      53,
+      53,
+      53,
+      53,
+      53,
+      54,
+      54,
+      54,
+      55,
+      54,
+      54,
+      52,
+      53,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      50,
+      51,
+      51,
+      50,
+      50,
+      50,
+      50,
+      51,
+      50,
+      49,
+      49,
+      49,
+      49,
+      49,
+      50,
+      50,
+      49,
+      50,
+      50,
+      50,
+      50,
+      50,
+      50,
+      49,
+      50,
+      50,
+      50,
+      50,
+      51,
+      51,
+      51,
+      51,
+      52,
+      52,
+      52,
+      52,
+      52,
+      51,
+      51,
+      50,
+      50,
+      50,
+      50,
+      50,
+      50,
+      49,
+      49,
+      49,
+      49,
+      49,
+      49,
+      49,
+      48,
+      47,
+      46,
+      49,
+      47,
+      48,
+      49,
+      50,
+      50,
+      50,
+      49,
+      50,
+      52,
+      51,
+      51,
+      52,
+      52,
+      52,
+      53,
+      54,
+      53,
+      52,
+      50,
+      50,
+      50,
+      48,
+      49,
+      48,
+      47,
+      45,
+      44,
+      45,
+      46,
+      46,
+      46,
+      48,
+      49,
+      48,
+      48,
+      47,
+      47,
+      46,
+      46,
+      45,
+      46,
+      46,
+      45,
+      45,
+      46,
+      45,
+      45,
+      45,
+      45,
+      45,
+      45,
+      44,
+      44,
+      44,
+      44,
+      44,
+      44,
+      44,
+      45,
+      45,
+      46,
+      46,
+      45,
+      45,
+      45,
+      45,
+      44,
+      44,
+      44,
+      44,
+      45,
+      43,
+      43,
+      44,
+      44,
+      44,
+      43,
+      43,
+      43,
+      43,
+      45,
+      46,
+      44,
+      45,
+      45,
+      45,
+      45,
+      46,
+      45,
+      46,
+      46,
+      46,
+      46,
+      47,
+      46,
+      46,
+      46,
+      59,
+      59,
+      59,
+      59,
+      58,
+      55,
+      54,
+      54,
+      54,
+      55,
+      56,
+      57,
+      56,
+      56,
+      57,
+      56,
+      55,
+      53,
+      53,
+      52,
+      52,
+      52,
+      51,
+      51,
+      51,
+      50,
+      50,
+      51,
+      51,
+      51,
+      51,
+      51,
+      50,
+      51,
+      50,
+      49,
+      49,
+      49,
+      48,
+      48
+    ],
+    "heading": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "horizontal_accuracy": [
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      7,
+      9,
+      11,
+      12,
+      13,
+      12,
+      13,
+      13,
+      14,
+      11,
+      12,
+      11,
+      10,
+      11,
+      9,
+      7,
+      6,
+      6,
+      6,
+      6,
+      7,
+      6,
+      6,
+      6,
+      6,
+      6,
+      6,
+      6,
+      6,
+      7,
+      7,
+      7,
+      7,
+      6,
+      6,
+      6,
+      6,
+      7,
+      9,
+      9,
+      9,
+      8,
+      8,
+      9,
+      9,
+      9,
+      8,
+      8,
+      8,
+      7,
+      6,
+      6,
+      7,
+      8,
+      8,
+      7,
+      7,
+      6,
+      7,
+      7,
+      7,
+      8,
+      7,
+      7,
+      7,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      6,
+      6,
+      5,
+      4,
+      5,
+      5,
+      6,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      5,
+      6,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      3,
+      3,
+      3,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      7,
+      6,
+      6,
+      6,
+      6,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      5,
+      4,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      3,
+      4,
+      3,
+      3,
+      4,
+      4,
+      3,
+      4,
+      4,
+      4
+    ],
+    "vertical_accuracy": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "raw": []
+  },
+  "bbox": [
+    [
+      -123.38190531,
+      44.47254914
+    ],
+    [
+      -123.38190531,
+      44.56751068
+    ],
+    [
+      -123.25225519,
+      44.56751068
+    ],
+    [
+      -123.25225519,
+      44.47254914
+    ]
+  ]
+};
+
+
+var houseToCoordley = {
+  "type": "Feature",
+  "geometry": {
+    "type": "MultiPoint",
+    "coordinates": [
+      [
+        -123.26455772,
+        44.54983277
+      ],
+      [
+        -123.26500558,
+        44.54982299
+      ],
+      [
+        -123.26528848,
+        44.55004093
+      ],
+      [
+        -123.26522978,
+        44.55035858
+      ],
+      [
+        -123.26520235,
+        44.55066664
+      ],
+      [
+        -123.26522582,
+        44.55098449
+      ],
+      [
+        -123.26521138,
+        44.55130029
+      ],
+      [
+        -123.26518003,
+        44.55160747
+      ],
+      [
+        -123.26518163,
+        44.55188308
+      ],
+      [
+        -123.26557851,
+        44.55188898
+      ],
+      [
+        -123.26599874,
+        44.55189944
+      ],
+      [
+        -123.26642195,
+        44.55190139
+      ],
+      [
+        -123.26683924,
+        44.55192871
+      ],
+      [
+        -123.26724848,
+        44.55193516
+      ],
+      [
+        -123.26766514,
+        44.55194627
+      ],
+      [
+        -123.26804338,
+        44.55193255
+      ],
+      [
+        -123.268485,
+        44.55190395
+      ],
+      [
+        -123.26889981,
+        44.55190189
+      ],
+      [
+        -123.26930378,
+        44.5518918
+      ],
+      [
+        -123.26972114,
+        44.5519131
+      ],
+      [
+        -123.27001578,
+        44.55214162
+      ],
+      [
+        -123.26992328,
+        44.55242064
+      ],
+      [
+        -123.26980421,
+        44.55271085
+      ],
+      [
+        -123.26979138,
+        44.55299119
+      ],
+      [
+        -123.26978961,
+        44.5533388
+      ],
+      [
+        -123.26979357,
+        44.55360978
+      ],
+      [
+        -123.27000672,
+        44.553837
+      ],
+      [
+        -123.27043173,
+        44.55391549
+      ],
+      [
+        -123.27077426,
+        44.55406337
+      ],
+      [
+        -123.2711259,
+        44.55427745
+      ],
+      [
+        -123.27142782,
+        44.55448869
+      ],
+      [
+        -123.27165155,
+        44.55471097
+      ],
+      [
+        -123.27195074,
+        44.55492459
+      ],
+      [
+        -123.27223789,
+        44.55511313
+      ],
+      [
+        -123.27260869,
+        44.55527249
+      ],
+      [
+        -123.27298495,
+        44.55536561
+      ],
+      [
+        -123.27335499,
+        44.55545537
+      ],
+      [
+        -123.27373329,
+        44.5555322
+      ],
+      [
+        -123.27410536,
+        44.55565105
+      ],
+      [
+        -123.27423139,
+        44.55593092
+      ],
+      [
+        -123.27425776,
+        44.55623974
+      ],
+      [
+        -123.2741858,
+        44.55659789
+      ],
+      [
+        -123.27411027,
+        44.55687099
+      ],
+      [
+        -123.27404736,
+        44.55717146
+      ],
+      [
+        -123.27412948,
+        44.55746332
+      ],
+      [
+        -123.27421196,
+        44.55773261
+      ],
+      [
+        -123.2742752,
+        44.55803031
+      ],
+      [
+        -123.27427864,
+        44.55835353
+      ],
+      [
+        -123.27421796,
+        44.55862406
+      ],
+      [
+        -123.27423396,
+        44.55889831
+      ],
+      [
+        -123.27413285,
+        44.55920039
+      ],
+      [
+        -123.2740497,
+        44.55949214
+      ],
+      [
+        -123.27380771,
+        44.55970488
+      ],
+      [
+        -123.27376891,
+        44.55998712
+      ],
+      [
+        -123.27394641,
+        44.56024437
+      ],
+      [
+        -123.27403613,
+        44.56055581
+      ],
+      [
+        -123.27415413,
+        44.56082019
+      ],
+      [
+        -123.27425083,
+        44.56111626
+      ],
+      [
+        -123.2743179,
+        44.56139533
+      ],
+      [
+        -123.2743746,
+        44.56169452
+      ],
+      [
+        -123.27429191,
+        44.56199143
+      ],
+      [
+        -123.27427041,
+        44.56230578
+      ],
+      [
+        -123.27434592,
+        44.56262136
+      ],
+      [
+        -123.27431907,
+        44.56289923
+      ],
+      [
+        -123.27436043,
+        44.56322845
+      ],
+      [
+        -123.27433006,
+        44.56350296
+      ],
+      [
+        -123.27436948,
+        44.56379745
+      ],
+      [
+        -123.27433029,
+        44.56407998
+      ],
+      [
+        -123.27431553,
+        44.56437327
+      ],
+      [
+        -123.27443522,
+        44.56450075
+      ],
+      [
+        -123.2744672,
+        44.56451763
+      ],
+      [
+        -123.27468884,
+        44.56453951
+      ],
+      [
+        -123.27473598,
+        44.56454424
+      ],
+      [
+        -123.27508694,
+        44.56468481
+      ],
+      [
+        -123.27551389,
+        44.56468727
+      ],
+      [
+        -123.27588798,
+        44.56462461
+      ],
+      [
+        -123.27631628,
+        44.56459386
+      ],
+      [
+        -123.27669485,
+        44.5646084
+      ],
+      [
+        -123.27683369,
+        44.56481807
+      ],
+      [
+        -123.27684494,
+        44.56485063
+      ],
+      [
+        -123.27692962,
+        44.56515253
+      ],
+      [
+        -123.27691232,
+        44.5654263
+      ],
+      [
+        -123.27693018,
+        44.56571212
+      ],
+      [
+        -123.27699386,
+        44.56598239
+      ],
+      [
+        -123.277047,
+        44.56625557
+      ],
+      [
+        -123.27702752,
+        44.56655647
+      ],
+      [
+        -123.27703252,
+        44.56660825
+      ],
+      [
+        -123.2773094,
+        44.56681899
+      ],
+      [
+        -123.27771354,
+        44.56682007
+      ],
+      [
+        -123.27811822,
+        44.56686252
+      ],
+      [
+        -123.27850242,
+        44.5668559
+      ],
+      [
+        -123.27881401,
+        44.56687156
+      ],
+      [
+        -123.27886436,
+        44.5668823
+      ],
+      [
+        -123.27927876,
+        44.56683776
+      ],
+      [
+        -123.27966144,
+        44.56683041
+      ],
+      [
+        -123.28003895,
+        44.5668598
+      ],
+      [
+        -123.28041982,
+        44.56689117
+      ]
+    ]
+  },
+  "properties": {
+    "time": [
+      1369786338000,
+      1369786345000,
+      1369786352000,
+      1369786358000,
+      1369786364000,
+      1369786370000,
+      1369786376000,
+      1369786383000,
+      1369786443000,
+      1369786510000,
+      1369786515000,
+      1369786521000,
+      1369786527000,
+      1369786533000,
+      1369786539000,
+      1369786544000,
+      1369786550000,
+      1369786556000,
+      1369786563000,
+      1369786571000,
+      1369786580000,
+      1369786585000,
+      1369786590000,
+      1369786595000,
+      1369786601000,
+      1369786606000,
+      1369786611000,
+      1369786616000,
+      1369786621000,
+      1369786627000,
+      1369786633000,
+      1369786638000,
+      1369786644000,
+      1369786651000,
+      1369786658000,
+      1369786664000,
+      1369786670000,
+      1369786677000,
+      1369786684000,
+      1369786691000,
+      1369786698000,
+      1369786704000,
+      1369786710000,
+      1369786718000,
+      1369786725000,
+      1369786729000,
+      1369786735000,
+      1369786741000,
+      1369786746000,
+      1369786751000,
+      1369786757000,
+      1369786766000,
+      1369786774000,
+      1369786780000,
+      1369786784000,
+      1369786792000,
+      1369786798000,
+      1369786805000,
+      1369786811000,
+      1369786818000,
+      1369786826000,
+      1369786833000,
+      1369786838000,
+      1369786844000,
+      1369786849000,
+      1369786854000,
+      1369786862000,
+      1369786873000,
+      1369786887000,
+      1369786892000,
+      1369786893000,
+      1369786898000,
+      1369786899000,
+      1369786908000,
+      1369786914000,
+      1369786920000,
+      1369786927000,
+      1369786935000,
+      1369786943000,
+      1369786944000,
+      1369786951000,
+      1369786959000,
+      1369786967000,
+      1369786974000,
+      1369786979000,
+      1369786984000,
+      1369786985000,
+      1369787001000,
+      1369787009000,
+      1369787017000,
+      1369787022000,
+      1369787027000,
+      1369787028000,
+      1369787035000,
+      1369787041000,
+      1369787047000,
+      1369787053000
+    ],
+    "speed": [
+      16,
+      18,
+      15,
+      19,
+      20,
+      21,
+      20,
+      16,
+      8,
+      17,
+      20,
+      20,
+      19,
+      19,
+      20,
+      21,
+      21,
+      21,
+      15,
+      14,
+      14,
+      15,
+      17,
+      19,
+      21,
+      23,
+      21,
+      22,
+      22,
+      21,
+      21,
+      18,
+      19,
+      16,
+      17,
+      17,
+      16,
+      14,
+      14,
+      16,
+      17,
+      19,
+      16,
+      14,
+      16,
+      25,
+      23,
+      22,
+      23,
+      23,
+      19,
+      12,
+      14,
+      15,
+      19,
+      17,
+      17,
+      17,
+      17,
+      16,
+      14,
+      15,
+      24,
+      20,
+      24,
+      19,
+      18,
+      9,
+      9,
+      8,
+      8,
+      10,
+      10,
+      12,
+      14,
+      14,
+      14,
+      13,
+      10,
+      10,
+      14,
+      14,
+      14,
+      14,
+      15,
+      16,
+      16,
+      14,
+      15,
+      14,
+      19,
+      16,
+      15,
+      16,
+      17,
+      17,
+      15
+    ],
+    "altitude": [
+      48,
+      48,
+      45,
+      42,
+      40,
+      43,
+      44,
+      45,
+      46,
+      46,
+      43,
+      41,
+      39,
+      39,
+      37,
+      39,
+      37,
+      37,
+      37,
+      36,
+      36,
+      37,
+      38,
+      38,
+      40,
+      41,
+      41,
+      40,
+      41,
+      38,
+      37,
+      36,
+      36,
+      36,
+      37,
+      36,
+      35,
+      35,
+      34,
+      36,
+      36,
+      36,
+      38,
+      38,
+      43,
+      44,
+      43,
+      44,
+      44,
+      44,
+      44,
+      44,
+      45,
+      46,
+      46,
+      45,
+      45,
+      45,
+      45,
+      43,
+      45,
+      42,
+      44,
+      45,
+      46,
+      47,
+      46,
+      44,
+      44,
+      44,
+      44,
+      42,
+      43,
+      43,
+      42,
+      43,
+      42,
+      42,
+      40,
+      40,
+      41,
+      41,
+      41,
+      42,
+      42,
+      44,
+      44,
+      40,
+      36,
+      34,
+      35,
+      36,
+      35,
+      37,
+      41,
+      39,
+      38
+    ],
+    "heading": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "horizontal_accuracy": [
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      4,
+      4,
+      4,
+      4,
+      4,
+      4,
+      5,
+      5,
+      5,
+      4,
+      5,
+      13,
+      13,
+      11,
+      9,
+      7,
+      7,
+      6,
+      6,
+      5,
+      7,
+      8,
+      8,
+      7,
+      6,
+      6,
+      6,
+      9,
+      7,
+      7,
+      8,
+      13,
+      22,
+      17,
+      8,
+      6,
+      6,
+      6,
+      7,
+      8,
+      7,
+      8,
+      11,
+      12,
+      14,
+      11,
+      9,
+      8,
+      8,
+      7,
+      7,
+      9,
+      7,
+      8,
+      8,
+      20,
+      19,
+      8,
+      5,
+      6,
+      7,
+      8,
+      7,
+      7,
+      9,
+      8,
+      8,
+      9,
+      11,
+      12,
+      14,
+      19,
+      44,
+      75,
+      78,
+      20,
+      12,
+      12,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      5,
+      4,
+      4
+    ],
+    "vertical_accuracy": [
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ],
+    "raw": []
+  },
+  "bbox": [
+    [
+      -123.28123457,
+      44.54908199
+    ],
+    [
+      -123.28123457,
+      44.56767517
+    ],
+    [
+      -123.26284914,
+      44.56767517
+    ],
+    [
+      -123.26284914,
+      44.54908199
+    ]
+  ]
+};
+
+
+export var demoTracks = [blodgett, drive, houseToCoordley, tillicum];

+ 12 - 1
src/components/LeafletMap/languages/En.json

@@ -1,3 +1,14 @@
 {
-    "leaflet": "leaflet"
+    "leaflet": "leaflet",
+
+    "Street View": "Street View",
+    "Center map here": "Center map here",
+    "Zoom in": "Zoom in",
+    "Zoom out": "Zoom out",
+
+    "Distance": "Distance",
+    "Elevation": "Elevation",
+    "Segment length": "Segment length",
+    "Type": "Type",
+    "Legend": "Legend"
 }

+ 12 - 1
src/components/LeafletMap/languages/Es.json

@@ -1,3 +1,14 @@
 {
-    "leaflet": "folleto"
+    "leaflet": "folleto",
+
+    "Street View": "vista de calle",
+    "Center map here": "Mapa del centro aquí",
+    "Zoom in": "Acercarse",
+    "Zoom out": "Disminuir el zoom",
+
+    "Distance": "Distancia",
+    "Elevation": "Elevación",
+    "Segment length": "Longitud del segmento",
+    "Type": "Tipo",
+    "Legend": "Leyenda"
 }

+ 12 - 1
src/components/LeafletMap/languages/Fr.json

@@ -1,3 +1,14 @@
 {
-    "leaflet": "brochure"
+    "leaflet": "brochure",
+
+    "Street View": "Street View",
+    "Center map here": "Plan du centre ici",
+    "Zoom in": "Agrandir",
+    "Zoom out": "Dézoomer",
+
+    "Distance": "Distance",
+    "Elevation": "Élévation",
+    "Segment length": "Longueur de segment",
+    "Type": "Type",
+    "Legend": "Légende"
 }

+ 12 - 1
src/components/LeafletMap/languages/Ru.json

@@ -1,3 +1,14 @@
 {
-    "leaflet": "листовка"
+    "leaflet": "листовка",
+
+    "Street View": "Просмотр улиц",
+    "Center map here": "Карта центра здесь",
+    "Zoom in": "Приблизить",
+    "Zoom out": "Уменьшить",
+
+    "Distance": "Расстояние",
+    "Elevation": "высота",
+    "Segment length": "Длина сегмента",
+    "Type": "Тип",
+    "Legend": "легенда"
 }

+ 1 - 0
src/components/LeafletMap/leaflet-sidebar.css

@@ -209,6 +209,7 @@
 
 .leaflet-sidebar-body ul{
   padding-left: 16px;
+  font-size: 1rem;
 }
 
 .leaflet-sidebar-body li{

+ 1 - 0
src/components/LeafletMap/sidebar.js

@@ -1,3 +1,4 @@
+import './leaflet-sidebar.css';
 
 class LMapSidebar{
     constructor(id){

+ 6 - 2
src/components/LeafletMap/vendor.js

@@ -18,7 +18,6 @@ import 'leaflet.fullscreen/Control.FullScreen';
 import 'leaflet.fullscreen/Control.FullScreen.css';
 
 import 'leaflet-sidebar-v2/js/leaflet-sidebar';
-import './leaflet-sidebar.css';
 
 import 'leaflet-gpx/gpx';
 
@@ -29,4 +28,9 @@ import 'leaflet-routing-machine/dist/leaflet-routing-machine';
 import 'leaflet-routing-machine/dist/leaflet-routing-machine.css';
 
 import 'leaflet-control-geocoder/dist/Control.Geocoder';
-import 'leaflet-control-geocoder/dist/Control.Geocoder.css';
+import 'leaflet-control-geocoder/dist/Control.Geocoder.css';
+
+import './LPlayback/LeafletPlayback';
+import './LPlayback/playback_control';
+
+import 'leaflet-spin/leaflet.spin';

+ 66 - 4
src/views/LMaps/mapfunctions.js

@@ -7,23 +7,85 @@ import { data } from './tempData';
 
 export default class MapFunctions extends React.Component{
     componentDidMount(){
-        this.markersMap = new LMap('position_map', MapTypes._POSITION_, { 
+        this.positionMap = new LMap('position_map', MapTypes._POSITION_, { 
             center: [46.9547232,8.8598507],
             zoom: 8,
             clustering: true,
             sidebar: true,
             elevation: true,
             geosearch: true,
-            routing: true
+            routing: true,
+            language: 'ES'
         });
 
-        this.markersMap.addTileLayers([ '_OPENSTREET_', '_OPENTOPO_', '_AERIAL_', '_TERRAIN_', '_TRAFFIC_' ],{
+        this.positionMap.addTileLayers([ '_OPENSTREET_', '_OPENTOPO_', '_AERIAL_', '_TERRAIN_', '_TRAFFIC_' ],{
             detectRetina: true,
             maxZoom: 19,
             maxNativeZoom: 17,
         });
         
-        this.markersMap.addElements(data.map_elem);
+        this.positionMap.addElements(data.map_elem);
+
+        var _allEl = this.positionMap.getAllElements();
+        console.log('get all elements', _allEl);
+        
+        var _oneEl = this.positionMap.getElementByID("0001");
+        console.log("get one element", _oneEl);
+
+        // this.positionMap.removeElement("0001");
+        // this.positionMap.removeAllElements();
+
+        var curStatus = _oneEl.getStatus();
+        console.log('element status', curStatus);
+
+        // _oneEl.setStatus('disabled');
+
+        var curPos = _oneEl.getPosition();
+        console.log('current element position', curPos);
+
+        _oneEl.setPosition("50.234234,14.323424");
+        _oneEl.setPosition({lat: 50.234234, lng: 14.323424});
+
+        var curIcon = _oneEl.getIcon();
+        console.log('current element icon', curIcon);
+
+        _oneEl.setIcon({icon: 'fa fa-car', color: 'black'});
+        
+        var curColor = _oneEl.getColor();
+        console.log('current element icon', curColor);
+
+        _oneEl.setColor("#0014ff");
+
+        _oneEl.showTrack();
+        _oneEl.hideTrack();
+        
+        var curTrack = _oneEl.getTrack();
+        console.log("current element track", curTrack);
+
+        _oneEl.setTrack([
+            {cord: '50.073658, 14.418540', timestamp: 2342342444},
+            {cord: '50.173658, 14.518540', timestamp: 2342342444},
+            {cord: '50.273658, 14.618540', timestamp: 2342342444},
+            {cord: '50.373658, 14.718540', timestamp: 2342342444},
+            {cord: '50.473658, 14.818540', timestamp: 2342342444},
+            {cord: '50.573658, 14.918540', timestamp: 2342342444},
+            {cord: '50.673658, 14.918540', timestamp: 2342342444},
+            {cord: '50.773658, 14.818540', timestamp: 2342342444}
+        ]);
+
+        _oneEl.addTrack({cord: '50.773658, 14.818540', timestamp: 2342342444});
+
+        var curProp = _oneEl.getProperties();
+        console.log('current element Properties', curProp);
+
+        _oneEl.setProperties({});
+        _oneEl.addProperty({});
+
+
+        var allData = _oneEl.getAllData();
+        console.log('current element data', allData);
+
+        _oneEl.refreshElement();
     };
 
     render(){

+ 50 - 48
src/views/LMaps/tempData.js

@@ -11,14 +11,16 @@ export var data = {
                 is_moving: true,
                 tags: ['is_car', 'is_beatiful', 'has_wheels']
             },
-            data: {
-                '1': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '2': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '3': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '4': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '5': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '6': {cord: '32.434343, 43.043043', timestamp: 2342342444}
-            }
+            data: [
+                {cord: '50.073658, 14.418540', timestamp: 2342342444},
+                {cord: '50.173658, 14.518540', timestamp: 2342342444},
+                {cord: '50.273658, 14.618540', timestamp: 2342342444},
+                {cord: '50.373658, 14.718540', timestamp: 2342342444},
+                {cord: '50.473658, 14.818540', timestamp: 2342342444},
+                {cord: '50.573658, 14.918540', timestamp: 2342342444},
+                {cord: '50.673658, 14.918540', timestamp: 2342342444},
+                {cord: '50.773658, 14.818540', timestamp: 2342342444}
+            ]
         },
         {
             id: "0002",
@@ -31,14 +33,14 @@ export var data = {
                 is_moving: true,
                 tags: ['is_car', 'is_beatiful', 'has_wheels']
             },
-            data: {
-                '1': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '2': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '3': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '4': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '5': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '6': {cord: '32.434343, 43.043043', timestamp: 2342342444}
-            }
+            data: [
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444}
+            ]
         },
         {
             id: "0003",
@@ -51,14 +53,14 @@ export var data = {
                 is_moving: true,
                 tags: ['is_car', 'is_beatiful', 'has_wheels']
             },
-            data: {
-                '1': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '2': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '3': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '4': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '5': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '6': {cord: '32.434343, 43.043043', timestamp: 2342342444}
-            }
+            data: [
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444}
+            ]
         },
         {
             id: "0004",
@@ -71,14 +73,14 @@ export var data = {
                 is_moving: true,
                 tags: ['is_car', 'is_beatiful', 'has_wheels']
             },
-            data: {
-                '1': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '2': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '3': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '4': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '5': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '6': {cord: '32.434343, 43.043043', timestamp: 2342342444}
-            }
+            data: [
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444}
+            ]
         },
         {
             id: "0005",
@@ -91,14 +93,14 @@ export var data = {
                 is_moving: true,
                 tags: ['is_car', 'is_beatiful', 'has_wheels']
             },
-            data: {
-                '1': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '2': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '3': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '4': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '5': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '6': {cord: '32.434343, 43.043043', timestamp: 2342342444}
-            }
+            data: [
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444}
+            ]
         },
         {
             id: "0006",
@@ -111,14 +113,14 @@ export var data = {
                 is_moving: true,
                 tags: ['is_car', 'is_beatiful', 'has_wheels']
             },
-            data: {
-                '1': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '2': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '3': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '4': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '5': {cord: '32.434343, 43.043043', timestamp: 2342342444},
-                '6': {cord: '32.434343, 43.043043', timestamp: 2342342444}
-            }
+            data: [
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444},
+                {cord: '32.434343, 43.043043', timestamp: 2342342444}
+            ]
         },
         
         ////////// heat 

Some files were not shown because too many files changed in this diff