[node-osmium] 01/10: Imported Upstream version 0.1.0

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Fri Mar 6 17:09:12 UTC 2015


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository node-osmium.

commit 289b58a7838d0de8a7168e0992bd8811356e9053
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Fri Mar 6 14:56:22 2015 +0100

    Imported Upstream version 0.1.0
---
 .gitignore                       |    6 +
 .travis.yml                      |   25 +
 LICENSE.txt                      |   23 +
 Makefile                         |   27 +
 README.md                        |   84 +
 binding.gyp                      |   52 +
 common.gypi                      |   23 +
 configure                        |    3 +
 demo/README.md                   |   13 +
 demo/geojson-stream/README.md    |   14 +
 demo/geojson-stream/index.js     |   48 +
 demo/geojson-stream/package.json |    8 +
 lib/index.js                     |    1 +
 lib/osmium.js                    |    3 +
 package.json                     |   36 +
 src/buffer.hpp                   |   85 +
 src/file.hpp                     |  102 +
 src/handler.hpp                  |  320 +++
 src/node_osmium.cpp              |   28 +
 src/reader.hpp                   |  205 ++
 test/data/winthrop.osm           | 4494 ++++++++++++++++++++++++++++++++++++++
 test/osmium.test.js              |   73 +
 22 files changed, 5673 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..31fef51
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+node_modules
+lib/osmium.node
+.DS_Store
+build
+berlin-latest.osm.pbf
+.*.swp
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..999579c
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,25 @@
+language: node_js
+
+node_js:
+ - "0.10"
+ - "0.8"
+
+before_install:
+ - sudo apt-add-repository --yes ppa:mapnik/boost
+ - sudo apt-add-repository --yes ppa:ubuntu-toolchain-r/test
+ - sudo apt-get -y update -qq
+ - sudo apt-get -y install git gcc-4.7 g++-4.7 build-essential libboost-dev zlib1g-dev protobuf-compiler libprotobuf-lite7 libprotobuf-dev libexpat1-dev libsparsehash-dev
+ - git clone https://github.com/scrosby/OSM-binary.git
+ - cd OSM-binary/src
+ - make && sudo make install
+ - cd ../../
+
+install:
+ - npm install mocha
+
+before_script:
+ - git clone https://github.com/osmcode/libosmium.git ../libosmium
+ - CXX=g++-4.7 npm install --verbose
+
+script:
+ - make test
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..36b7cd9
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,23 @@
+Boost Software License - Version 1.0 - August 17th, 2003
+
+Permission is hereby granted, free of charge, to any person or organization
+obtaining a copy of the software and accompanying documentation covered by
+this license (the "Software") to use, reproduce, display, distribute,
+execute, and transmit the Software, and to prepare derivative works of the
+Software, and to permit third-parties to whom the Software is furnished to
+do so, all subject to the following:
+
+The copyright notices in the Software and this entire statement, including
+the above license grant, this restriction and the following disclaimer,
+must be included in all copies of the Software, in whole or in part, and
+all derivative works of the Software, unless such copies or derivative
+works are solely in the form of machine-executable object code generated by
+a source language processor.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+DEALINGS IN THE SOFTWARE.
diff --git a/Makefile b/Makefile
new file mode 100755
index 0000000..32df7b4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,27 @@
+all: osmium.node
+
+osmium.node:
+	`npm explore npm -g -- pwd`/bin/node-gyp-bin/node-gyp --verbose build
+
+clean:
+	@rm -rf ./build
+	rm -f lib/osmium.node
+
+rebuild:
+	@make clean
+	@./configure
+	@make
+
+test/data/berlin-latest.osm.pbf:
+	cd test/data; \
+	wget http://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf
+
+test: test/data/berlin-latest.osm.pbf
+	@PATH="./node_modules/mocha/bin:${PATH}" && NODE_PATH="./lib:$(NODE_PATH)" mocha -R spec --timeout 10000
+
+indent:
+	astyle --style=java --indent-namespaces --indent-switches --pad-header --lineend=linux --suffix=none src/\*pp
+
+check: test
+
+.PHONY: test indent
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..042ad4c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,84 @@
+# node-osmium
+
+Node.js bindings to [libosmium](https://github.com/osmcode/libosmium).
+
+[![Build Status](https://secure.travis-ci.org/osmcode/node-osmium.png)](http://travis-ci.org/osmcode/node-osmium)
+
+# Depends
+
+ - Compiler that supports `-std=c++11` (>= clang++ 3.2 || >= g++ 4.8)
+ - Node.js v0.10.x
+ - Boost >= 1.49 with development headers
+ - OSM-Binary
+ - Protocol buffers
+ - zlib
+
+Set depedencies up on Ubuntu Precise (12.04) like:
+
+    sudo apt-add-repository --yes ppa:chris-lea/node.js
+    sudo apt-add-repository --yes ppa:mapnik/boost
+    sudo apt-add-repository --yes ppa:ubuntu-toolchain-r/test
+    sudo apt-get -y update
+    sudo apt-get -y install git gcc-4.7 g++-4.7 build-essential nodejs libboost-dev zlib1g-dev protobuf-compiler libprotobuf-lite7 libprotobuf-dev libexpat1-dev libsparsehash-dev
+    export CC=gcc-4.7
+    export CXX=g++-4.7
+    git clone https://github.com/scrosby/OSM-binary.git
+    cd OSM-binary/src
+    make && sudo make install
+
+Set depedencies up on OS X like:
+
+    git clone https://github.com/mapnik/mapnik-packaging.git
+    cd mapnik-packaging/osx
+    # open the settings and make `export CXX11=true`
+    export CXX11=true
+    source MacOSX.sh
+    ./scripts/download_deps.sh
+    ./scripts/build_google_sparsetable.sh
+    ./scripts/build_icu.sh
+    ./scripts/build_boost.sh
+    ./scripts/build_protobuf.sh
+    ./scripts/build_node.sh
+    ./scripts/build_osm-pbf.sh
+    # NOTE: in the same terminal then run the build commands
+    # Or from a different terminal re-run `source MacOSX.sh`
+
+# Building
+
+To build the bindings:
+
+    git clone https://github.com/osmcode/libosmium.git
+    git clone https://github.com/osmcode/node-osmium.git
+    cd node-osmium
+    npm install
+
+# Testing
+
+Run the tests like:
+
+    npm install mocha
+    make test
+
+# Troubleshooting
+
+If you hit a test error like the below it means you need to run `make test` instead of just `npm test` so that the test data is downloaded:
+
+    1) osmium should be able to create an osmium.Reader:
+         TypeError: Open failed
+
+If you hit an error like the below it means you need a more recent compiler that implements the C++11 language standard
+
+    cc1plus: error: unrecognized command line option ‘-std=c++11’
+
+This error indicates you need the boost development headers installed:
+
+    ../../include/osmium/osm/location.hpp:40:31: fatal error: boost/operators.hpp: No such file or directory
+
+An error like this indicates that your compiler is too old and does not support all needed c++11 features
+
+    ../../include/osmium/io/header.hpp:55:51: sorry, unimplemented: non-static data member initializers
+    ../../include/osmium/io/header.hpp:55:51: error: ISO C++ forbids in-class initialization of non-const static member ‘m_has_multiple_object_versions’
+
+And error like this indicates that you need to do `export CXXFLAGS=-fPIC` and then recompile `libosmpbf`:
+
+    /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/libosmpbf.a(fileformat.pb.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
diff --git a/binding.gyp b/binding.gyp
new file mode 100644
index 0000000..3adfc7a
--- /dev/null
+++ b/binding.gyp
@@ -0,0 +1,52 @@
+{
+  "includes": [ "common.gypi" ],
+  "variables": {
+      "module_name":"osmium",
+      "module_path":"./lib/"
+  },
+  "targets": [
+    {
+      "target_name": "<(module_name)",
+      "sources": [
+        "src/node_osmium.cpp"
+      ],
+      "include_dirs": [
+          "../libosmium/include/",
+          "./src/"
+      ],
+      "defines": [
+        "_LARGEFILE_SOURCE",
+        "_FILE_OFFSET_BITS=64",
+        "OSMIUM_WITH_DEBUG"
+      ],
+      "xcode_settings": {
+        "GCC_ENABLE_CPP_RTTI": "YES",
+        "GCC_ENABLE_CPP_EXCEPTIONS": "YES",
+        "OTHER_CPLUSPLUSFLAGS":["-stdlib=libc++"],
+        "OTHER_LDFLAGS":["-stdlib=libc++"],
+        "CLANG_CXX_LANGUAGE_STANDARD":"c++11",
+        "MACOSX_DEPLOYMENT_TARGET":"10.7"
+      },
+      "cflags_cc!": ["-fno-rtti", "-fno-exceptions"],
+      "cflags_cc" : ["-std=c++11"],
+      "libraries": [
+          "-losmpbf",
+          "-lprotobuf-lite",
+          "-lexpat",
+          "-lz",
+          "-lbz2"
+      ]
+    },
+    {
+      "target_name": "action_after_build",
+      "type": "none",
+      "dependencies": [ "<(module_name)" ],
+      "copies": [
+        {
+          "files": [ "<(PRODUCT_DIR)/<(module_name).node" ],
+          "destination": "<(module_path)"
+        }
+      ]
+    }
+  ]
+}
diff --git a/common.gypi b/common.gypi
new file mode 100644
index 0000000..f59efdf
--- /dev/null
+++ b/common.gypi
@@ -0,0 +1,23 @@
+{
+  'target_defaults': {
+      'default_configuration': 'Release',
+      'configurations': {
+          'Debug': {
+              'cflags_cc!': ['-O3', '-Os', '-DNDEBUG'],
+              'xcode_settings': {
+                'OTHER_CPLUSPLUSFLAGS!':['-O3', '-Os', '-DNDEBUG'],
+                'GCC_OPTIMIZATION_LEVEL': '0',
+                'GCC_GENERATE_DEBUGGING_SYMBOLS': 'YES'
+              }
+          },
+          'Release': {
+              'xcode_settings': {
+                'GCC_OPTIMIZATION_LEVEL': 's',
+              },
+              'ldflags': [
+                    '-Wl,-s'
+              ]
+          }
+      }
+  }
+}
\ No newline at end of file
diff --git a/configure b/configure
new file mode 100755
index 0000000..d0184d1
--- /dev/null
+++ b/configure
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+`npm explore npm -g -- pwd`/bin/node-gyp-bin/node-gyp configure $@
\ No newline at end of file
diff --git a/demo/README.md b/demo/README.md
new file mode 100644
index 0000000..ae3847b
--- /dev/null
+++ b/demo/README.md
@@ -0,0 +1,13 @@
+# node-osmium demos
+
+To try these demos just move into a demo directory and run:
+
+    npm install
+
+See the `Readme.md` for details.
+
+Then run the `index.js` for usage help:
+
+    ./index.js
+
+    
\ No newline at end of file
diff --git a/demo/geojson-stream/README.md b/demo/geojson-stream/README.md
new file mode 100644
index 0000000..a888f19
--- /dev/null
+++ b/demo/geojson-stream/README.md
@@ -0,0 +1,14 @@
+# Install
+
+    npm install
+
+# Usage
+
+Convert osm data to geojson file:
+
+    ./index.js --output winthrop.geojson --input ../../test/data/winthrop.osm
+
+You can also pipe geojson to stdout and push to http://geojson.io:
+
+    npm install -g geojsonio-cli
+    ./index.js --output stdout --input ../../test/data/winthrop.osm | geojsonio
diff --git a/demo/geojson-stream/index.js b/demo/geojson-stream/index.js
new file mode 100755
index 0000000..fac9e63
--- /dev/null
+++ b/demo/geojson-stream/index.js
@@ -0,0 +1,48 @@
+#!/usr/bin/env node
+
+if (!process.argv[2]) {
+    console.log('Usage: \n');
+    console.log('Write to file:\n\t./index.js --input file.osm --output file.geojson');
+    console.log('Write to stdout:\n\t./index.js --input file.osm --output stdout');
+    process.exit(1);
+}
+var osmium = require('../../'),
+    fs = require('fs'),
+    geojsonStream = require('geojson-stream');
+
+var argv = require('minimist')(process.argv, {
+    string: 'input',
+    string: 'output',
+});
+
+if (!argv.output || typeof(argv.output) != 'string') throw new Error('--output argument required (path to a new file or the keyword "stdout")');
+if (!argv.input || typeof(argv.input) != 'string') throw new Error('--input argument required (path to an osm file)');
+
+var reader = new osmium.Reader(argv.input);
+
+var geojsonOut = geojsonStream.stringify();
+
+if (argv.output === 'stdout') {
+    geojsonOut.pipe(process.stdout);
+} else {
+    var fileOut = fs.createWriteStream(argv.output);
+    geojsonOut.pipe(fileOut);
+}
+
+var handler = new osmium.Handler(); 
+handler.on('node',function(node) {
+    geojsonOut.write({
+        type: 'Feature',
+        geometry: {
+            type: 'Point',
+            coordinates: [node.lon, node.lat]
+        },
+        properties: {}
+    });
+});
+ 
+handler.on('done',function() {
+    geojsonOut.end();
+});
+ 
+reader.apply(handler);
diff --git a/demo/geojson-stream/package.json b/demo/geojson-stream/package.json
new file mode 100644
index 0000000..4e3beeb
--- /dev/null
+++ b/demo/geojson-stream/package.json
@@ -0,0 +1,8 @@
+{
+  "name": "test",
+  "version": "0.0.0",
+  "dependencies": {
+    "minimist":"*",
+    "geojson-stream": "*"
+  }
+}
diff --git a/lib/index.js b/lib/index.js
new file mode 100644
index 0000000..3e8ecdf
--- /dev/null
+++ b/lib/index.js
@@ -0,0 +1 @@
+module.exports = require('./osmium');
diff --git a/lib/osmium.js b/lib/osmium.js
new file mode 100644
index 0000000..ccbb5cd
--- /dev/null
+++ b/lib/osmium.js
@@ -0,0 +1,3 @@
+var osmium = require('./osmium.node');
+exports = module.exports = osmium;
+exports.version = require('../package').version;
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..d496fcd
--- /dev/null
+++ b/package.json
@@ -0,0 +1,36 @@
+{
+    "name": "osmium",
+    "description": "Node.js bindings to Osmium",
+    "url": "https://github.com/osmcode/node-osmium",
+    "homepage": "http://osmcode.org/node-osmium",
+    "author": "Dane Springmeyer <springmeyer>",
+    "contributors": [
+        "Jochen Topf <joto>"
+    ],
+    "version": "0.1.0",
+    "main": "./lib/osmium.js",
+    "bugs": {
+        "email": "dane at mapbox.com",
+        "url": "https://github.com/osmcode/node-osmium/issues"
+    },
+    "keywords": [
+        "osmium",
+        "osm",
+        "pbf",
+        "changeset"
+    ],
+    "repository": {
+        "type": "git",
+        "url": "git://github.com/osmcode/node-osmium.git"
+    },
+    "licenses": [ { "type": "Boost" } ],
+    "devDependencies": {
+        "mocha": "*"
+    },
+    "engines": {
+        "node": ">= 0.6.13 < 0.11.0"
+    },
+    "scripts": {
+        "test": "mocha -R spec"
+    }
+}
diff --git a/src/buffer.hpp b/src/buffer.hpp
new file mode 100644
index 0000000..43c17db
--- /dev/null
+++ b/src/buffer.hpp
@@ -0,0 +1,85 @@
+// v8
+#include <v8.h>
+
+// node
+#include <node.h>
+#include <node_version.h>
+#include <node_object_wrap.h>
+
+// osmium
+#include <osmium/memory/buffer.hpp>
+#include <osmium/osm/dump.hpp>
+#include <osmium/visitor.hpp>
+
+using namespace v8;
+
+namespace node_osmium {
+
+    class Buffer : public node::ObjectWrap {
+
+    public:
+
+        static Persistent<FunctionTemplate> constructor;
+        static void Initialize(Handle<Object> target);
+        static Handle<Value> New(Arguments const& args);
+        static Handle<Value> dump(Arguments const& args);
+        Buffer(reader_ptr reader);
+        void _ref() {
+            Ref();
+        }
+        void _unref() {
+            Unref();
+        }
+        osmium::memory::Buffer buf;
+
+    private:
+
+        ~Buffer();
+    };
+
+    Persistent<FunctionTemplate> Buffer::constructor;
+
+    void Buffer::Initialize(Handle<Object> target) {
+        HandleScope scope;
+        constructor = Persistent<FunctionTemplate>::New(FunctionTemplate::New(Buffer::New));
+        constructor->InstanceTemplate()->SetInternalFieldCount(1);
+        constructor->SetClassName(String::NewSymbol("Buffer"));
+        NODE_SET_PROTOTYPE_METHOD(constructor, "dump", dump);
+        target->Set(String::NewSymbol("Buffer"), constructor->GetFunction());
+    }
+
+    Buffer::Buffer(reader_ptr reader) :
+        ObjectWrap(),
+        buf(reader.get()->read()) {
+    }
+
+    Buffer::~Buffer() {
+    }
+
+    Handle<Value> Buffer::New(const Arguments& args) {
+        HandleScope scope;
+        if (args[0]->IsExternal()) {
+            Local<External> ext = Local<External>::Cast(args[0]);
+            void* ptr = ext->Value();
+            Buffer* b =  static_cast<Buffer*>(ptr);
+            b->Wrap(args.This());
+            return args.This();
+        } else {
+            return ThrowException(Exception::TypeError(String::New("osmium.Buffer cannot be created in Javascript")));
+        }
+        return Undefined();
+    }
+
+
+    Handle<Value> Buffer::dump(const Arguments& args) {
+        HandleScope scope;
+        Buffer* b = node::ObjectWrap::Unwrap<Buffer>(args.This());
+        std::ostringstream ss;
+        osmium::osm::Dump dump(ss);
+        osmium::apply(b->buf, dump);
+        Local<String> obj = String::New(ss.str().c_str());
+        return scope.Close(obj);
+    }
+
+} // namespace node_osmium
+
diff --git a/src/file.hpp b/src/file.hpp
new file mode 100644
index 0000000..b2b10eb
--- /dev/null
+++ b/src/file.hpp
@@ -0,0 +1,102 @@
+
+#include <memory>
+#include <string>
+
+// v8
+#include <v8.h>
+
+// node
+#include <node.h>
+#include <node_version.h>
+#include <node_object_wrap.h>
+
+// osmium
+#include <osmium/io/file.hpp>
+
+using namespace v8;
+
+namespace node_osmium {
+
+    typedef std::shared_ptr<osmium::io::File> file_ptr;
+
+    class File : public node::ObjectWrap {
+
+    public:
+
+        static Persistent<FunctionTemplate> constructor;
+        static void Initialize(Handle<Object> target);
+        static Handle<Value> New(Arguments const& args);
+
+        File(const std::string& filename = "", const std::string& format = "");
+
+        void _ref() {
+            Ref();
+        }
+
+        void _unref() {
+            Unref();
+        }
+
+        file_ptr get() {
+            return this_;
+        }
+
+    private:
+
+        ~File() {
+        }
+
+        file_ptr this_;
+
+    };
+
+    Persistent<FunctionTemplate> File::constructor;
+
+    void File::Initialize(Handle<Object> target) {
+        HandleScope scope;
+        constructor = Persistent<FunctionTemplate>::New(FunctionTemplate::New(File::New));
+        constructor->InstanceTemplate()->SetInternalFieldCount(1);
+        constructor->SetClassName(String::NewSymbol("File"));
+        target->Set(String::NewSymbol("File"), constructor->GetFunction());
+    }
+
+    File::File(const std::string& filename, const std::string& format) :
+        ObjectWrap(),
+        this_(std::make_shared<osmium::io::File>(filename, format)) {
+    }
+
+    Handle<Value> File::New(Arguments const& args) {
+        HandleScope scope;
+        if (!args.IsConstructCall()) {
+            return ThrowException(Exception::Error(String::New("Cannot call constructor as function, you need to use 'new' keyword")));
+        }
+        try {
+            if (args.Length() > 2) {
+                return ThrowException(Exception::TypeError(String::New("File is constructed with a maximum of two arguments")));
+            }
+
+            std::string filename;
+            std::string format;
+            if (args.Length() > 0) {
+                if (!args[0]->IsString()) {
+                    return ThrowException(Exception::TypeError(String::New("first argument to File constructor must be a string")));
+                }
+                filename = *String::Utf8Value(args[0]);
+            }
+            if (args.Length() > 1) {
+                if (!args[1]->IsString()) {
+                    return ThrowException(Exception::TypeError(String::New("second argument to File constructor must be a string")));
+                }
+                format = *String::Utf8Value(args[1]);
+            }
+            File* q = new File(filename, format);
+            q->Wrap(args.This());
+            return args.This();
+        } catch (std::exception const& ex) {
+            return ThrowException(Exception::TypeError(String::New(ex.what())));
+        }
+        return Undefined();
+    }
+
+} // namespace node_osmium
+
diff --git a/src/handler.hpp b/src/handler.hpp
new file mode 100644
index 0000000..d997804
--- /dev/null
+++ b/src/handler.hpp
@@ -0,0 +1,320 @@
+// c++11
+#include <memory>
+#include <iostream>
+
+// v8
+#include <v8.h>
+
+// node
+#include <node.h>
+#include <node_version.h>
+#include <node_object_wrap.h>
+#include <node_buffer.h>
+
+// osmium
+#include <osmium/handler.hpp>
+#include <osmium/osm.hpp>
+#include <osmium/geom/wkb.hpp>
+#include <osmium/geom/wkt.hpp>
+
+namespace node_osmium {
+
+    using namespace v8;
+
+    class JSHandler : public node::ObjectWrap, public osmium::handler::Handler {
+
+    public:
+
+        static Persistent<FunctionTemplate> constructor;
+        static void Initialize(Handle<Object> target);
+        static Handle<Value> New(Arguments const& args);
+        static Handle<Value> on(Arguments const& args);
+        static Handle<Value> options(Arguments const& args);
+        JSHandler();
+
+        void _ref() {
+            Ref();
+        }
+
+        void _unref() {
+            Unref();
+        }
+
+        void node(const osmium::Node& node) {
+            HandleScope scope;
+            if (!node_cb.IsEmpty() && (!node_callback_for_tagged_only || !node.tags().empty())) {
+                const int argc = 1;
+                Local<Object> obj = Object::New();
+                obj->Set(String::NewSymbol("id"), Number::New(node.id()));
+                obj->Set(String::NewSymbol("version"), Number::New(node.version()));
+                obj->Set(String::NewSymbol("visible"), Boolean::New(node.visible()));
+                obj->Set(String::NewSymbol("changeset"), Number::New(node.changeset()));
+                obj->Set(String::NewSymbol("timestamp"), Number::New(node.timestamp()));
+                std::string iso { node.timestamp().to_iso() };
+                obj->Set(String::NewSymbol("timestamp_iso"), String::New(iso.c_str()));
+                obj->Set(String::NewSymbol("uid"), Number::New(node.uid()));
+                obj->Set(String::NewSymbol("user"), String::New(node.user()));
+                obj->Set(String::NewSymbol("lon"), Number::New(node.lon()));
+                obj->Set(String::NewSymbol("lat"), Number::New(node.lat()));
+
+                {
+                    std::string wkb { wkb_factory.create_point(node) };
+#if NODE_VERSION_AT_LEAST(0, 10, 0)
+                    obj->Set(String::NewSymbol("wkb"), node::Buffer::New(wkb.data(), wkb.size())->handle_);
+#else
+                    obj->Set(String::NewSymbol("wkb"), node::Buffer::New(const_cast<char*>(wkb.data()), wkb.size())->handle_);
+#endif
+                }
+
+                {
+                    std::string wkt { wkt_factory.create_point(node) };
+                    obj->Set(String::NewSymbol("wkt"), String::New(wkt.c_str()));
+                }
+
+                Local<Object> tags = Object::New();
+                for (auto& tag : node.tags()) {
+                    tags->Set(String::NewSymbol(tag.key()), String::New(tag.value()));
+                }
+                obj->Set(String::NewSymbol("tags"), tags);
+
+                Local<Value> argv[argc] = { obj };
+
+                TryCatch trycatch;
+                Handle<Value> v = node_cb->Call(Context::GetCurrent()->Global(), argc, argv);
+                if (v.IsEmpty()) {
+                    Handle<Value> exception = trycatch.Exception();
+                    String::AsciiValue exception_str(exception);
+                    printf("Exception: %s\n", *exception_str);
+                    exit(1);
+                }
+            }
+        }
+
+        void way(const osmium::Way& way) {
+            HandleScope scope;
+            if (!way_cb.IsEmpty()) {
+                const int argc = 1;
+                Local<Object> obj = Object::New();
+                obj->Set(String::NewSymbol("id"), Number::New(way.id()));
+                obj->Set(String::NewSymbol("version"), Number::New(way.version()));
+                obj->Set(String::NewSymbol("visible"), Boolean::New(way.visible()));
+                obj->Set(String::NewSymbol("changeset"), Number::New(way.changeset()));
+                obj->Set(String::NewSymbol("timestamp"), Number::New(way.timestamp()));
+                std::string iso { way.timestamp().to_iso() };
+                obj->Set(String::NewSymbol("timestamp_iso"), String::New(iso.c_str()));
+                obj->Set(String::NewSymbol("uid"), Number::New(way.uid()));
+                obj->Set(String::NewSymbol("user"), String::New(way.user()));
+
+                try {
+                    std::string wkb { wkb_factory.create_linestring(way) };
+#if NODE_VERSION_AT_LEAST(0, 10, 0)
+                    obj->Set(String::NewSymbol("wkb"), node::Buffer::New(wkb.data(), wkb.size())->handle_);
+#else
+                    obj->Set(String::NewSymbol("wkb"), node::Buffer::New(const_cast<char*>(wkb.data()), wkb.size())->handle_);
+#endif
+                } catch (osmium::geom::geometry_error&) {
+                    obj->Set(String::NewSymbol("wkb"), Undefined());
+                }
+
+                try {
+                    std::string wkt { wkt_factory.create_linestring(way) };
+                    obj->Set(String::NewSymbol("wkt"), String::New(wkt.c_str()));
+                } catch (osmium::geom::geometry_error&) {
+                    obj->Set(String::NewSymbol("wkt"), Undefined());
+                }
+
+                Local<Object> tags = Object::New();
+                for (auto& tag : way.tags()) {
+                    tags->Set(String::NewSymbol(tag.key()), String::New(tag.value()));
+                }
+                obj->Set(String::NewSymbol("tags"), tags);
+
+                Local<Array> nodes = Array::New(way.nodes().size());
+                int i = 0;
+                for (auto& node : way.nodes()) {
+                    nodes->Set(i, Number::New(node.ref()));
+                    ++i;
+                }
+                obj->Set(String::NewSymbol("nodes"), nodes);
+
+                Local<Value> argv[argc] = { obj };
+
+                TryCatch trycatch;
+                Handle<Value> v = way_cb->Call(Context::GetCurrent()->Global(), argc, argv);
+                if (v.IsEmpty()) {
+                    Handle<Value> exception = trycatch.Exception();
+                    String::AsciiValue exception_str(exception);
+                    printf("Exception: %s\n", *exception_str);
+                    exit(1);
+                }
+            }
+        }
+
+        void relation(const osmium::Relation& relation) {
+            HandleScope scope;
+            if (!relation_cb.IsEmpty()) {
+                const int argc = 1;
+                Local<Object> obj = Object::New();
+                obj->Set(String::NewSymbol("id"), Number::New(relation.id()));
+                obj->Set(String::NewSymbol("version"), Number::New(relation.version()));
+                obj->Set(String::NewSymbol("visible"), Boolean::New(relation.visible()));
+                obj->Set(String::NewSymbol("changeset"), Number::New(relation.changeset()));
+                obj->Set(String::NewSymbol("timestamp"), Number::New(relation.timestamp()));
+                std::string iso { relation.timestamp().to_iso() };
+                obj->Set(String::NewSymbol("timestamp_iso"), String::New(iso.c_str()));
+                obj->Set(String::NewSymbol("uid"), Number::New(relation.uid()));
+                obj->Set(String::NewSymbol("user"), String::New(relation.user()));
+
+                Local<Object> tags = Object::New();
+                for (auto& tag : relation.tags()) {
+                    tags->Set(String::NewSymbol(tag.key()), String::New(tag.value()));
+                }
+                obj->Set(String::NewSymbol("tags"), tags);
+
+                Local<Array> members = Array::New();
+                int i = 0;
+                char typec[2] = " ";
+                for (auto& member : relation.members()) {
+                    Local<Object> jsmember = Object::New();
+                    typec[0] = osmium::item_type_to_char(member.type());
+                    jsmember->Set(String::NewSymbol("type"), String::New(typec));
+                    jsmember->Set(String::NewSymbol("ref"), Number::New(member.ref()));
+                    jsmember->Set(String::NewSymbol("role"), String::New(member.role()));
+                    members->Set(i, jsmember);
+                    ++i;
+                }
+                obj->Set(String::NewSymbol("members"), members);
+
+                Local<Value> argv[argc] = { obj };
+
+                TryCatch trycatch;
+                Handle<Value> v = relation_cb->Call(Context::GetCurrent()->Global(), argc, argv);
+                if (v.IsEmpty()) {
+                    Handle<Value> exception = trycatch.Exception();
+                    String::AsciiValue exception_str(exception);
+                    printf("Exception: %s\n", *exception_str);
+                    exit(1);
+                }
+            }
+        }
+
+        void done() {
+            if (!done_cb.IsEmpty()) {
+                Local<Value> argv[0] = { };
+                done_cb->Call(Context::GetCurrent()->Global(), 0, argv);
+            }
+        }
+
+        bool node_callback_for_tagged_only;
+        Persistent<Function> node_cb;
+        Persistent<Function> way_cb;
+        Persistent<Function> relation_cb;
+        Persistent<Function> done_cb;
+
+    private:
+
+        ~JSHandler();
+        osmium::geom::WKBFactory wkb_factory;
+        osmium::geom::WKTFactory wkt_factory;
+    };
+
+    Persistent<FunctionTemplate> JSHandler::constructor;
+
+    void JSHandler::Initialize(Handle<Object> target) {
+        HandleScope scope;
+        constructor = Persistent<FunctionTemplate>::New(FunctionTemplate::New(JSHandler::New));
+        constructor->InstanceTemplate()->SetInternalFieldCount(1);
+        constructor->SetClassName(String::NewSymbol("Handler"));
+        NODE_SET_PROTOTYPE_METHOD(constructor, "on", on);
+        NODE_SET_PROTOTYPE_METHOD(constructor, "options", options);
+        target->Set(String::NewSymbol("Handler"),constructor->GetFunction());
+    }
+
+    JSHandler::JSHandler() :
+        ObjectWrap(),
+        node_callback_for_tagged_only(false),
+        done_cb() {
+        done_cb.Clear();
+    }
+
+    JSHandler::~JSHandler() {
+        if (!done_cb.IsEmpty()) {
+            done_cb.Dispose();
+        }
+        if (!node_cb.IsEmpty()) {
+            node_cb.Dispose();
+        }
+        if (!way_cb.IsEmpty()) {
+            way_cb.Dispose();
+        }
+        if (!relation_cb.IsEmpty()) {
+            relation_cb.Dispose();
+        }
+    }
+
+    Handle<Value> JSHandler::New(const Arguments& args) {
+        HandleScope scope;
+        if (args[0]->IsExternal()) {
+            Local<External> ext = Local<External>::Cast(args[0]);
+            void* ptr = ext->Value();
+            JSHandler* b =  static_cast<JSHandler*>(ptr);
+            b->Wrap(args.This());
+            return args.This();
+        } else {
+            JSHandler* h = new JSHandler();
+            h->Wrap(args.This());
+            return args.This();
+        }
+        return Undefined();
+    }
+
+    Handle<Value> JSHandler::options(const Arguments& args) {
+        if (args.Length() == 1) {
+            if (args[0]->IsObject()) {
+                Local<Value> tagged_nodes_only = args[0]->ToObject()->Get(String::NewSymbol("tagged_nodes_only"));
+                if (tagged_nodes_only->IsBoolean()) {
+                    JSHandler* handler = node::ObjectWrap::Unwrap<JSHandler>(args.This());
+                    handler->node_callback_for_tagged_only = tagged_nodes_only->BooleanValue();
+                }
+            }
+        }
+        return Undefined();
+    }
+
+    Handle<Value> JSHandler::on(const Arguments& args) {
+        HandleScope scope;
+        if (args.Length() != 2 || !args[0]->IsString() || !args[1]->IsFunction()) {
+            return ThrowException(Exception::TypeError(String::New("please provide an event name and callback function")));
+        }
+        Local<String> callback_name = args[0]->ToString();
+        Local<Function> callback = Local<Function>::Cast(args[1]);
+        if (callback->IsNull() || callback->IsUndefined()) {
+            return ThrowException(Exception::TypeError(String::New("please provide a valid callback function for second arg")));
+        }
+        JSHandler * handler = node::ObjectWrap::Unwrap<JSHandler>(args.This());
+        if (callback_name == String::NewSymbol("node")) {
+            if (!handler->node_cb.IsEmpty()) {
+                handler->node_cb.Dispose();
+            }
+            handler->node_cb = Persistent<Function>::New(callback);
+        } else if (callback_name == String::NewSymbol("way")) {
+            if (!handler->way_cb.IsEmpty()) {
+                handler->way_cb.Dispose();
+            }
+            handler->way_cb = Persistent<Function>::New(callback);
+        } else if (callback_name == String::NewSymbol("relation")) {
+            if (!handler->relation_cb.IsEmpty()) {
+                handler->relation_cb.Dispose();
+            }
+            handler->relation_cb = Persistent<Function>::New(callback);
+        } else if (callback_name == String::NewSymbol("done")) {
+            if (!handler->done_cb.IsEmpty()) {
+                handler->done_cb.Dispose();
+            }
+            handler->done_cb = Persistent<Function>::New(callback);
+        }
+        return scope.Close(Undefined());
+    }
+
+} // namespace node_osmium
+
diff --git a/src/node_osmium.cpp b/src/node_osmium.cpp
new file mode 100644
index 0000000..60a3119
--- /dev/null
+++ b/src/node_osmium.cpp
@@ -0,0 +1,28 @@
+// v8
+#include <v8.h>
+
+// node
+#include <node.h>
+
+// node-osmium
+#include "handler.hpp"
+#include "file.hpp"
+#include "reader.hpp"
+#include "buffer.hpp"
+
+namespace node_osmium {
+
+    extern "C" {
+        static void start(v8::Handle<v8::Object> target) {
+            v8::HandleScope scope;
+            node_osmium::JSHandler::Initialize(target);
+            node_osmium::Buffer::Initialize(target);
+            node_osmium::File::Initialize(target);
+            node_osmium::Reader::Initialize(target);
+        }
+    }
+
+} // namespace node_osmium
+
+NODE_MODULE(osmium, node_osmium::start)
+
diff --git a/src/reader.hpp b/src/reader.hpp
new file mode 100644
index 0000000..4d93d8b
--- /dev/null
+++ b/src/reader.hpp
@@ -0,0 +1,205 @@
+
+// c++11
+#include <memory>
+#include <sstream>
+
+// v8
+#include <v8.h>
+
+// node
+#include <node.h>
+#include <node_version.h>
+#include <node_object_wrap.h>
+
+// osmium
+#include <osmium/io/any_input.hpp> // bring in XML and PBF support
+#include <osmium/io/reader.hpp>
+#include <osmium/visitor.hpp>
+#include <osmium/handler/node_locations_for_ways.hpp>
+#include <osmium/index/map/dummy.hpp>
+#include <osmium/index/map/stl_map.hpp>
+#include <osmium/index/map/sparse_table.hpp>
+
+typedef osmium::index::map::Dummy<osmium::unsigned_object_id_type, osmium::Location> index_neg_type;
+typedef osmium::index::map::SparseTable<osmium::unsigned_object_id_type, osmium::Location> index_pos_type;
+typedef osmium::handler::NodeLocationsForWays<index_pos_type, index_neg_type> location_handler_type;
+
+using namespace v8;
+
+namespace node_osmium {
+
+    typedef std::shared_ptr<osmium::io::Reader> reader_ptr;
+
+    class Reader : public node::ObjectWrap {
+
+    public:
+
+        static Persistent<FunctionTemplate> constructor;
+        static void Initialize(Handle<Object> target);
+        static Handle<Value> New(Arguments const& args);
+        static Handle<Value> header(Arguments const& args);
+        static Handle<Value> apply(Arguments const& args);
+        static Handle<Value> close(Arguments const& args);
+        Reader(osmium::io::File& infile, osmium::osm_entity::flags entities);
+
+        void _ref() {
+            Ref();
+        }
+
+        void _unref() {
+            Unref();
+        }
+
+        reader_ptr get() {
+            return this_;
+        }
+
+    private:
+
+        ~Reader();
+        reader_ptr this_;
+        osmium::io::Header header_;
+    };
+
+    Persistent<FunctionTemplate> Reader::constructor;
+
+    void Reader::Initialize(Handle<Object> target) {
+        HandleScope scope;
+        constructor = Persistent<FunctionTemplate>::New(FunctionTemplate::New(Reader::New));
+        constructor->InstanceTemplate()->SetInternalFieldCount(1);
+        constructor->SetClassName(String::NewSymbol("Reader"));
+        NODE_SET_PROTOTYPE_METHOD(constructor, "header", header);
+        NODE_SET_PROTOTYPE_METHOD(constructor, "apply", apply);
+        NODE_SET_PROTOTYPE_METHOD(constructor, "close", close);
+        target->Set(String::NewSymbol("Reader"), constructor->GetFunction());
+    }
+
+    Reader::Reader(osmium::io::File& file, osmium::osm_entity::flags entities) :
+        ObjectWrap(),
+        this_(std::make_shared<osmium::io::Reader>(file, entities)),
+        header_(this_->header()) {
+    }
+
+    Reader::~Reader() { }
+
+    Handle<Value> Reader::New(const Arguments& args) {
+        HandleScope scope;
+        if (!args.IsConstructCall()) {
+            return ThrowException(Exception::Error(String::New("Cannot call constructor as function, you need to use 'new' keyword")));
+        }
+        if (args.Length() < 1 || args.Length() > 2) {
+            return ThrowException(Exception::TypeError(String::New("please provide a File object or string for the first argument and optional options Object when creating a Reader")));
+        }
+        try {
+            osmium::osm_entity::flags read_which_entities = osmium::osm_entity::flags::all;
+            if (args.Length() == 2) {
+                if (!args[1]->IsObject()) {
+                    return ThrowException(Exception::TypeError(String::New("Second argument to Reader constructor must be object")));
+                }
+                read_which_entities = osmium::osm_entity::flags::nothing;
+                Local<Object> options = args[1]->ToObject();
+
+                Local<Value> want_nodes = options->Get(String::NewSymbol("node"));
+                if (want_nodes->IsBoolean() && want_nodes->BooleanValue()) {
+                    read_which_entities |= osmium::osm_entity::flags::node;
+                }
+
+                Local<Value> want_ways = options->Get(String::NewSymbol("way"));
+                if (want_ways->IsBoolean() && want_ways->BooleanValue()) {
+                    read_which_entities |= osmium::osm_entity::flags::way;
+                }
+
+                Local<Value> want_relations = options->Get(String::NewSymbol("relation"));
+                if (want_relations->IsBoolean() && want_relations->BooleanValue()) {
+                    read_which_entities |= osmium::osm_entity::flags::relation;
+                }
+
+            }
+            if (args[0]->IsString()) {
+                osmium::io::File file(*String::Utf8Value(args[0]));
+                Reader* q = new Reader(file, read_which_entities);
+                q->Wrap(args.This());
+                return args.This();
+            } else if (args[0]->IsObject() && File::constructor->HasInstance(args[0]->ToObject())) {
+                Local<Object> file_obj = args[0]->ToObject();
+                File* file_wrap = node::ObjectWrap::Unwrap<File>(file_obj);
+                Reader* q = new Reader(*(file_wrap->get()), read_which_entities);
+                q->Wrap(args.This());
+                return args.This();
+            } else {
+                return ThrowException(Exception::TypeError(String::New("please provide a File object or string for the first argument when creating a Reader")));
+            }
+        } catch (std::exception const& ex) {
+            return ThrowException(Exception::TypeError(String::New(ex.what())));
+        }
+        return Undefined();
+    }
+
+    Handle<Value> Reader::header(const Arguments& args) {
+        HandleScope scope;
+        Local<Object> obj = Object::New();
+        Reader* reader = node::ObjectWrap::Unwrap<Reader>(args.This());
+        osmium::io::Header const& header = reader->header_;
+        obj->Set(String::NewSymbol("generator"), String::New(header.get("generator").c_str()));
+        osmium::Box const& bounds = header.box();
+        Local<Array> arr = Array::New(4);
+        arr->Set(0,Number::New(bounds.bottom_left().lon()));
+        arr->Set(1,Number::New(bounds.bottom_left().lat()));
+        arr->Set(2,Number::New(bounds.top_right().lon()));
+        arr->Set(3,Number::New(bounds.top_right().lat()));
+        obj->Set(String::NewSymbol("bounds"),arr);
+        return scope.Close(obj);
+    }
+
+    Handle<Value> Reader::apply(const Arguments& args) {
+        HandleScope scope;
+
+        if (args.Length() != 1 && args.Length() != 2) {
+            return ThrowException(Exception::TypeError(String::New("please provide a single handler object")));
+        }
+        if (!args[0]->IsObject()) {
+            return ThrowException(Exception::TypeError(String::New("please provide a single handler object")));
+        }
+        Local<Object> obj = args[0]->ToObject();
+        if (obj->IsNull() || obj->IsUndefined() || !JSHandler::constructor->HasInstance(obj)) {
+            return ThrowException(Exception::TypeError(String::New("please provide a valid handler object")));
+        }
+
+        bool with_location_handler = false;
+
+        if (args.Length() == 2) {
+            if (!args[1]->IsObject()) {
+                return ThrowException(Exception::TypeError(String::New("second argument must be 'option' object")));
+            }
+            Local<Value> wlh = args[1]->ToObject()->Get(String::NewSymbol("with_location_handler"));
+            if (wlh->BooleanValue()) {
+                with_location_handler = true;
+            }
+        }
+
+        JSHandler* handler = node::ObjectWrap::Unwrap<JSHandler>(obj);
+        Reader* reader = node::ObjectWrap::Unwrap<Reader>(args.This());
+        reader_ptr r_ptr = reader->get();
+
+        if (with_location_handler) {
+            index_pos_type index_pos;
+            index_neg_type index_neg;
+            location_handler_type location_handler(index_pos, index_neg);
+            osmium::apply(*r_ptr, location_handler, *handler);
+        } else {
+            osmium::apply(*r_ptr, *handler);
+        }
+
+        return Undefined();
+    }
+
+    Handle<Value> Reader::close(const Arguments& args) {
+        HandleScope scope;
+        Reader* reader = node::ObjectWrap::Unwrap<Reader>(args.This());
+        reader_ptr r_ptr = reader->get();
+        r_ptr->close();
+        return Undefined();
+    }
+
+} // namespace node_osmium
+
diff --git a/test/data/winthrop.osm b/test/data/winthrop.osm
new file mode 100644
index 0000000..11b47c3
--- /dev/null
+++ b/test/data/winthrop.osm
@@ -0,0 +1,4494 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<osm version="0.6" generator="CGImap 0.2.0" copyright="OpenStreetMap and contributors" attribution="http://www.openstreetmap.org/copyright" license="http://opendatacommons.org/licenses/odbl/1-0/">
+ <bounds minlat="48.4636000" minlon="-120.2024000" maxlat="48.4869000" maxlon="-120.1569000"/>
+ <node id="50031066" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:10:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4655800" lon="-120.1891610"/>
+ <node id="50031085" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:10:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4684630" lon="-120.1929190"/>
+ <node id="50031094" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:10:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4713180" lon="-120.1919040"/>
+ <node id="50031062" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:05:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4674790" lon="-120.1922860"/>
+ <node id="50031064" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:05:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4671280" lon="-120.1913160"/>
+ <node id="50031071" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:05:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4649350" lon="-120.1875600"/>
+ <node id="50031088" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:05:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4690590" lon="-120.1929430"/>
+ <node id="50034092" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:11:18Z" user="woodpeck_fixbot" uid="147510" lat="48.4867970" lon="-120.1851850"/>
+ <node id="50034094" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:06:37Z" user="woodpeck_fixbot" uid="147510" lat="48.4868950" lon="-120.1878830"/>
+ <node id="50041867" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:12:17Z" user="woodpeck_fixbot" uid="147510" lat="48.4766900" lon="-120.1889680"/>
+ <node id="50041874" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:12:17Z" user="woodpeck_fixbot" uid="147510" lat="48.4768730" lon="-120.1899640"/>
+ <node id="50041866" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:08:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4770330" lon="-120.1885560"/>
+ <node id="50041870" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:08:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4766210" lon="-120.1892430"/>
+ <node id="50041876" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:08:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4774210" lon="-120.1901010"/>
+ <node id="50053585" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:14:03Z" user="woodpeck_fixbot" uid="147510" lat="48.4642090" lon="-120.1636940"/>
+ <node id="50053590" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:14:03Z" user="woodpeck_fixbot" uid="147510" lat="48.4641570" lon="-120.1631850"/>
+ <node id="50053597" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:14:03Z" user="woodpeck_fixbot" uid="147510" lat="48.4653360" lon="-120.1643390"/>
+ <node id="50053583" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:11:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4640710" lon="-120.1640800"/>
+ <node id="50053588" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:11:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4642220" lon="-120.1634390"/>
+ <node id="50053592" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:11:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4640930" lon="-120.1630680"/>
+ <node id="50053759" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:11:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4647290" lon="-120.1631150"/>
+ <node id="50082839" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:19:25Z" user="woodpeck_fixbot" uid="147510" lat="48.4801160" lon="-120.1895170"/>
+ <node id="50082845" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:19:25Z" user="woodpeck_fixbot" uid="147510" lat="48.4814400" lon="-120.1880060"/>
+ <node id="50082849" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:19:25Z" user="woodpeck_fixbot" uid="147510" lat="48.4817280" lon="-120.1867890"/>
+ <node id="50082857" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:19:25Z" user="woodpeck_fixbot" uid="147510" lat="48.4833130" lon="-120.1852230"/>
+ <node id="50082837" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:15:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4797050" lon="-120.1899640"/>
+ <node id="50082842" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:15:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4813720" lon="-120.1895170"/>
+ <node id="50082847" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:15:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4815090" lon="-120.1872840"/>
+ <node id="50082851" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:15:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4822850" lon="-120.1855320"/>
+ <node id="50082855" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:15:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4828330" lon="-120.1850860"/>
+ <node id="50091304" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4864190" lon="-120.1874900"/>
+ <node id="50091301" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4866710" lon="-120.1878680"/>
+ <node id="50091307" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4859910" lon="-120.1871300"/>
+ <node id="50091310" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4857320" lon="-120.1867090"/>
+ <node id="50091316" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4855970" lon="-120.1859100"/>
+ <node id="50091313" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4856880" lon="-120.1865970"/>
+ <node id="50091318" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4856880" lon="-120.1855320"/>
+ <node id="50091411" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4867030" lon="-120.1879770"/>
+ <node id="50091417" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4854350" lon="-120.1870130"/>
+ <node id="50091413" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:07Z" user="woodpeck_fixbot" uid="147510" lat="48.4856990" lon="-120.1878550"/>
+ <node id="50091418" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:07Z" user="woodpeck_fixbot" uid="147510" lat="48.4857190" lon="-120.1867680"/>
+ <node id="50091448" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4714130" lon="-120.1791960"/>
+ <node id="50100757" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:23:22Z" user="woodpeck_fixbot" uid="147510" lat="48.4764840" lon="-120.1908570"/>
+ <node id="50100761" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:23:23Z" user="woodpeck_fixbot" uid="147510" lat="48.4775350" lon="-120.1906510"/>
+ <node id="50100759" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:57:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4768270" lon="-120.1906510"/>
+ <node id="50122894" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:28:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4808530" lon="-120.1795830"/>
+ <node id="50122898" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:28:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4815260" lon="-120.1800640"/>
+ <node id="50122900" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:28:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4817530" lon="-120.1800320"/>
+ <node id="50122895" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:23:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4810740" lon="-120.1799120"/>
+ <node id="50122899" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:23:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4816070" lon="-120.1801240"/>
+ <node id="50122905" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:23:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4818370" lon="-120.1790650"/>
+ <node id="50123930" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:23:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4783520" lon="-120.1626720"/>
+ <node id="50131087" visible="true" version="3" changeset="3296733" timestamp="2009-12-05T17:25:55Z" user="woodpeck_fixbot" uid="147510" lat="48.4708067" lon="-120.1977822"/>
+ <node id="50131090" visible="true" version="3" changeset="3296733" timestamp="2009-12-05T17:25:55Z" user="woodpeck_fixbot" uid="147510" lat="48.4699531" lon="-120.1988980"/>
+ <node id="50132203" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4867338" lon="-120.1920175"/>
+ <node id="50133979" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:30:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4667760" lon="-120.2018740"/>
+ <node id="50137292" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:31:41Z" user="woodpeck_fixbot" uid="147510" lat="48.4725910" lon="-120.1883740"/>
+ <node id="50137298" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:31:41Z" user="woodpeck_fixbot" uid="147510" lat="48.4725730" lon="-120.1878120"/>
+ <node id="50137307" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:31:41Z" user="woodpeck_fixbot" uid="147510" lat="48.4730840" lon="-120.1875790"/>
+ <node id="50137310" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:31:42Z" user="woodpeck_fixbot" uid="147510" lat="48.4732440" lon="-120.1880210"/>
+ <node id="50137315" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:31:42Z" user="woodpeck_fixbot" uid="147510" lat="48.4729460" lon="-120.1885120"/>
+ <node id="50137294" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:27:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4725610" lon="-120.1882360"/>
+ <node id="50137300" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:27:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4726290" lon="-120.1876250"/>
+ <node id="50137302" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:27:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4727160" lon="-120.1875180"/>
+ <node id="50137308" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:27:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4732020" lon="-120.1877410"/>
+ <node id="50137311" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:27:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4732180" lon="-120.1882890"/>
+ <node id="50137317" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:27:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4728120" lon="-120.1885190"/>
+ <node id="50137371" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:31:42Z" user="woodpeck_fixbot" uid="147510" lat="48.4727070" lon="-120.1884960"/>
+ <node id="50139117" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:28:21Z" user="woodpeck_fixbot" uid="147510" lat="48.4723270" lon="-120.1802790"/>
+ <node id="50150570" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:35:03Z" user="woodpeck_fixbot" uid="147510" lat="48.4799100" lon="-120.1922310"/>
+ <node id="50150571" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:32:06Z" user="woodpeck_fixbot" uid="147510" lat="48.4808470" lon="-120.1917160"/>
+ <node id="50155804" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:36:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4734250" lon="-120.1791220"/>
+ <node id="50155805" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:33:57Z" user="woodpeck_fixbot" uid="147510" lat="48.4731380" lon="-120.1783120"/>
+ <node id="50162538" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:36:32Z" user="woodpeck_fixbot" uid="147510" lat="48.4805950" lon="-120.2018160"/>
+ <node id="50162571" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:36:32Z" user="woodpeck_fixbot" uid="147510" lat="48.4783630" lon="-120.2014350"/>
+ <node id="50167029" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:58:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4713650" lon="-120.1833670"/>
+ <node id="50167033" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:58:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4718930" lon="-120.1842310"/>
+ <node id="50167041" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:58:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4721300" lon="-120.1864090"/>
+ <node id="50167030" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:39:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4717070" lon="-120.1837720"/>
+ <node id="50167039" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:39:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4720880" lon="-120.1855560"/>
+ <node id="50167738" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:58:43Z" user="woodpeck_fixbot" uid="147510" lat="48.4729050" lon="-120.1722510"/>
+ <node id="50168572" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:58:52Z" user="woodpeck_fixbot" uid="147510" lat="48.4694670" lon="-120.1765980"/>
+ <node id="50174990" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:42:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4860080" lon="-120.1852570"/>
+ <node id="50176011" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:41:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4815430" lon="-120.1956550"/>
+ <node id="50176016" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:41:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4813110" lon="-120.1958300"/>
+ <node id="50176018" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:41:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4813400" lon="-120.1962240"/>
+ <node id="50177295" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:41:24Z" user="woodpeck_fixbot" uid="147510" lat="48.4760510" lon="-120.1778790"/>
+ <node id="50177300" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:41:24Z" user="woodpeck_fixbot" uid="147510" lat="48.4755160" lon="-120.1779390"/>
+ <node id="50177304" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:41:25Z" user="woodpeck_fixbot" uid="147510" lat="48.4753470" lon="-120.1780360"/>
+ <node id="50184196" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:45:13Z" user="woodpeck_fixbot" uid="147510" lat="48.4813690" lon="-120.1946710"/>
+ <node id="50184199" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:45:13Z" user="woodpeck_fixbot" uid="147510" lat="48.4814270" lon="-120.1954580"/>
+ <node id="50184194" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:43:37Z" user="woodpeck_fixbot" uid="147510" lat="48.4813980" lon="-120.1939710"/>
+ <node id="50184197" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:43:37Z" user="woodpeck_fixbot" uid="147510" lat="48.4813550" lon="-120.1951960"/>
+ <node id="50212353" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4768447" lon="-120.1813770"/>
+ <node id="50212359" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4792020" lon="-120.1814939"/>
+ <node id="50216419" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:04:40Z" user="woodpeck_fixbot" uid="147510" lat="48.4833200" lon="-120.1784290"/>
+ <node id="50216423" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:04:40Z" user="woodpeck_fixbot" uid="147510" lat="48.4856650" lon="-120.1776300"/>
+ <node id="50220100" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:29Z" user="woodpeck_fixbot" uid="147510" lat="48.4695390" lon="-120.1712800"/>
+ <node id="50220102" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:29Z" user="woodpeck_fixbot" uid="147510" lat="48.4699280" lon="-120.1716240"/>
+ <node id="50220111" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4710470" lon="-120.1727920"/>
+ <node id="50220123" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4737200" lon="-120.1753670"/>
+ <node id="50220129" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4750220" lon="-120.1772210"/>
+ <node id="50220099" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:52:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4695170" lon="-120.1712170"/>
+ <node id="50220106" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:52:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4706590" lon="-120.1722430"/>
+ <node id="50220109" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:52:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4707500" lon="-120.1724140"/>
+ <node id="50220742" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4702645" lon="-120.1848441"/>
+ <node id="50220747" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4699436" lon="-120.1839456"/>
+ <node id="50220753" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4692259" lon="-120.1821507"/>
+ <node id="50222970" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4798110" lon="-120.1796227"/>
+ <node id="50224506" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:54:11Z" user="woodpeck_fixbot" uid="147510" lat="48.4780480" lon="-120.1789780"/>
+ <node id="50224545" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4706820" lon="-120.1770160"/>
+ <node id="50224552" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4726470" lon="-120.1783550"/>
+ <node id="50224544" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:54:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4695630" lon="-120.1766050"/>
+ <node id="50224549" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:54:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4720070" lon="-120.1781840"/>
+ <node id="50225704" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:54:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4774560" lon="-120.1622910"/>
+ <node id="50225670" visible="true" version="3" changeset="14298131" timestamp="2012-12-16T19:41:46Z" user="pnorman" uid="355617" lat="48.4862656" lon="-120.1758034"/>
+ <node id="50225695" visible="true" version="3" changeset="14298131" timestamp="2012-12-16T19:41:46Z" user="pnorman" uid="355617" lat="48.4843465" lon="-120.1688881"/>
+ <node id="50230397" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:00:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4712080" lon="-120.1840910"/>
+ <node id="50231704" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4723720" lon="-120.1718640"/>
+ <node id="50231953" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4716760" lon="-120.1819070"/>
+ <node id="50231956" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4709820" lon="-120.1819460"/>
+ <node id="50231963" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4700110" lon="-120.1814450"/>
+ <node id="50231954" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4712350" lon="-120.1819320"/>
+ <node id="50231960" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4702240" lon="-120.1817100"/>
+ <node id="50231965" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4699160" lon="-120.1810580"/>
+ <node id="50231971" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4705240" lon="-120.1801400"/>
+ <node id="50231973" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4707440" lon="-120.1804940"/>
+ <node id="50231979" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:56:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4706930" lon="-120.1818760"/>
+ <node id="50242135" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:04:13Z" user="woodpeck_fixbot" uid="147510" lat="48.4832470" lon="-120.1817020"/>
+ <node id="50242138" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:04:13Z" user="woodpeck_fixbot" uid="147510" lat="48.4841180" lon="-120.1828800"/>
+ <node id="50242133" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4831320" lon="-120.1815280"/>
+ <node id="50242137" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4838800" lon="-120.1826620"/>
+ <node id="50242142" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4860990" lon="-120.1828520"/>
+ <node id="50243382" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:04:35Z" user="woodpeck_fixbot" uid="147510" lat="48.4731730" lon="-120.1726260"/>
+ <node id="50243386" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:04:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4737190" lon="-120.1730660"/>
+ <node id="50243400" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:04:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4756910" lon="-120.1765740"/>
+ <node id="50243404" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:04:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4766300" lon="-120.1772170"/>
+ <node id="50243383" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:01:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4732170" lon="-120.1726880"/>
+ <node id="50243388" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:01:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4740620" lon="-120.1735120"/>
+ <node id="50243394" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:01:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4753180" lon="-120.1757780"/>
+ <node id="50243396" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:01:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4755240" lon="-120.1763620"/>
+ <node id="50243402" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:01:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4759820" lon="-120.1767650"/>
+ <node id="50243406" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:01:06Z" user="woodpeck_fixbot" uid="147510" lat="48.4771480" lon="-120.1775260"/>
+ <node id="50248667" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4775880" lon="-120.1989430"/>
+ <node id="50248669" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4764620" lon="-120.1985870"/>
+ <node id="50248679" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4768270" lon="-120.1957010"/>
+ <node id="50249279" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:22Z" user="woodpeck_fixbot" uid="147510" lat="48.4690370" lon="-120.1720110"/>
+ <node id="50249280" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:53Z" user="Wim L" uid="223681" lat="48.4695230" lon="-120.1724386"/>
+ <node id="50250222" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4649340" lon="-120.1948070"/>
+ <node id="50253605" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:06:08Z" user="woodpeck_fixbot" uid="147510" lat="48.4728300" lon="-120.1886250"/>
+ <node id="50253608" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:06:08Z" user="woodpeck_fixbot" uid="147510" lat="48.4735610" lon="-120.1891400"/>
+ <node id="50256158" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:06:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4694290" lon="-120.1713620"/>
+ <node id="50258456" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4698273" lon="-120.1854106"/>
+ <node id="50263163" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:13:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4692660" lon="-120.1736170"/>
+ <node id="50263168" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:13:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4686660" lon="-120.1724570"/>
+ <node id="50263165" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4691369" lon="-120.1732000"/>
+ <node id="50270422" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:09:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4745110" lon="-120.1727170"/>
+ <node id="50271285" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4782819" lon="-120.1898464"/>
+ <node id="50271287" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4790957" lon="-120.1920058"/>
+ <node id="50271295" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4799737" lon="-120.1926656"/>
+ <node id="50289078" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4863910" lon="-120.1851600"/>
+ <node id="50289819" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4642620" lon="-120.1642430"/>
+ <node id="50289825" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4670260" lon="-120.1668860"/>
+ <node id="50294916" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:11:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4702850" lon="-120.1708490"/>
+ <node id="50294918" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:25:25Z" user="woodpeck_fixbot" uid="147510" lat="48.4713440" lon="-120.1715540"/>
+ <node id="50298268" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:11:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4726480" lon="-120.1962500"/>
+ <node id="50298270" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:11:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4729220" lon="-120.1947380"/>
+ <node id="50298279" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:11:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4712860" lon="-120.1854580"/>
+ <node id="50298282" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:11:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4716980" lon="-120.1817990"/>
+ <node id="50298269" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:27:29Z" user="woodpeck_fixbot" uid="147510" lat="48.4728530" lon="-120.1957350"/>
+ <node id="50298271" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:27:29Z" user="woodpeck_fixbot" uid="147510" lat="48.4724190" lon="-120.1915100"/>
+ <node id="50298280" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:27:29Z" user="woodpeck_fixbot" uid="147510" lat="48.4712480" lon="-120.1839080"/>
+ <node id="50298267" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:04:51Z" user="woodpeck_fixbot" uid="147510" lat="48.4722140" lon="-120.1967320"/>
+ <node id="50303130" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:19:06Z" user="woodpeck_fixbot" uid="147510" lat="48.4790770" lon="-120.1790520"/>
+ <node id="50308615" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:33:27Z" user="woodpeck_fixbot" uid="147510" lat="48.4727840" lon="-120.1812060"/>
+ <node id="50308618" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4731720" lon="-120.1839190"/>
+ <node id="50311019" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4773110" lon="-120.1864350"/>
+ <node id="50311022" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4770550" lon="-120.1871130"/>
+ <node id="50311032" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4779400" lon="-120.1933840"/>
+ <node id="50311020" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:57Z" user="woodpeck_fixbot" uid="147510" lat="48.4771500" lon="-120.1868600"/>
+ <node id="50311026" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:57Z" user="woodpeck_fixbot" uid="147510" lat="48.4777060" lon="-120.1915950"/>
+ <node id="50311030" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:57Z" user="woodpeck_fixbot" uid="147510" lat="48.4779010" lon="-120.1931930"/>
+ <node id="50311035" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4781520" lon="-120.1944290"/>
+ <node id="50314572" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:36:07Z" user="woodpeck_fixbot" uid="147510" lat="48.4831880" lon="-120.1784730"/>
+ <node id="50317910" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:37:41Z" user="woodpeck_fixbot" uid="147510" lat="48.4710890" lon="-120.1808810"/>
+ <node id="50317914" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:22:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4710760" lon="-120.1814390"/>
+ <node id="50317919" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:22:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4708580" lon="-120.1804260"/>
+ <node id="50317927" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:22:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4711440" lon="-120.1795820"/>
+ <node id="50320792" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:39:11Z" user="woodpeck_fixbot" uid="147510" lat="48.4698010" lon="-120.1719830"/>
+ <node id="150952037" visible="true" version="2" changeset="196981" timestamp="2008-12-06T19:13:33Z" user="davidearl" uid="3582" lat="48.4779232" lon="-120.1861956">
+  <tag k="census:population" v="371;2006"/>
+  <tag k="ele" v="539"/>
+  <tag k="gnis:Class" v="Populated Place"/>
+  <tag k="gnis:County" v="Okanogan"/>
+  <tag k="gnis:County_num" v="047"/>
+  <tag k="gnis:id" v="1528259"/>
+  <tag k="gnis:ST_alpha" v="WA"/>
+  <tag k="gnis:ST_num" v="53"/>
+  <tag k="import_uuid" v="bb7269ee-502a-5391-8056-e3ce0e66489c"/>
+  <tag k="is_in" v="Okanogan,Washington,Wash.,WA,USA"/>
+  <tag k="name" v="Winthrop"/>
+  <tag k="place" v="village"/>
+  <tag k="population" v="371"/>
+ </node>
+ <node id="356546646" visible="true" version="1" changeset="747176" timestamp="2009-03-07T02:56:46Z" user="iandees" uid="4732" lat="48.4740343" lon="-120.1720283">
+  <tag k="amenity" v="grave_yard"/>
+  <tag k="ele" v="565"/>
+  <tag k="gnis:county_id" v="047"/>
+  <tag k="gnis:created" v="09/10/1979"/>
+  <tag k="gnis:feature_id" v="1526678"/>
+  <tag k="gnis:state_id" v="53"/>
+  <tag k="name" v="Sullivan Cemetery"/>
+ </node>
+ <node id="356547442" visible="true" version="1" changeset="747176" timestamp="2009-03-07T02:59:46Z" user="iandees" uid="4732" lat="48.4726454" lon="-120.1800842">
+  <tag k="amenity" v="school"/>
+  <tag k="ele" v="532"/>
+  <tag k="gnis:county_id" v="047"/>
+  <tag k="gnis:created" v="03/01/1993"/>
+  <tag k="gnis:feature_id" v="1530626"/>
+  <tag k="gnis:state_id" v="53"/>
+  <tag k="name" v="Methow Valley Intermediate School"/>
+ </node>
+ <node id="50031061" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:25:57Z" user="woodpeck_fixbot" uid="147510" lat="48.4675150" lon="-120.1923870"/>
+ <node id="50031068" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:25:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4653220" lon="-120.1883660"/>
+ <node id="50031091" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:25:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4698280" lon="-120.1928250"/>
+ <node id="50041872" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:27:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4766670" lon="-120.1895520"/>
+ <node id="50053586" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:28:24Z" user="woodpeck_fixbot" uid="147510" lat="48.4642220" lon="-120.1635760"/>
+ <node id="50053595" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:28:24Z" user="woodpeck_fixbot" uid="147510" lat="48.4649090" lon="-120.1638310"/>
+ <node id="50082834" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:31:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4795910" lon="-120.1921280"/>
+ <node id="50082843" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:31:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4815780" lon="-120.1892770"/>
+ <node id="50082853" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:31:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4824450" lon="-120.1852230"/>
+ <node id="50091308" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:32:20Z" user="woodpeck_fixbot" uid="147510" lat="48.4858480" lon="-120.1870090"/>
+ <node id="50091319" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:32:21Z" user="woodpeck_fixbot" uid="147510" lat="48.4857330" lon="-120.1854930"/>
+ <node id="50091415" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:32:21Z" user="woodpeck_fixbot" uid="147510" lat="48.4854350" lon="-120.1875180"/>
+ <node id="50100756" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:33:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4763020" lon="-120.1914750"/>
+ <node id="50116252" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:35:32Z" user="woodpeck_fixbot" uid="147510" lat="48.4848470" lon="-120.1828990"/>
+ <node id="50122897" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:36:09Z" user="woodpeck_fixbot" uid="147510" lat="48.4812760" lon="-120.1800550"/>
+ <node id="50122903" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:36:09Z" user="woodpeck_fixbot" uid="147510" lat="48.4818210" lon="-120.1798140"/>
+ <node id="50134615" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:37:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4726930" lon="-120.1812400"/>
+ <node id="50137296" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:38:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4725430" lon="-120.1880310"/>
+ <node id="50137305" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:38:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4729110" lon="-120.1874440"/>
+ <node id="50137313" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:38:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4730910" lon="-120.1884730"/>
+ <node id="50139116" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:38:24Z" user="woodpeck_fixbot" uid="147510" lat="48.4720300" lon="-120.1802100"/>
+ <node id="50167036" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:42:44Z" user="woodpeck_fixbot" uid="147510" lat="48.4720030" lon="-120.1847910"/>
+ <node id="50167737" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:42:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4728740" lon="-120.1722070"/>
+ <node id="50176019" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:44:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4815430" lon="-120.1962020"/>
+ <node id="50177298" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:44:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4756940" lon="-120.1779390"/>
+ <node id="50211027" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:49:27Z" user="woodpeck_fixbot" uid="147510" lat="48.4684080" lon="-120.1681260"/>
+ <node id="50216421" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:50:13Z" user="woodpeck_fixbot" uid="147510" lat="48.4849760" lon="-120.1778650"/>
+ <node id="50220098" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:51:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4688480" lon="-120.1693090"/>
+ <node id="50220105" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:51:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4705220" lon="-120.1722080"/>
+ <node id="50220112" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:51:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4712300" lon="-120.1728260"/>
+ <node id="50220738" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:51:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4712500" lon="-120.1848260"/>
+ <node id="50220749" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4694930" lon="-120.1836332"/>
+ <node id="50224547" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:51:37Z" user="woodpeck_fixbot" uid="147510" lat="48.4716650" lon="-120.1779780"/>
+ <node id="50231701" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:52:51Z" user="woodpeck_fixbot" uid="147510" lat="48.4719600" lon="-120.1720020"/>
+ <node id="50231958" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:52:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4704950" lon="-120.1819200"/>
+ <node id="50231969" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:52:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4701280" lon="-120.1802070"/>
+ <node id="50231977" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:52:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4707810" lon="-120.1815770"/>
+ <node id="50242139" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:54:34Z" user="woodpeck_fixbot" uid="147510" lat="48.4842720" lon="-120.1829210"/>
+ <node id="50243390" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:54:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4743590" lon="-120.1743710"/>
+ <node id="50243398" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:54:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4754810" lon="-120.1764340"/>
+ <node id="50243409" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:54:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4776000" lon="-120.1775930"/>
+ <node id="50248664" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:55:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4788780" lon="-120.1966260"/>
+ <node id="50248671" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:55:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4766670" lon="-120.1981400"/>
+ <node id="50249291" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:56:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4733320" lon="-120.1767410"/>
+ <node id="50253602" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:56:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4725110" lon="-120.1882910"/>
+ <node id="50264865" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:58:37Z" user="woodpeck_fixbot" uid="147510" lat="48.4705910" lon="-120.1750930"/>
+ <node id="50289823" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:03:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4665680" lon="-120.1665730"/>
+ <node id="50294921" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:04:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4724020" lon="-120.1735170"/>
+ <node id="50298281" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:04:51Z" user="woodpeck_fixbot" uid="147510" lat="48.4715280" lon="-120.1826140"/>
+ <node id="50303132" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:05:37Z" user="woodpeck_fixbot" uid="147510" lat="48.4785690" lon="-120.1790100"/>
+ <node id="50311018" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:03Z" user="woodpeck_fixbot" uid="147510" lat="48.4774950" lon="-120.1859470"/>
+ <node id="50311028" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:03Z" user="woodpeck_fixbot" uid="147510" lat="48.4777540" lon="-120.1919930"/>
+ <node id="50311038" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4784820" lon="-120.1954280"/>
+ <node id="50314570" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4825360" lon="-120.1786960"/>
+ <node id="50317909" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:08:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4709850" lon="-120.1809560"/>
+ <node id="50317920" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:08:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4708580" lon="-120.1803050"/>
+ <node id="50323233" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:09:27Z" user="woodpeck_fixbot" uid="147510" lat="48.4676440" lon="-120.1897030"/>
+ <node id="491337430" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:36Z" user="TIGERcnl" uid="120146" lat="48.4756210" lon="-120.1737400"/>
+ <node id="491337432" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4755120" lon="-120.1733360"/>
+ <node id="491337434" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4753750" lon="-120.1730720"/>
+ <node id="491337438" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4753460" lon="-120.1729600"/>
+ <node id="491337440" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4753250" lon="-120.1728740"/>
+ <node id="491337443" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4751720" lon="-120.1725440"/>
+ <node id="491337445" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4749520" lon="-120.1723140"/>
+ <node id="491337448" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4748250" lon="-120.1721050"/>
+ <node id="491337452" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4747770" lon="-120.1720250"/>
+ <node id="491337454" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4747720" lon="-120.1720200"/>
+ <node id="491337457" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4745490" lon="-120.1718190"/>
+ <node id="491337460" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4744750" lon="-120.1717530"/>
+ <node id="491337462" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4742310" lon="-120.1717760"/>
+ <node id="491337465" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4736500" lon="-120.1718340"/>
+ <node id="491337467" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4736390" lon="-120.1719830"/>
+ <node id="491337470" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4736220" lon="-120.1722280"/>
+ <node id="491337474" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4735250" lon="-120.1722310"/>
+ <node id="491337476" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4732350" lon="-120.1722390"/>
+ <node id="491337480" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4731390" lon="-120.1722430"/>
+ <node id="491337483" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4731480" lon="-120.1722950"/>
+ <node id="491337484" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4731750" lon="-120.1724510"/>
+ <node id="491337488" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4731850" lon="-120.1725040"/>
+ <node id="491337491" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:37Z" user="TIGERcnl" uid="120146" lat="48.4731360" lon="-120.1724680"/>
+ <node id="491337493" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4731270" lon="-120.1724570"/>
+ <node id="491337496" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4729860" lon="-120.1722870"/>
+ <node id="491337501" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4729390" lon="-120.1722310"/>
+ <node id="491337502" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4729210" lon="-120.1722090"/>
+ <node id="491337505" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4728870" lon="-120.1721680"/>
+ <node id="491337507" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4728670" lon="-120.1721470"/>
+ <node id="491337511" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4728490" lon="-120.1721280"/>
+ <node id="491337513" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4728530" lon="-120.1720660"/>
+ <node id="491337516" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4728670" lon="-120.1718820"/>
+ <node id="491337519" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4728720" lon="-120.1718210"/>
+ <node id="491337521" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4727740" lon="-120.1718150"/>
+ <node id="491337524" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4726410" lon="-120.1718090"/>
+ <node id="491337527" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4724830" lon="-120.1718140"/>
+ <node id="491337530" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4723860" lon="-120.1718180"/>
+ <node id="491337533" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4723510" lon="-120.1713040"/>
+ <node id="491337534" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4718910" lon="-120.1713230"/>
+ <node id="491337536" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4717040" lon="-120.1713310"/>
+ <node id="491337538" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4716910" lon="-120.1703790"/>
+ <node id="491337539" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4712530" lon="-120.1704040"/>
+ <node id="491334429" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:19Z" user="TIGERcnl" uid="120146" lat="48.4663830" lon="-120.1670510"/>
+ <node id="491334432" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4661760" lon="-120.1675220"/>
+ <node id="491334435" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4652530" lon="-120.1696280"/>
+ <node id="491334438" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4651320" lon="-120.1699060"/>
+ <node id="491334440" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4650540" lon="-120.1700720"/>
+ <node id="491334444" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4649940" lon="-120.1701990"/>
+ <node id="491334447" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4649350" lon="-120.1703260"/>
+ <node id="491334450" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4645100" lon="-120.1700350"/>
+ <node id="491334452" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4643820" lon="-120.1699640"/>
+ <node id="491334514" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4667310" lon="-120.1855720"/>
+ <node id="491334516" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4682880" lon="-120.1855940"/>
+ <node id="491334518" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4683220" lon="-120.1855940"/>
+ <node id="491334521" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4683800" lon="-120.1855950"/>
+ <node id="491334525" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4684240" lon="-120.1855820"/>
+ <node id="491334526" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4684580" lon="-120.1855730"/>
+ <node id="491334530" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4687560" lon="-120.1855710"/>
+ <node id="491334533" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4688880" lon="-120.1859770"/>
+ <node id="491334536" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4690340" lon="-120.1864240"/>
+ <node id="491334539" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4707350" lon="-120.1865670"/>
+ <node id="491334542" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4714590" lon="-120.1866280"/>
+ <node id="491334543" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4714450" lon="-120.1864870"/>
+ <node id="491334546" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4714050" lon="-120.1860640"/>
+ <node id="491334549" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4713920" lon="-120.1859230"/>
+ <node id="491334553" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4713580" lon="-120.1855270"/>
+ <node id="491334556" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4713520" lon="-120.1854550"/>
+ <node id="491334559" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712880" lon="-120.1848170"/>
+ <node id="491334561" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712540" lon="-120.1844240"/>
+ <node id="491334565" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712490" lon="-120.1843410"/>
+ <node id="491334568" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712430" lon="-120.1842000"/>
+ <node id="491334570" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712450" lon="-120.1839450"/>
+ <node id="491334573" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712490" lon="-120.1839080"/>
+ <node id="491334576" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712630" lon="-120.1837990"/>
+ <node id="491334578" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712690" lon="-120.1837630"/>
+ <node id="491334581" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712770" lon="-120.1836990"/>
+ <node id="491334585" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4712810" lon="-120.1836770"/>
+ <node id="491334587" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4713340" lon="-120.1834250"/>
+ <node id="491334589" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4713520" lon="-120.1833410"/>
+ <node id="491334592" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4713820" lon="-120.1831950"/>
+ <node id="491334594" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4714720" lon="-120.1827590"/>
+ <node id="491334597" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:22Z" user="TIGERcnl" uid="120146" lat="48.4715030" lon="-120.1826140"/>
+ <node id="491334601" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4717560" lon="-120.1827150"/>
+ <node id="491334603" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4719120" lon="-120.1827780"/>
+ <node id="491334606" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4720760" lon="-120.1822230"/>
+ <node id="491334609" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4721050" lon="-120.1821550"/>
+ <node id="491334611" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4722150" lon="-120.1819050"/>
+ <node id="491334615" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4723130" lon="-120.1817690"/>
+ <node id="491334618" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4726090" lon="-120.1813600"/>
+ <node id="491334621" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4727080" lon="-120.1812250"/>
+ <node id="491334623" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4729170" lon="-120.1809580"/>
+ <node id="491334627" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4735440" lon="-120.1801600"/>
+ <node id="491334630" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4737540" lon="-120.1798950"/>
+ <node id="491334631" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4738960" lon="-120.1797500"/>
+ <node id="491334634" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4743250" lon="-120.1793170"/>
+ <node id="491334637" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4743560" lon="-120.1792870"/>
+ <node id="491334639" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:23Z" user="TIGERcnl" uid="120146" lat="48.4744120" lon="-120.1792300"/>
+ <node id="491334660" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4744680" lon="-120.1791730"/>
+ <node id="491334663" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4745670" lon="-120.1793740"/>
+ <node id="491334665" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4748640" lon="-120.1799770"/>
+ <node id="491334667" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4749640" lon="-120.1801780"/>
+ <node id="491334668" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4751730" lon="-120.1807140"/>
+ <node id="491334670" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4753490" lon="-120.1813010"/>
+ <node id="491334673" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4754850" lon="-120.1817530"/>
+ <node id="491334675" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4763190" lon="-120.1832530"/>
+ <node id="491334678" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4765600" lon="-120.1839780"/>
+ <node id="491334681" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4766590" lon="-120.1845830"/>
+ <node id="491334684" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:24Z" user="TIGERcnl" uid="120146" lat="48.4767740" lon="-120.1852810"/>
+ <node id="491334688" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4769510" lon="-120.1857290"/>
+ <node id="491334689" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4770230" lon="-120.1856840"/>
+ <node id="491334692" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4770940" lon="-120.1856380"/>
+ <node id="491334695" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4771170" lon="-120.1856230"/>
+ <node id="491334698" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4773290" lon="-120.1854890"/>
+ <node id="491334702" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4774580" lon="-120.1858040"/>
+ <node id="491334704" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4775330" lon="-120.1859870"/>
+ <node id="491334707" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4775950" lon="-120.1862530"/>
+ <node id="491334708" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4776510" lon="-120.1864860"/>
+ <node id="491334711" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4779270" lon="-120.1865570"/>
+ <node id="491334714" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4778960" lon="-120.1868510"/>
+ <node id="491334718" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4778810" lon="-120.1869950"/>
+ <node id="491334720" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4778670" lon="-120.1871240"/>
+ <node id="491334723" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4780700" lon="-120.1871030"/>
+ <node id="491334725" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4782730" lon="-120.1870820"/>
+ <node id="491334727" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4784100" lon="-120.1870670"/>
+ <node id="491334729" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4800390" lon="-120.1868970"/>
+ <node id="491334732" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4805120" lon="-120.1868490"/>
+ <node id="491334734" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4805830" lon="-120.1868420"/>
+ <node id="491334736" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:25Z" user="TIGERcnl" uid="120146" lat="48.4806710" lon="-120.1868420"/>
+ <node id="491334738" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4807590" lon="-120.1868410"/>
+ <node id="491334740" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4808280" lon="-120.1868400"/>
+ <node id="491334742" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4815620" lon="-120.1868340"/>
+ <node id="491334744" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4818080" lon="-120.1868320"/>
+ <node id="491334747" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4824170" lon="-120.1867840"/>
+ <node id="491334750" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4833550" lon="-120.1867110"/>
+ <node id="491334753" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4833310" lon="-120.1858150"/>
+ <node id="491334756" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4833150" lon="-120.1852040"/>
+ <node id="491334759" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4833090" lon="-120.1849660"/>
+ <node id="491334762" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832940" lon="-120.1842530"/>
+ <node id="491334765" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832890" lon="-120.1840160"/>
+ <node id="491334768" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832850" lon="-120.1838400"/>
+ <node id="491334771" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832730" lon="-120.1833140"/>
+ <node id="491334773" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832700" lon="-120.1831390"/>
+ <node id="491334776" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832690" lon="-120.1830410"/>
+ <node id="491334779" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832690" lon="-120.1829400"/>
+ <node id="491334782" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832680" lon="-120.1827960"/>
+ <node id="491334786" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832680" lon="-120.1827490"/>
+ <node id="491334788" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832680" lon="-120.1826520"/>
+ <node id="491334791" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:26Z" user="TIGERcnl" uid="120146" lat="48.4832660" lon="-120.1825430"/>
+ <node id="491334794" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4832640" lon="-120.1824330"/>
+ <node id="491334796" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4832630" lon="-120.1824080"/>
+ <node id="491334799" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4832500" lon="-120.1816770"/>
+ <node id="491334802" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4832460" lon="-120.1814340"/>
+ <node id="491334805" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4832130" lon="-120.1808240"/>
+ <node id="491334809" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4831140" lon="-120.1789970"/>
+ <node id="491334812" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4830810" lon="-120.1783880"/>
+ <node id="491334816" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4830810" lon="-120.1783770"/>
+ <node id="491334817" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4830810" lon="-120.1783440"/>
+ <node id="491334819" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4830810" lon="-120.1783340"/>
+ <node id="491334821" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4831070" lon="-120.1766950"/>
+ <node id="491334822" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4831220" lon="-120.1758300"/>
+ <node id="491334824" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4796660" lon="-120.1761810"/>
+ <node id="491334826" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4790910" lon="-120.1762180"/>
+ <node id="491334827" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4776940" lon="-120.1763090"/>
+ <node id="491334830" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4774570" lon="-120.1763340"/>
+ <node id="491334831" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4774140" lon="-120.1762780"/>
+ <node id="491334833" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4770410" lon="-120.1758250"/>
+ <node id="491334835" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4768230" lon="-120.1755390"/>
+ <node id="491334837" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4766520" lon="-120.1753140"/>
+ <node id="491334840" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:27Z" user="TIGERcnl" uid="120146" lat="48.4763340" lon="-120.1747370"/>
+ <node id="491334844" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:28Z" user="TIGERcnl" uid="120146" lat="48.4761260" lon="-120.1742420"/>
+ <node id="491334845" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:28Z" user="TIGERcnl" uid="120146" lat="48.4760050" lon="-120.1740690"/>
+ <node id="491334848" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:28Z" user="TIGERcnl" uid="120146" lat="48.4757690" lon="-120.1737810"/>
+ <node id="491334851" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:28Z" user="TIGERcnl" uid="120146" lat="48.4756920" lon="-120.1737560"/>
+ <node id="491337542" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4706930" lon="-120.1704370"/>
+ <node id="491337543" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4710280" lon="-120.1697260"/>
+ <node id="491337546" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:38Z" user="TIGERcnl" uid="120146" lat="48.4714440" lon="-120.1688450"/>
+ <node id="491337549" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4713390" lon="-120.1687870"/>
+ <node id="491337550" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4711530" lon="-120.1686300"/>
+ <node id="491337551" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4709780" lon="-120.1684410"/>
+ <node id="491337554" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4709440" lon="-120.1682900"/>
+ <node id="491337556" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4709390" lon="-120.1682680"/>
+ <node id="491337559" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4708020" lon="-120.1680950"/>
+ <node id="491337561" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4706710" lon="-120.1680120"/>
+ <node id="491337564" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4703960" lon="-120.1676830"/>
+ <node id="491337567" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4703250" lon="-120.1676580"/>
+ <node id="491337569" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4702210" lon="-120.1676580"/>
+ <node id="491337571" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4700680" lon="-120.1676910"/>
+ <node id="491337573" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4699250" lon="-120.1676670"/>
+ <node id="491337576" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4697280" lon="-120.1675760"/>
+ <node id="491337578" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4695300" lon="-120.1675430"/>
+ <node id="491337580" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4691250" lon="-120.1675430"/>
+ <node id="491337583" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4689660" lon="-120.1674610"/>
+ <node id="491337586" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4689550" lon="-120.1674500"/>
+ <node id="491337588" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4688510" lon="-120.1673460"/>
+ <node id="491337591" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4686200" lon="-120.1671970"/>
+ <node id="491337594" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:39Z" user="TIGERcnl" uid="120146" lat="48.4684670" lon="-120.1670080"/>
+ <node id="491337596" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684140" lon="-120.1669120"/>
+ <node id="491337599" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684120" lon="-120.1671540"/>
+ <node id="491337601" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684080" lon="-120.1678830"/>
+ <node id="491337604" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684070" lon="-120.1681260"/>
+ <node id="491337627" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684170" lon="-120.1683040"/>
+ <node id="491337630" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684500" lon="-120.1688380"/>
+ <node id="491337633" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684610" lon="-120.1690160"/>
+ <node id="491337636" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:40Z" user="TIGERcnl" uid="120146" lat="48.4684570" lon="-120.1690500"/>
+ <node id="491337637" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4684490" lon="-120.1691520"/>
+ <node id="491337640" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4684460" lon="-120.1691870"/>
+ <node id="491337644" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4683480" lon="-120.1689710"/>
+ <node id="491337648" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4680570" lon="-120.1683230"/>
+ <node id="491337650" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4680120" lon="-120.1682220"/>
+ <node id="491337653" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4680190" lon="-120.1680970"/>
+ <node id="491337655" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4680130" lon="-120.1679810"/>
+ <node id="491337659" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4679950" lon="-120.1676330"/>
+ <node id="491337662" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4679890" lon="-120.1675170"/>
+ <node id="491337663" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4678890" lon="-120.1674230"/>
+ <node id="491337666" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4677190" lon="-120.1673010"/>
+ <node id="491337670" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4671060" lon="-120.1668630"/>
+ <node id="491337672" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4668700" lon="-120.1667020"/>
+ <node id="491337675" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4665840" lon="-120.1665080"/>
+ <node id="491337678" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4665640" lon="-120.1665700"/>
+ <node id="491337680" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4665030" lon="-120.1667580"/>
+ <node id="491337683" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146" lat="48.4664840" lon="-120.1668210"/>
+ <node id="491337721" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4682490" lon="-120.1742700"/>
+ <node id="491337725" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4679810" lon="-120.1738990"/>
+ <node id="491337727" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4672790" lon="-120.1729270"/>
+ <node id="491337730" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4665610" lon="-120.1719550"/>
+ <node id="491337732" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4660840" lon="-120.1713100"/>
+ <node id="491337734" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4661120" lon="-120.1712680"/>
+ <node id="491337737" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4661990" lon="-120.1711430"/>
+ <node id="491337738" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4662290" lon="-120.1711020"/>
+ <node id="491337741" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4664110" lon="-120.1713380"/>
+ <node id="491337743" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4665930" lon="-120.1715730"/>
+ <node id="491337745" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4667610" lon="-120.1717910"/>
+ <node id="491337747" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4671550" lon="-120.1723020"/>
+ <node id="491337748" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4678210" lon="-120.1731650"/>
+ <node id="491337750" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4678520" lon="-120.1731140"/>
+ <node id="491337752" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4682730" lon="-120.1724090"/>
+ <node id="491337755" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4685020" lon="-120.1720290"/>
+ <node id="491337757" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4685030" lon="-120.1724570"/>
+ <node id="491337760" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4685000" lon="-120.1728690"/>
+ <node id="491337762" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4684920" lon="-120.1741050"/>
+ <node id="491337763" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4684920" lon="-120.1742410"/>
+ <node id="491337766" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4684910" lon="-120.1743800"/>
+ <node id="491337769" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146" lat="48.4684900" lon="-120.1745180"/>
+ <node id="491337777" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4685090" lon="-120.1822150"/>
+ <node id="491337781" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4684440" lon="-120.1831570"/>
+ <node id="491337782" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4682900" lon="-120.1828880"/>
+ <node id="491337785" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4677540" lon="-120.1819780"/>
+ <node id="491337788" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4673080" lon="-120.1812200"/>
+ <node id="491337791" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4667690" lon="-120.1803050"/>
+ <node id="491337793" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4667530" lon="-120.1802710"/>
+ <node id="491337794" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4665270" lon="-120.1798820"/>
+ <node id="491337796" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4665720" lon="-120.1798830"/>
+ <node id="491337798" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4674660" lon="-120.1799180"/>
+ <node id="491337800" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:44Z" user="TIGERcnl" uid="120146" lat="48.4674750" lon="-120.1792140"/>
+ <node id="491337811" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4674780" lon="-120.1789900"/>
+ <node id="491337812" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4677860" lon="-120.1789990"/>
+ <node id="491337813" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4677680" lon="-120.1788050"/>
+ <node id="491337815" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4677440" lon="-120.1786870"/>
+ <node id="491337816" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4675920" lon="-120.1779400"/>
+ <node id="491337817" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4677570" lon="-120.1778620"/>
+ <node id="491337818" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4680420" lon="-120.1777280"/>
+ <node id="491337819" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4679420" lon="-120.1775540"/>
+ <node id="491337820" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4677830" lon="-120.1772780"/>
+ <node id="491337822" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4676700" lon="-120.1770210"/>
+ <node id="491337823" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4675900" lon="-120.1768390"/>
+ <node id="491337824" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4677230" lon="-120.1768410"/>
+ <node id="491337825" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4681220" lon="-120.1768500"/>
+ <node id="491337827" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4682560" lon="-120.1768530"/>
+ <node id="491337829" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4685160" lon="-120.1767130"/>
+ <node id="491337831" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4685090" lon="-120.1768670"/>
+ <node id="491337833" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4684840" lon="-120.1775080"/>
+ <node id="491337835" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4684680" lon="-120.1782170"/>
+ <node id="491337838" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4684590" lon="-120.1786670"/>
+ <node id="491337840" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4684840" lon="-120.1791640"/>
+ <node id="491337842" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4685590" lon="-120.1806570"/>
+ <node id="491337844" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:45Z" user="TIGERcnl" uid="120146" lat="48.4685840" lon="-120.1811550"/>
+ <node id="491337850" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4779020" lon="-120.1926270"/>
+ <node id="491337852" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4779050" lon="-120.1926840"/>
+ <node id="491337854" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4779140" lon="-120.1928550"/>
+ <node id="491337856" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4779180" lon="-120.1929130"/>
+ <node id="491337858" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4779990" lon="-120.1934180"/>
+ <node id="491337860" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4780070" lon="-120.1934630"/>
+ <node id="491337862" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4783960" lon="-120.1949010"/>
+ <node id="491337863" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4785250" lon="-120.1953760"/>
+ <node id="491337865" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4785310" lon="-120.1953960"/>
+ <node id="491337868" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4795320" lon="-120.1956590"/>
+ <node id="491337870" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4804320" lon="-120.1958970"/>
+ <node id="491337872" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4803330" lon="-120.1937230"/>
+ <node id="491337874" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4802860" lon="-120.1926890"/>
+ <node id="491337875" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4800680" lon="-120.1928140"/>
+ <node id="491337877" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4796610" lon="-120.1930490"/>
+ <node id="491337881" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4795820" lon="-120.1927770"/>
+ <node id="491337882" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146" lat="48.4795130" lon="-120.1925360"/>
+ <node id="491337885" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4794700" lon="-120.1924380"/>
+ <node id="491337887" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4793910" lon="-120.1922540"/>
+ <node id="491337890" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4792810" lon="-120.1922120"/>
+ <node id="491337892" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4791820" lon="-120.1921750"/>
+ <node id="491337896" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4791410" lon="-120.1920780"/>
+ <node id="491337899" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4791040" lon="-120.1919680"/>
+ <node id="491337901" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4790420" lon="-120.1917420"/>
+ <node id="491337904" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4790110" lon="-120.1915940"/>
+ <node id="491337906" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4790010" lon="-120.1915410"/>
+ <node id="491337909" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4789370" lon="-120.1910170"/>
+ <node id="491337911" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4788720" lon="-120.1906770"/>
+ <node id="491337914" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4788460" lon="-120.1905590"/>
+ <node id="491337917" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4788130" lon="-120.1904470"/>
+ <node id="491337919" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4787930" lon="-120.1903940"/>
+ <node id="491337922" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4787200" lon="-120.1902520"/>
+ <node id="491337924" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4786620" lon="-120.1901670"/>
+ <node id="491337928" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4786000" lon="-120.1900920"/>
+ <node id="491337930" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4785180" lon="-120.1900170"/>
+ <node id="491337932" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4784300" lon="-120.1899560"/>
+ <node id="491337935" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4784120" lon="-120.1899470"/>
+ <node id="491337937" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4783380" lon="-120.1899130"/>
+ <node id="491337940" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4782250" lon="-120.1898850"/>
+ <node id="491337944" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:47Z" user="TIGERcnl" uid="120146" lat="48.4781100" lon="-120.1898770"/>
+ <node id="491337946" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4780060" lon="-120.1898860"/>
+ <node id="491337949" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4779030" lon="-120.1899090"/>
+ <node id="491337951" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4778250" lon="-120.1899380"/>
+ <node id="491337953" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4777060" lon="-120.1895700"/>
+ <node id="491337956" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4773500" lon="-120.1884670"/>
+ <node id="491337957" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4772320" lon="-120.1881000"/>
+ <node id="491337959" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4768610" lon="-120.1875520"/>
+ <node id="491337961" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4764970" lon="-120.1875610"/>
+ <node id="491337962" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4761020" lon="-120.1875710"/>
+ <node id="491337964" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4760770" lon="-120.1902510"/>
+ <node id="491337966" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4760680" lon="-120.1912770"/>
+ <node id="491337968" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4760540" lon="-120.1919640"/>
+ <node id="491337969" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4760530" lon="-120.1920500"/>
+ <node id="491337971" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4768750" lon="-120.1919810"/>
+ <node id="491337972" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:48Z" user="TIGERcnl" uid="120146" lat="48.4768870" lon="-120.1922560"/>
+ <node id="491337990" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4771030" lon="-120.1922250"/>
+ <node id="491337992" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4771040" lon="-120.1927610"/>
+ <node id="491337994" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4772240" lon="-120.1927400"/>
+ <node id="491338010" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4774770" lon="-120.1868820"/>
+ <node id="491338012" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4774320" lon="-120.1868310"/>
+ <node id="491338015" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4774260" lon="-120.1868190"/>
+ <node id="491338019" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4773170" lon="-120.1866040"/>
+ <node id="491338020" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4772810" lon="-120.1865330"/>
+ <node id="491338023" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4772510" lon="-120.1865970"/>
+ <node id="491338026" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4772340" lon="-120.1866350"/>
+ <node id="491338028" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4772080" lon="-120.1866910"/>
+ <node id="491338031" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146" lat="48.4771740" lon="-120.1867930"/>
+ <node id="491338039" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:50Z" user="TIGERcnl" uid="120146" lat="48.4771530" lon="-120.1868610"/>
+ <node id="491338042" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:50Z" user="TIGERcnl" uid="120146" lat="48.4772260" lon="-120.1869290"/>
+ <node id="491338045" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:50Z" user="TIGERcnl" uid="120146" lat="48.4773680" lon="-120.1870600"/>
+ <node id="491338048" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:50Z" user="TIGERcnl" uid="120146" lat="48.4774240" lon="-120.1869670"/>
+ <node id="491338050" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:50Z" user="TIGERcnl" uid="120146" lat="48.4774450" lon="-120.1869340"/>
+ <node id="50168573" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:40:09Z" user="woodpeck_fixbot" uid="147510" lat="48.4694370" lon="-120.1803920"/>
+ <node id="50176013" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:42:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4814010" lon="-120.1955420"/>
+ <node id="50176021" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:42:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4815870" lon="-120.1959180"/>
+ <node id="50177296" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:42:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4758730" lon="-120.1778490"/>
+ <node id="50177302" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:42:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4754370" lon="-120.1779690"/>
+ <node id="50220141" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4793160" lon="-120.1851200"/>
+ <node id="50220849" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:56:43Z" user="woodpeck_fixbot" uid="147510" lat="48.4782880" lon="-120.1818920"/>
+ <node id="50224508" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4780590" lon="-120.1788000"/>
+ <node id="50224535" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4796820" lon="-120.1861850"/>
+ <node id="50224542" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4686720" lon="-120.1765360"/>
+ <node id="50225706" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4766260" lon="-120.1617960"/>
+ <node id="50225671" visible="true" version="3" changeset="14298131" timestamp="2012-12-16T19:41:46Z" user="pnorman" uid="355617" lat="48.4848553" lon="-120.1751954"/>
+ <node id="50231967" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:00:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4699230" lon="-120.1805270"/>
+ <node id="50231974" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:00:40Z" user="woodpeck_fixbot" uid="147510" lat="48.4708320" lon="-120.1810250"/>
+ <node id="50248665" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:06:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4781800" lon="-120.1972930"/>
+ <node id="50248668" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:06:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4769320" lon="-120.1993310"/>
+ <node id="50248677" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:06:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4767810" lon="-120.1958730"/>
+ <node id="50248681" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:06:36Z" user="woodpeck_fixbot" uid="147510" lat="48.4780360" lon="-120.1938570"/>
+ <node id="50249277" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:06:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4690020" lon="-120.1719680"/>
+ <node id="50250221" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:07:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4645470" lon="-120.1942650"/>
+ <node id="50256162" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:09:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4687200" lon="-120.1725330"/>
+ <node id="50264866" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:13:52Z" user="woodpeck_fixbot" uid="147510" lat="48.4707280" lon="-120.1749900"/>
+ <node id="50289821" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:23:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4660210" lon="-120.1661990"/>
+ <node id="50317917" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:37:41Z" user="woodpeck_fixbot" uid="147510" lat="48.4708980" lon="-120.1806310"/>
+ <node id="50317921" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:37:41Z" user="woodpeck_fixbot" uid="147510" lat="48.4709150" lon="-120.1801000"/>
+ <node id="50131083" visible="true" version="3" changeset="3154022" timestamp="2009-11-18T19:35:59Z" user="Mike_Sherman" uid="13935" lat="48.4714896" lon="-120.1971814"/>
+ <node id="50131084" visible="true" version="3" changeset="3154022" timestamp="2009-11-18T19:35:59Z" user="Mike_Sherman" uid="13935" lat="48.4714725" lon="-120.1972500"/>
+ <node id="50131093" visible="true" version="3" changeset="3154022" timestamp="2009-11-18T19:36:00Z" user="Mike_Sherman" uid="13935" lat="48.4696402" lon="-120.2000653"/>
+ <node id="569073214" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:19Z" user="nmixter" uid="55774" lat="48.4727478" lon="-120.1891204"/>
+ <node id="569073209" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:17Z" user="nmixter" uid="55774" lat="48.4727481" lon="-120.1885077"/>
+ <node id="569073225" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:24Z" user="nmixter" uid="55774" lat="48.4727939" lon="-120.1892690"/>
+ <node id="569073205" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:15Z" user="nmixter" uid="55774" lat="48.4727221" lon="-120.1886824"/>
+ <node id="569073212" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:18Z" user="nmixter" uid="55774" lat="48.4731136" lon="-120.1887724"/>
+ <node id="569073216" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:20Z" user="nmixter" uid="55774" lat="48.4727437" lon="-120.1891005"/>
+ <node id="569073219" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:21Z" user="nmixter" uid="55774" lat="48.4727180" lon="-120.1888708"/>
+ <node id="569073226" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:24Z" user="nmixter" uid="55774" lat="48.4728293" lon="-120.1893332"/>
+ <node id="569073207" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:16Z" user="nmixter" uid="55774" lat="48.4727364" lon="-120.1885992"/>
+ <node id="569073230" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:26Z" user="nmixter" uid="55774" lat="48.4729067" lon="-120.1894088"/>
+ <node id="569073210" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:18Z" user="nmixter" uid="55774" lat="48.4727484" lon="-120.1885065"/>
+ <node id="569073218" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:21Z" user="nmixter" uid="55774" lat="48.4727245" lon="-120.1889567"/>
+ <node id="569073221" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:22Z" user="nmixter" uid="55774" lat="48.4727184" lon="-120.1887689"/>
+ <node id="569073228" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:25Z" user="nmixter" uid="55774" lat="48.4728736" lon="-120.1893820"/>
+ <node id="569073223" visible="true" version="1" changeset="3192871" timestamp="2009-11-23T10:44:23Z" user="nmixter" uid="55774" lat="48.4727670" lon="-120.1891959"/>
+ <node id="585375066" visible="true" version="2" changeset="3348462" timestamp="2009-12-11T12:07:21Z" user="h4ck3rm1k3" uid="131059" lat="48.4655400" lon="-120.1844200">
+  <tag k="landuse" v="quarry"/>
+  <tag k="man_made" v="mine"/>
+  <tag k="name" v="Winthrop Pit & Plant"/>
+  <tag k="note" v="Record <a href="http://tin.er.usgs.gov/mineplant/show.php?labno=6370">6370</a> of the <a href="http://tin.er.usgs.gov/mineplant/">Active mines and mineral plants in the US</a>"/>
+ </node>
+ <node id="50091449" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:07Z" user="woodpeck_fixbot" uid="147510" lat="48.4720830" lon="-120.1782040"/>
+ <node id="50134616" visible="true" version="3" changeset="7848519" timestamp="2011-04-13T04:24:22Z" user="compdude" uid="282329" lat="48.4737565" lon="-120.1799317"/>
+ <node id="1564464078" visible="true" version="1" changeset="10220832" timestamp="2011-12-27T22:49:17Z" user="Eric Godwin" uid="575547" lat="48.4782088" lon="-120.1864782">
+  <tag k="amenity" v="pub"/>
+  <tag k="name" v="Old Schoolhouse Brewery"/>
+  <tag k="wifi" v="no"/>
+ </node>
+ <node id="366030294" visible="true" version="2" changeset="10220832" timestamp="2011-12-27T22:49:17Z" user="Eric Godwin" uid="575547" lat="48.4769147" lon="-120.1822402">
+  <tag k="addr:state" v="WA"/>
+  <tag k="ele" v="540"/>
+  <tag k="gnis:county_name" v="Okanogan"/>
+  <tag k="gnis:feature_id" v="1529677"/>
+  <tag k="name" v="Shafer Museum"/>
+  <tag k="tourism" v="museum"/>
+ </node>
+ <node id="1930070102" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4662968" lon="-120.1714525"/>
+ <node id="1930070103" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4692130" lon="-120.1752381"/>
+ <node id="1930070104" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4699370" lon="-120.1756394"/>
+ <node id="1930070105" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4717839" lon="-120.1718027"/>
+ <node id="1930070106" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4725444" lon="-120.1764603"/>
+ <node id="1930070107" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4731200" lon="-120.1779812"/>
+ <node id="1930070108" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4732492" lon="-120.1770994"/>
+ <node id="1930070110" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4740212" lon="-120.1783211"/>
+ <node id="50034353" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4771563" lon="-120.1813357"/>
+ <node id="50211028" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4685932" lon="-120.1685787"/>
+ <node id="50212355" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4779272" lon="-120.1813829"/>
+ <node id="50212357" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4780374" lon="-120.1813848"/>
+ <node id="50212361" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4794833" lon="-120.1815688"/>
+ <node id="50220095" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4686840" lon="-120.1688071"/>
+ <node id="50220101" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4698937" lon="-120.1714787"/>
+ <node id="50220113" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4715370" lon="-120.1731111"/>
+ <node id="50220116" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4718232" lon="-120.1733928"/>
+ <node id="50220118" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4721114" lon="-120.1736766"/>
+ <node id="50220119" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4725978" lon="-120.1741554"/>
+ <node id="50220120" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4728255" lon="-120.1743742"/>
+ <node id="50220121" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4730364" lon="-120.1746208"/>
+ <node id="50220126" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4740461" lon="-120.1756838"/>
+ <node id="50220128" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4746470" lon="-120.1764669"/>
+ <node id="50220132" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:34Z" user="Wim L" uid="223681" lat="48.4766960" lon="-120.1810648"/>
+ <node id="50220134" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4767500" lon="-120.1811783"/>
+ <node id="50220136" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4770499" lon="-120.1818079"/>
+ <node id="50220137" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4784115" lon="-120.1846667"/>
+ <node id="50220139" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4787637" lon="-120.1851978"/>
+ <node id="50220143" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4798026" lon="-120.1850111"/>
+ <node id="50220852" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4791772" lon="-120.1837516"/>
+ <node id="1930070112" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4743034" lon="-120.1779347"/>
+ <node id="1930070114" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4745428" lon="-120.1785034"/>
+ <node id="1930070116" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4753247" lon="-120.1810318"/>
+ <node id="1930070118" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4757466" lon="-120.1820606"/>
+ <node id="1930070120" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4794312" lon="-120.1822874"/>
+ <node id="1930070122" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4795946" lon="-120.1812541"/>
+ <node id="50034333" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:30Z" user="Wim L" uid="223681" lat="48.4760412" lon="-120.1796901"/>
+ <node id="50034336" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:30Z" user="Wim L" uid="223681" lat="48.4772089" lon="-120.1798377"/>
+ <node id="50034339" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:30Z" user="Wim L" uid="223681" lat="48.4779675" lon="-120.1800150"/>
+ <node id="50222972" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4802976" lon="-120.1787663"/>
+ <node id="50224520" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4741166" lon="-120.1772562"/>
+ <node id="50224521" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4758014" lon="-120.1807525"/>
+ <node id="50224523" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4761131" lon="-120.1819252"/>
+ <node id="50224526" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4767340" lon="-120.1828781"/>
+ <node id="50224528" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4778394" lon="-120.1854202"/>
+ <node id="50224532" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4780398" lon="-120.1857786"/>
+ <node id="50224533" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4783361" lon="-120.1862056"/>
+ <node id="50224534" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4787586" lon="-120.1863585"/>
+ <node id="50224536" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4798258" lon="-120.1861287"/>
+ <node id="50224538" visible="true" version="4" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4798762" lon="-120.1860406"/>
+ <node id="50224554" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4739447" lon="-120.1773779"/>
+ <node id="50224572" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4798819" lon="-120.1855893"/>
+ <node id="50224574" visible="true" version="4" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4799096" lon="-120.1858823"/>
+ <node id="50231702" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4721053" lon="-120.1717353"/>
+ <node id="50243392" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4746869" lon="-120.1747436"/>
+ <node id="50249282" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4703004" lon="-120.1732674"/>
+ <node id="50249284" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:35Z" user="Wim L" uid="223681" lat="48.4706851" lon="-120.1736632"/>
+ <node id="50249289" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4711144" lon="-120.1740694"/>
+ <node id="50249292" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4737992" lon="-120.1770043"/>
+ <node id="50249295" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4740239" lon="-120.1771434"/>
+ <node id="50251672" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4708752" lon="-120.1691683"/>
+ <node id="50251673" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4702648" lon="-120.1685031"/>
+ <node id="50251675" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4700170" lon="-120.1684384"/>
+ <node id="50251677" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:36Z" user="Wim L" uid="223681" lat="48.4696189" lon="-120.1685048"/>
+ <node id="50251679" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:38Z" user="Wim L" uid="223681" lat="48.4694079" lon="-120.1685473"/>
+ <node id="50251681" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:38Z" user="Wim L" uid="223681" lat="48.4690727" lon="-120.1684691"/>
+ <node id="50256155" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:38Z" user="Wim L" uid="223681" lat="48.4704597" lon="-120.1701277"/>
+ <node id="50258506" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:38Z" user="Wim L" uid="223681" lat="48.4696695" lon="-120.1692515"/>
+ <node id="50263160" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:38Z" user="Wim L" uid="223681" lat="48.4698712" lon="-120.1742162"/>
+ <node id="50263161" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4696945" lon="-120.1740765"/>
+ <node id="50264868" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4713191" lon="-120.1736045"/>
+ <node id="50289827" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4680316" lon="-120.1675349"/>
+ <node id="50303124" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4801809" lon="-120.1800940"/>
+ <node id="50303126" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4796360" lon="-120.1794626"/>
+ <node id="50303128" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4794148" lon="-120.1793165"/>
+ <node id="50304669" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4780821" lon="-120.1850958"/>
+ <node id="50304672" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4795457" lon="-120.1833480"/>
+ <node id="50311016" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4776630" lon="-120.1857429"/>
+ <node id="50314549" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:39Z" user="Wim L" uid="223681" lat="48.4796914" lon="-120.1843402"/>
+ <node id="1937595105" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4743689" lon="-120.1921671"/>
+ <node id="1937595106" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4743828" lon="-120.1913805"/>
+ <node id="1937595107" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4747364" lon="-120.1931178"/>
+ <node id="1937595108" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4747983" lon="-120.1905116"/>
+ <node id="1937595109" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4750496" lon="-120.1970260"/>
+ <node id="1937595110" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4750757" lon="-120.1957265"/>
+ <node id="1937595111" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4753759" lon="-120.1984632"/>
+ <node id="1937595112" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4754510" lon="-120.1893401"/>
+ <node id="1937595113" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4756209" lon="-120.1825940"/>
+ <node id="1937595114" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4756013" lon="-120.1835292"/>
+ <node id="1937595115" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4758493" lon="-120.1849566"/>
+ <node id="1937595116" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4758752" lon="-120.1880899"/>
+ <node id="1937595117" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4761560" lon="-120.1865120"/>
+ <node id="1937595118" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4763777" lon="-120.1843393"/>
+ <node id="1937595119" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4764102" lon="-120.1835528"/>
+ <node id="1937595120" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4766420" lon="-120.1999399"/>
+ <node id="1937595121" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:00Z" user="Wim L" uid="223681" lat="48.4770534" lon="-120.1858837"/>
+ <node id="1937595122" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4775022" lon="-120.1867178"/>
+ <node id="1937595123" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4777299" lon="-120.1869729"/>
+ <node id="1937595124" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4778427" lon="-120.2009932"/>
+ <node id="1937595129" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4787967" lon="-120.1872967"/>
+ <node id="1937595131" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4799840" lon="-120.1821914"/>
+ <node id="1937595132" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4799840" lon="-120.1833493"/>
+ <node id="1937595133" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4801106" lon="-120.1873359"/>
+ <node id="1937595134" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4802182" lon="-120.1814064"/>
+ <node id="1937595135" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4802182" lon="-120.1842912"/>
+ <node id="1937595136" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4804816" lon="-120.1871319"/>
+ <node id="1937595137" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4805824" lon="-120.1853215"/>
+ <node id="1937595138" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4806898" lon="-120.1859790"/>
+ <node id="1937595139" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4807125" lon="-120.1807392"/>
+ <node id="1937595141" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4813109" lon="-120.1804448"/>
+ <node id="1937595142" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4818963" lon="-120.1807392"/>
+ <node id="1937595144" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4825207" lon="-120.1814653"/>
+ <node id="1937595145" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4830020" lon="-120.1822699"/>
+ <node id="1937595146" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4837242" lon="-120.1831010"/>
+ <node id="1937595147" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4847544" lon="-120.1838434"/>
+ <node id="1937608668" visible="true" version="1" changeset="13292648" timestamp="2012-09-29T06:11:38Z" user="Wim L" uid="223681" lat="48.4785837" lon="-120.1900392"/>
+ <node id="50082832" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4796547" lon="-120.1925963"/>
+ <node id="50132201" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4868198" lon="-120.1926325"/>
+ <node id="50132205" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4865568" lon="-120.1915345"/>
+ <node id="50132207" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4864388" lon="-120.1909525"/>
+ <node id="50132209" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4861408" lon="-120.1906155"/>
+ <node id="50132210" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4854798" lon="-120.1903765"/>
+ <node id="50132211" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4853888" lon="-120.1897335"/>
+ <node id="50132212" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4850238" lon="-120.1894575"/>
+ <node id="50132213" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4852368" lon="-120.1891365"/>
+ <node id="50184155" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:47Z" user="Wim L" uid="223681" lat="48.4832784" lon="-120.1926884"/>
+ <node id="50184157" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:47Z" user="Wim L" uid="223681" lat="48.4833648" lon="-120.1938077"/>
+ <node id="50184160" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:47Z" user="Wim L" uid="223681" lat="48.4833471" lon="-120.1944370"/>
+ <node id="50184162" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:47Z" user="Wim L" uid="223681" lat="48.4836678" lon="-120.1950863"/>
+ <node id="50184164" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4834950" lon="-120.1958297"/>
+ <node id="50184165" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4834039" lon="-120.1970848"/>
+ <node id="50184166" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4840681" lon="-120.1978629"/>
+ <node id="50184168" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4846104" lon="-120.1980114"/>
+ <node id="50184169" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4845182" lon="-120.2017500"/>
+ <node id="50184193" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4812530" lon="-120.1926873"/>
+ <node id="50216425" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4863795" lon="-120.1774509"/>
+ <node id="50220739" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4707517" lon="-120.1858800"/>
+ <node id="50220744" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4701875" lon="-120.1842489"/>
+ <node id="50220751" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4692006" lon="-120.1829657"/>
+ <node id="50220755" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4693771" lon="-120.1816982"/>
+ <node id="50225665" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4864334" lon="-120.1772809"/>
+ <node id="50230387" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4684488" lon="-120.1805804"/>
+ <node id="50230389" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4686673" lon="-120.1811404"/>
+ <node id="50230391" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4698254" lon="-120.1822695"/>
+ <node id="50230393" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:53Z" user="Wim L" uid="223681" lat="48.4708630" lon="-120.1836420"/>
+ <node id="50253600" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:53Z" user="Wim L" uid="223681" lat="48.4715898" lon="-120.1872774"/>
+ <node id="50258452" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:53Z" user="Wim L" uid="223681" lat="48.4702865" lon="-120.1858156"/>
+ <node id="50258454" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4699436" lon="-120.1856789"/>
+ <node id="50258458" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4696320" lon="-120.1851288"/>
+ <node id="50261466" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4686046" lon="-120.1834541"/>
+ <node id="50261468" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4686136" lon="-120.1853111"/>
+ <node id="50261470" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4685566" lon="-120.1855161"/>
+ <node id="50261472" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4684616" lon="-120.1856441"/>
+ <node id="50261474" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4683816" lon="-120.1856461"/>
+ <node id="50261475" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4682276" lon="-120.1855531"/>
+ <node id="50261477" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4679348" lon="-120.1852659"/>
+ <node id="50261479" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4676201" lon="-120.1848305"/>
+ <node id="50261481" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4670664" lon="-120.1842846"/>
+ <node id="50261483" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4657185" lon="-120.1844371"/>
+ <node id="50271283" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4775718" lon="-120.1899827"/>
+ <node id="50271286" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4787792" lon="-120.1903825"/>
+ <node id="50271289" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4792869" lon="-120.1923210"/>
+ <node id="50271292" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4794320" lon="-120.1924444"/>
+ <node id="50298272" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4724627" lon="-120.1900943"/>
+ <node id="50298273" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4723851" lon="-120.1893599"/>
+ <node id="50298274" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4721118" lon="-120.1885283"/>
+ <node id="50298275" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:57Z" user="Wim L" uid="223681" lat="48.4717165" lon="-120.1877498"/>
+ <node id="50298276" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:58Z" user="Wim L" uid="223681" lat="48.4714698" lon="-120.1867390"/>
+ <node id="50298277" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:58Z" user="Wim L" uid="223681" lat="48.4714312" lon="-120.1864198"/>
+ <node id="50298278" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:58Z" user="Wim L" uid="223681" lat="48.4713667" lon="-120.1859073"/>
+ <node id="50320789" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:58Z" user="Wim L" uid="223681" lat="48.4694040" lon="-120.1726733"/>
+ <node id="1954309609" visible="true" version="3" changeset="14796087" timestamp="2013-01-26T18:23:07Z" user="zacmccormick" uid="492311" lat="48.4793088" lon="-120.1859748">
+  <tag k="internet_access" v="wlan"/>
+  <tag k="name" v="Methownet"/>
+  <tag k="office" v="telecommunication"/>
+ </node>
+ <node id="1954312441" visible="true" version="2" changeset="14796087" timestamp="2013-01-26T18:23:52Z" user="zacmccormick" uid="492311" lat="48.4781474" lon="-120.1916641">
+  <tag k="leisure" v="track"/>
+  <tag k="name" v="Pump track"/>
+ </node>
+ <node id="1954315742" visible="true" version="2" changeset="14796087" timestamp="2013-01-26T18:24:25Z" user="zacmccormick" uid="492311" lat="48.4776213" lon="-120.1908168">
+  <tag k="name" v="Smallwoods fruit stand"/>
+ </node>
+ <node id="2020846702" visible="true" version="2" changeset="14796087" timestamp="2013-01-26T18:23:20Z" user="zacmccormick" uid="492311" lat="48.4786949" lon="-120.1860866">
+  <tag k="amenity" v="cafe"/>
+  <tag k="drive_through" v="no"/>
+  <tag k="internet_access" v="wlan"/>
+  <tag k="name" v="NOCA Coffee"/>
+  <tag k="outdoor_seating" v="yes"/>
+ </node>
+ <node id="2020854401" visible="true" version="2" changeset="14796087" timestamp="2013-01-26T18:23:07Z" user="zacmccormick" uid="492311" lat="48.4775337" lon="-120.1912035">
+  <tag k="amenity" v="bicycle_rental"/>
+  <tag k="name" v="Methow Cycle and Sport"/>
+ </node>
+ <node id="2070468271" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4729763" lon="-120.1590311"/>
+ <node id="2070468273" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4798632" lon="-120.1710309"/>
+ <node id="2070468276" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4799942" lon="-120.1715932"/>
+ <node id="2070468278" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4800496" lon="-120.1705141"/>
+ <node id="2070468280" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4802007" lon="-120.1641836"/>
+ <node id="2070468282" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4803267" lon="-120.1722772"/>
+ <node id="2070468284" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4803670" lon="-120.1703545"/>
+ <node id="2070468285" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4811931" lon="-120.1731283"/>
+ <node id="2070468287" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4815810" lon="-120.1701265"/>
+ <node id="2070468289" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4821452" lon="-120.1744431"/>
+ <node id="2070468291" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4824273" lon="-120.1659619"/>
+ <node id="2070468293" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4825734" lon="-120.1672314"/>
+ <node id="2070468295" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4827598" lon="-120.1751498"/>
+ <node id="2070468297" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4832282" lon="-120.1694805"/>
+ <node id="2070468299" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4834902" lon="-120.1756590"/>
+ <node id="2070468301" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4839989" lon="-120.1758718"/>
+ <node id="2070468303" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4844321" lon="-120.1758566"/>
+ <node id="2070468305" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4846991" lon="-120.1756210"/>
+ <node id="2070468307" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4851021" lon="-120.1750966"/>
+ <node id="50031073" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:12Z" user="pnorman" uid="355617" lat="48.4647140" lon="-120.1871368"/>
+ <node id="50226947" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4640691" lon="-120.1903628"/>
+ <node id="50226949" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4644560" lon="-120.1898218"/>
+ <node id="50226952" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4645850" lon="-120.1890148"/>
+ <node id="50226954" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4647140" lon="-120.1887498"/>
+ <node id="2020867467" visible="true" version="2" changeset="14796087" timestamp="2013-01-26T18:21:27Z" user="zacmccormick" uid="492311" lat="48.4688117" lon="-120.1760667">
+  <tag k="amenity" v="restaurant"/>
+  <tag k="cuisine" v="pizza"/>
+  <tag k="name" v="East 20 pizza"/>
+  <tag k="outdoor_seating" v="yes"/>
+  <tag k="takeaway" v="yes"/>
+ </node>
+ <node id="2020856864" visible="true" version="2" changeset="14796087" timestamp="2013-01-26T18:22:52Z" user="zacmccormick" uid="492311" lat="48.4782707" lon="-120.1931179">
+  <tag k="name" v="Lost River Winery"/>
+ </node>
+ <node id="1937595366" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5572637" lon="-120.3487640"/>
+ <node id="50181001" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:42:34Z" user="woodpeck_fixbot" uid="147510" lat="48.5093480" lon="-120.2572820"/>
+ <node id="1937595426" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5920754" lon="-120.1645472"/>
+ <node id="1937595149" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4869468" lon="-120.2276029"/>
+ <node id="1937595249" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:07Z" user="Wim L" uid="223681" lat="48.5076251" lon="-120.1867286"/>
+ <node id="50131301" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:25:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4122780" lon="-120.1454050"/>
+ <node id="1937595445" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.6002135" lon="-120.4289356"/>
+ <node id="50289814" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4594190" lon="-120.1582710"/>
+ <node id="1937595455" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6033162" lon="-120.1629443"/>
+ <node id="1937595196" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5022056" lon="-120.2623725"/>
+ <node id="50250219" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4623540" lon="-120.1931940"/>
+ <node id="1937595380" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5702294" lon="-120.1715466"/>
+ <node id="1937595393" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5752981" lon="-120.3752029"/>
+ <node id="1937595279" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5194576" lon="-120.2924560"/>
+ <node id="1937595305" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5258979" lon="-120.1893304"/>
+ <node id="2070468267" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4690361" lon="-120.1553529"/>
+ <node id="50309961" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4196090" lon="-120.1523600"/>
+ <node id="1937595267" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5149878" lon="-120.1870642"/>
+ <node id="1937595473" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6146316" lon="-120.1611249"/>
+ <node id="1937595307" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5263192" lon="-120.3099896"/>
+ <node id="1937595515" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6583615" lon="-120.1452014"/>
+ <node id="50271311" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:16:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4978390" lon="-120.1879700"/>
+ <node id="1930069932" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3957807" lon="-120.1392052"/>
+ <node id="1937595342" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5443537" lon="-120.1839837"/>
+ <node id="1937595171" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4993605" lon="-120.2498901"/>
+ <node id="50309935" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4016310" lon="-120.1409180"/>
+ <node id="1937595322" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5347351" lon="-120.1870539"/>
+ <node id="50271307" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:59:51Z" user="woodpeck_fixbot" uid="147510" lat="48.4966510" lon="-120.1903750"/>
+ <node id="1930069936" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4026504" lon="-120.1394065"/>
+ <node id="1937595329" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5382348" lon="-120.1859680"/>
+ <node id="1937595127" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4786519" lon="-120.2024993"/>
+ <node id="50095246" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.4626613" lon="-120.1839062"/>
+ <node id="50057108" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:11:39Z" user="woodpeck_fixbot" uid="147510" lat="48.5029640" lon="-120.2532350"/>
+ <node id="1937595295" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5236070" lon="-120.3032759"/>
+ <node id="1930070100" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4602136" lon="-120.1685168"/>
+ <node id="1937608671" visible="true" version="1" changeset="13292648" timestamp="2012-09-29T06:11:38Z" user="Wim L" uid="223681" lat="48.4972666" lon="-120.2445083"/>
+ <node id="2070970946" visible="true" version="1" changeset="14301298" timestamp="2012-12-17T02:19:30Z" user="pnorman" uid="355617" lat="48.5322843" lon="-120.3058874"/>
+ <node id="1937595504" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6403016" lon="-120.1521081"/>
+ <node id="1937595352" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5503488" lon="-120.3311985"/>
+ <node id="1937595394" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5768787" lon="-120.1750127"/>
+ <node id="1930069971" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:11Z" user="Wim L" uid="223681" lat="48.4476187" lon="-120.1608591"/>
+ <node id="1937595162" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4949044" lon="-120.1876677"/>
+ <node id="50031079" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:25:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4605410" lon="-120.1864880"/>
+ <node id="1937608670" visible="true" version="1" changeset="13292648" timestamp="2012-09-29T06:11:38Z" user="Wim L" uid="223681" lat="48.4954518" lon="-120.2407621"/>
+ <node id="1937595384" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5713289" lon="-120.3820715"/>
+ <node id="1930069919" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3812718" lon="-120.1291315"/>
+ <node id="1930069933" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3970992" lon="-120.1389886"/>
+ <node id="1937595297" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5245462" lon="-120.1865829"/>
+ <node id="1937595459" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6045044" lon="-120.1623590"/>
+ <node id="1937595524" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6723194" lon="-120.1382293"/>
+ <node id="1930069921" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3834423" lon="-120.1294379"/>
+ <node id="1937595534" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6973141" lon="-120.1284593"/>
+ <node id="2070468265" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4521358" lon="-120.1493381"/>
+ <node id="50311061" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4954550" lon="-120.2383120"/>
+ <node id="1930069916" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3810005" lon="-120.1261189"/>
+ <node id="50147863" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:34:23Z" user="woodpeck_fixbot" uid="147510" lat="48.4611780" lon="-120.1617720"/>
+ <node id="1937595370" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5625974" lon="-120.3575310"/>
+ <node id="1937595194" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5019055" lon="-120.2603446"/>
+ <node id="1937595539" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7405600" lon="-120.1387770"/>
+ <node id="1937595492" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6332111" lon="-120.1563326"/>
+ <node id="1937595379" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5688699" lon="-120.1733388"/>
+ <node id="1937595460" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6045210" lon="-120.1643339"/>
+ <node id="1937595150" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4877512" lon="-120.1833503"/>
+ <node id="50091296" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4877440" lon="-120.1879710"/>
+ <node id="1937595411" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5871636" lon="-120.3976955"/>
+ <node id="50122151" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:23:28Z" user="woodpeck_fixbot" uid="147510" lat="48.4380210" lon="-120.1649090"/>
+ <node id="1937595192" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5015272" lon="-120.2608368"/>
+ <node id="1930069943" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4133759" lon="-120.1434608"/>
+ <node id="1937595195" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5021273" lon="-120.2561707"/>
+ <node id="1937595461" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6045954" lon="-120.1630339"/>
+ <node id="1937595293" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5230579" lon="-120.1848440"/>
+ <node id="1937595331" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5394660" lon="-120.1851216"/>
+ <node id="1937595391" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5744286" lon="-120.3722979"/>
+ <node id="1937595414" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5881089" lon="-120.3983488"/>
+ <node id="50260834" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:05:31Z" user="woodpeck_fixbot" uid="147510" lat="48.4595790" lon="-120.1587860"/>
+ <node id="1937595367" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5574908" lon="-120.1807907"/>
+ <node id="1930069942" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4112432" lon="-120.1343513"/>
+ <node id="491334466" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4620290" lon="-120.1689180"/>
+ <node id="1937595274" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5184795" lon="-120.2957834"/>
+ <node id="1937595430" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5938644" lon="-120.4192278"/>
+ <node id="50311115" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:41Z" user="woodpeck_fixbot" uid="147510" lat="48.5169930" lon="-120.2699390"/>
+ <node id="50289817" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:23:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4597620" lon="-120.1589230"/>
+ <node id="1937595485" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6251403" lon="-120.1585308"/>
+ <node id="1937595299" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5251050" lon="-120.1888005"/>
+ <node id="50289805" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:23:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4573620" lon="-120.1540150"/>
+ <node id="50165275" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:58:18Z" user="woodpeck_fixbot" uid="147510" lat="48.3905750" lon="-120.1358330"/>
+ <node id="50271313" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:09:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4980670" lon="-120.1876600"/>
+ <node id="1937595350" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5485782" lon="-120.1837783"/>
+ <node id="1937595163" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4950622" lon="-120.1870622"/>
+ <node id="1937595165" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4967726" lon="-120.1794577"/>
+ <node id="50309952" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4154760" lon="-120.1482690"/>
+ <node id="1937595419" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5895364" lon="-120.1673732"/>
+ <node id="50261487" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4628173" lon="-120.1842312"/>
+ <node id="1937595371" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5627057" lon="-120.1802844"/>
+ <node id="1930069945" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4150852" lon="-120.1419794"/>
+ <node id="1937595361" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5550820" lon="-120.3449599"/>
+ <node id="50268072" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:08:13Z" user="woodpeck_fixbot" uid="147510" lat="48.5341760" lon="-120.3121900"/>
+ <node id="1937595155" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:03Z" user="Wim L" uid="223681" lat="48.4897791" lon="-120.1874185"/>
+ <node id="50306707" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:19:50Z" user="woodpeck_fixbot" uid="147510" lat="48.4860970" lon="-120.2171740"/>
+ <node id="50289808" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4582300" lon="-120.1550440"/>
+ <node id="1930069908" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:39Z" user="Wim L" uid="223681" lat="48.3718276" lon="-120.1210384"/>
+ <node id="1937595397" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5808315" lon="-120.1752252"/>
+ <node id="1937595490" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6311475" lon="-120.1565678"/>
+ <node id="491334482" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4621180" lon="-120.1726580"/>
+ <node id="50031075" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:05:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4611860" lon="-120.1851520"/>
+ <node id="50311045" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4871230" lon="-120.2244930"/>
+ <node id="50311143" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:41Z" user="woodpeck_fixbot" uid="147510" lat="48.5297900" lon="-120.2975420"/>
+ <node id="1937595458" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6043474" lon="-120.1637964"/>
+ <node id="1937595483" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6234891" lon="-120.1591451"/>
+ <node id="491334490" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4618910" lon="-120.1798280"/>
+ <node id="50309944" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4090510" lon="-120.1426600"/>
+ <node id="1937595269" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5165872" lon="-120.1876748"/>
+ <node id="50311080" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.5030990" lon="-120.2533160"/>
+ <node id="491334512" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4626050" lon="-120.1855160"/>
+ <node id="1930069928" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3897509" lon="-120.1319118"/>
+ <node id="1937595454" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6025562" lon="-120.4407738"/>
+ <node id="1937595502" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6397468" lon="-120.1539642"/>
+ <node id="1930069909" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:39Z" user="Wim L" uid="223681" lat="48.3732523" lon="-120.1220086"/>
+ <node id="1930069913" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3786943" lon="-120.1190723"/>
+ <node id="1937595324" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5357172" lon="-120.1869949"/>
+ <node id="1937595263" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5122092" lon="-120.2828588"/>
+ <node id="1937595447" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6010576" lon="-120.4341794"/>
+ <node id="1937595288" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5220653" lon="-120.1843722"/>
+ <node id="50250202" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4608060" lon="-120.1897150"/>
+ <node id="491334506" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4619930" lon="-120.1854860"/>
+ <node id="1937595323" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5354885" lon="-120.3239298"/>
+ <node id="1937595213" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5052642" lon="-120.2708284"/>
+ <node id="1937595337" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5426173" lon="-120.1838310"/>
+ <node id="50309915" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:33:59Z" user="woodpeck_fixbot" uid="147510" lat="48.3874360" lon="-120.1346670"/>
+ <node id="50309907" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.3733180" lon="-120.1248980"/>
+ <node id="1937595497" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6352496" lon="-120.1544768"/>
+ <node id="1937595444" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5993971" lon="-120.1655734"/>
+ <node id="1937595289" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5222483" lon="-120.3016702"/>
+ <node id="50250209" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:56:08Z" user="woodpeck_fixbot" uid="147510" lat="48.4608060" lon="-120.1910510"/>
+ <node id="50289783" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:23:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4455750" lon="-120.1491480"/>
+ <node id="491334486" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4620520" lon="-120.1746800"/>
+ <node id="1937595466" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6058186" lon="-120.1636089"/>
+ <node id="1937595475" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6164547" lon="-120.1629633"/>
+ <node id="50309950" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4130980" lon="-120.1463620"/>
+ <node id="1937595533" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6920780" lon="-120.1308968"/>
+ <node id="1937595303" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5254820" lon="-120.1895266"/>
+ <node id="50159213" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:37:34Z" user="woodpeck_fixbot" uid="147510" lat="48.4453360" lon="-120.1488190"/>
+ <node id="1930069961" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4400978" lon="-120.1557614"/>
+ <node id="1937595395" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5773963" lon="-120.3890653"/>
+ <node id="50219931" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:52:46Z" user="woodpeck_fixbot" uid="147510" lat="48.3978210" lon="-120.1404130"/>
+ <node id="1937595423" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5906617" lon="-120.1667096"/>
+ <node id="1937595156" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4904895" lon="-120.2312256"/>
+ <node id="50058339" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:28:44Z" user="woodpeck_fixbot" uid="147510" lat="48.4046460" lon="-120.1420130"/>
+ <node id="50311057" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4929530" lon="-120.2339040"/>
+ <node id="1930069937" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4036335" lon="-120.1376448"/>
+ <node id="1937595151" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4880494" lon="-120.2288826"/>
+ <node id="50311074" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.5014540" lon="-120.2517710"/>
+ <node id="50309924" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:44Z" user="woodpeck_fixbot" uid="147510" lat="48.3943210" lon="-120.1391070"/>
+ <node id="491334493" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4628860" lon="-120.1804630"/>
+ <node id="1937595545" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7603174" lon="-120.1292776"/>
+ <node id="1937595418" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5892838" lon="-120.4046165"/>
+ <node id="50226943" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4634241" lon="-120.1914348"/>
+ <node id="1930069930" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3915132" lon="-120.1336629"/>
+ <node id="1937595152" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4884271" lon="-120.1840742"/>
+ <node id="1937595311" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5285492" lon="-120.1886828"/>
+ <node id="50311070" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.5004750" lon="-120.2500090"/>
+ <node id="1937595368" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5590613" lon="-120.1803883"/>
+ <node id="1937595479" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6210120" lon="-120.1613723"/>
+ <node id="50268069" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:14:55Z" user="woodpeck_fixbot" uid="147510" lat="48.5348160" lon="-120.3135650"/>
+ <node id="50268068" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:08:13Z" user="woodpeck_fixbot" uid="147510" lat="48.5350900" lon="-120.3143560"/>
+ <node id="1937595255" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:07Z" user="Wim L" uid="223681" lat="48.5105504" lon="-120.1886126"/>
+ <node id="1937595442" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5982068" lon="-120.1644235"/>
+ <node id="1930069935" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4017859" lon="-120.1397384"/>
+ <node id="1937595470" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6102980" lon="-120.1617340"/>
+ <node id="1937595207" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5037188" lon="-120.2632585"/>
+ <node id="50309987" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4497830" lon="-120.1650400"/>
+ <node id="1937595362" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5553032" lon="-120.3413681"/>
+ <node id="1937595404" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5836920" lon="-120.1683044"/>
+ <node id="2070970945" visible="true" version="1" changeset="14301298" timestamp="2012-12-17T02:19:30Z" user="pnorman" uid="355617" lat="48.5315508" lon="-120.3017486"/>
+ <node id="1937595390" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5742899" lon="-120.3778410"/>
+ <node id="1937595544" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7573547" lon="-120.1312507"/>
+ <node id="1937595209" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5045631" lon="-120.2769612"/>
+ <node id="50031077" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:10:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4606700" lon="-120.1854170"/>
+ <node id="50311068" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4998670" lon="-120.2483930"/>
+ <node id="50311076" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.5016820" lon="-120.2522180"/>
+ <node id="50309973" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4287700" lon="-120.1633700"/>
+ <node id="1937595278" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5192489" lon="-120.2939720"/>
+ <node id="1937595276" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5188577" lon="-120.2971419"/>
+ <node id="1937595386" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5726719" lon="-120.3790148"/>
+ <node id="1937595266" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5133830" lon="-120.2863633"/>
+ <node id="50311111" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:40Z" user="woodpeck_fixbot" uid="147510" lat="48.5143650" lon="-120.2653350"/>
+ <node id="1937595210" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5046250" lon="-120.1854247"/>
+ <node id="1930069947" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4173559" lon="-120.1407029"/>
+ <node id="1937595310" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5275095" lon="-120.1882510"/>
+ <node id="1937595211" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5046711" lon="-120.2677474"/>
+ <node id="50115856" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:21:46Z" user="woodpeck_fixbot" uid="147510" lat="48.4828330" lon="-120.2078970"/>
+ <node id="1937595265" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5131248" lon="-120.1867131"/>
+ <node id="1937595292" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5230396" lon="-120.1860651"/>
+ <node id="1937595191" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5015173" lon="-120.1817613"/>
+ <node id="1937595409" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5865198" lon="-120.1654045"/>
+ <node id="1937595271" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5172123" lon="-120.1869255"/>
+ <node id="50311125" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:41Z" user="woodpeck_fixbot" uid="147510" lat="48.5208770" lon="-120.2747140"/>
+ <node id="50109743" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:25:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4610450" lon="-120.1615040"/>
+ <node id="491334503" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4618650" lon="-120.1840050"/>
+ <node id="50250213" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4608060" lon="-120.1921220"/>
+ <node id="1937595523" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6713155" lon="-120.1379111"/>
+ <node id="1937595301" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5252108" lon="-120.3114663"/>
+ <node id="1937595364" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5554691" lon="-120.3401708"/>
+ <node id="50216342" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:50:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4983870" lon="-120.1870760"/>
+ <node id="50311041" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4819650" lon="-120.2056640"/>
+ <node id="1937595543" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7568970" lon="-120.1326025"/>
+ <node id="50172572" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:41:20Z" user="woodpeck_fixbot" uid="147510" lat="48.4331950" lon="-120.1641490"/>
+ <node id="1937595471" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6117801" lon="-120.1611602"/>
+ <node id="1937595202" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5031709" lon="-120.2626285"/>
+ <node id="2070970943" visible="true" version="1" changeset="14301298" timestamp="2012-12-17T02:19:29Z" user="pnorman" uid="355617" lat="48.5061852" lon="-120.2546608"/>
+ <node id="50148618" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:31:29Z" user="woodpeck_fixbot" uid="147510" lat="48.5140440" lon="-120.2638910"/>
+ <node id="50268074" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:14:55Z" user="woodpeck_fixbot" uid="147510" lat="48.5334220" lon="-120.3100920"/>
+ <node id="1930070084" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:19Z" user="Wim L" uid="223681" lat="48.4548197" lon="-120.1630124"/>
+ <node id="50311112" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.5145250" lon="-120.2658850"/>
+ <node id="50033259" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:11:11Z" user="woodpeck_fixbot" uid="147510" lat="48.4632970" lon="-120.1733450"/>
+ <node id="1937595148" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4850865" lon="-120.2246449"/>
+ <node id="50244682" visible="true" version="3" changeset="14298131" timestamp="2012-12-16T19:41:46Z" user="pnorman" uid="355617" lat="48.4514159" lon="-120.1492091"/>
+ <node id="1937595478" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6208952" lon="-120.1585441"/>
+ <node id="1937595472" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6134053" lon="-120.1607341"/>
+ <node id="1937595433" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5946761" lon="-120.4249512"/>
+ <node id="1937595347" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5457317" lon="-120.1858431"/>
+ <node id="1937595186" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5006714" lon="-120.1819000"/>
+ <node id="50309980" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4444150" lon="-120.1645630"/>
+ <node id="1937595270" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5171130" lon="-120.2897891"/>
+ <node id="1937595294" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5235359" lon="-120.1867312"/>
+ <node id="1937595401" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:19Z" user="Wim L" uid="223681" lat="48.5834274" lon="-120.1703043"/>
+ <node id="1937595201" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5031172" lon="-120.1838705"/>
+ <node id="491334460" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4621910" lon="-120.1688080"/>
+ <node id="1937595164" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4955654" lon="-120.1809828"/>
+ <node id="491334500" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4618540" lon="-120.1821670"/>
+ <node id="50108975" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:34:34Z" user="woodpeck_fixbot" uid="147510" lat="48.4586830" lon="-120.1562430"/>
+ <node id="50053227" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:14:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4559360" lon="-120.1532210"/>
+ <node id="491334455" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4631280" lon="-120.1692690"/>
+ <node id="1937595298" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5248588" lon="-120.3126279"/>
+ <node id="1937595296" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5241677" lon="-120.3048510"/>
+ <node id="50289813" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:03:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4590070" lon="-120.1575160"/>
+ <node id="1937595424" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5906747" lon="-120.4089855"/>
+ <node id="1937595189" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5010208" lon="-120.1815670"/>
+ <node id="1937595360" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5547398" lon="-120.1849589"/>
+ <node id="50309985" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4486180" lon="-120.1645600"/>
+ <node id="1937595542" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7509157" lon="-120.1370272"/>
+ <node id="50215269" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:54:55Z" user="woodpeck_fixbot" uid="147510" lat="48.4316940" lon="-120.1639520"/>
+ <node id="1937595525" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6728563" lon="-120.1375576"/>
+ <node id="1937595532" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6895367" lon="-120.1311717"/>
+ <node id="1937595538" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7241841" lon="-120.1330155"/>
+ <node id="1930069924" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3847987" lon="-120.1305613"/>
+ <node id="1930069887" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:39Z" user="Wim L" uid="223681" lat="48.3693514" lon="-120.1189193"/>
+ <node id="1937595436" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5950661" lon="-120.4172067"/>
+ <node id="491334471" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4620420" lon="-120.1695130"/>
+ <node id="1937595214" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5057138" lon="-120.1850605"/>
+ <node id="1937595382" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5710053" lon="-120.3806288"/>
+ <node id="1937595484" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6244217" lon="-120.1589639"/>
+ <node id="50309964" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4236760" lon="-120.1591180"/>
+ <node id="50309947" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4114530" lon="-120.1444420"/>
+ <node id="1937595487" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6276604" lon="-120.1586747"/>
+ <node id="50268077" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:08:13Z" user="woodpeck_fixbot" uid="147510" lat="48.5326230" lon="-120.3068600"/>
+ <node id="1937595396" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5795966" lon="-120.3888453"/>
+ <node id="50153930" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:33:11Z" user="woodpeck_fixbot" uid="147510" lat="48.4963770" lon="-120.1906500"/>
+ <node id="50250211" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:07:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4606770" lon="-120.1915930"/>
+ <node id="1937595410" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5871161" lon="-120.1659414"/>
+ <node id="1937595343" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.5445603" lon="-120.3236259"/>
+ <node id="1937595530" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6829188" lon="-120.1318467"/>
+ <node id="491334501" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4618620" lon="-120.1835450"/>
+ <node id="50133975" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:30:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4670340" lon="-120.2053660"/>
+ <node id="1937595316" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5308105" lon="-120.1872698"/>
+ <node id="1937595358" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5542438" lon="-120.1857498"/>
+ <node id="1937595251" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:07Z" user="Wim L" uid="223681" lat="48.5088992" lon="-120.1868071"/>
+ <node id="1937595261" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5116944" lon="-120.1857474"/>
+ <node id="1937595326" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5363237" lon="-120.1872724"/>
+ <node id="1937595422" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5906207" lon="-120.4107004"/>
+ <node id="50289810" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:23:33Z" user="woodpeck_fixbot" uid="147510" lat="48.4585270" lon="-120.1556280"/>
+ <node id="50311066" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4994760" lon="-120.2479050"/>
+ <node id="1937595283" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5200444" lon="-120.2975553"/>
+ <node id="50309992" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4520670" lon="-120.1666180"/>
+ <node id="1937608669" visible="true" version="1" changeset="13292648" timestamp="2012-09-29T06:11:38Z" user="Wim L" uid="223681" lat="48.4788075" lon="-120.2136859"/>
+ <node id="1937595435" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5948636" lon="-120.4180233"/>
+ <node id="1930069920" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3815770" lon="-120.1218807"/>
+ <node id="1937595392" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5744774" lon="-120.1741303"/>
+ <node id="1937595511" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6545549" lon="-120.1483125"/>
+ <node id="50109002" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:34:34Z" user="woodpeck_fixbot" uid="147510" lat="48.4574910" lon="-120.1541680"/>
+ <node id="50091260" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4886580" lon="-120.1889670"/>
+ <node id="1937595425" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5909599" lon="-120.4119146"/>
+ <node id="1937595407" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5858253" lon="-120.1656295"/>
+ <node id="1937595438" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5966113" lon="-120.1632360"/>
+ <node id="1937595506" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6453736" lon="-120.1525039"/>
+ <node id="1937595327" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5369301" lon="-120.1872447"/>
+ <node id="50193629" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:46:43Z" user="woodpeck_fixbot" uid="147510" lat="48.4943230" lon="-120.1913790"/>
+ <node id="1937595535" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6981075" lon="-120.1250654"/>
+ <node id="1937595340" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.5434856" lon="-120.3230378"/>
+ <node id="50311123" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:59Z" user="woodpeck_fixbot" uid="147510" lat="48.5201010" lon="-120.2738210"/>
+ <node id="1937595480" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6209886" lon="-120.1619027"/>
+ <node id="1937595375" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5660615" lon="-120.1767380"/>
+ <node id="50311100" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:40Z" user="woodpeck_fixbot" uid="147510" lat="48.5119640" lon="-120.2595280"/>
+ <node id="50309937" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4038790" lon="-120.1417980"/>
+ <node id="50311044" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4867360" lon="-120.2205080"/>
+ <node id="1937595440" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5977604" lon="-120.1634735"/>
+ <node id="1937595427" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5934997" lon="-120.4143399"/>
+ <node id="50162537" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:42:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4799560" lon="-120.2025860"/>
+ <node id="1937595402" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:19Z" user="Wim L" uid="223681" lat="48.5834307" lon="-120.3936871"/>
+ <node id="1937595167" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4982991" lon="-120.1768212"/>
+ <node id="50079571" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:30:56Z" user="woodpeck_fixbot" uid="147510" lat="48.4493380" lon="-120.1493550"/>
+ <node id="1930069964" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4427215" lon="-120.1636983"/>
+ <node id="50311059" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4942230" lon="-120.2362490"/>
+ <node id="50309922" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:33:59Z" user="woodpeck_fixbot" uid="147510" lat="48.3921050" lon="-120.1367430"/>
+ <node id="1937595531" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6859225" lon="-120.1327966"/>
+ <node id="1937595434" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5947826" lon="-120.4161042"/>
+ <node id="1937595505" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6417480" lon="-120.1527039"/>
+ <node id="50289803" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:03:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4560140" lon="-120.1532950"/>
+ <node id="1937595547" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7719976" lon="-120.1181604"/>
+ <node id="1937595309" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5266582" lon="-120.3171562"/>
+ <node id="1937595537" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7144204" lon="-120.1246160"/>
+ <node id="1937595441" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5978649" lon="-120.4281272"/>
+ <node id="1937595205" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5036014" lon="-120.2663004"/>
+ <node id="1937595491" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6324470" lon="-120.1562326"/>
+ <node id="50268062" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:08:12Z" user="woodpeck_fixbot" uid="147510" lat="48.5375330" lon="-120.3183120"/>
+ <node id="1937595332" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5399996" lon="-120.3250951"/>
+ <node id="1937595514" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6557927" lon="-120.1460146"/>
+ <node id="1937595481" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6215962" lon="-120.1579077"/>
+ <node id="1937595200" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5030804" lon="-120.1844256"/>
+ <node id="1930069972" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:11Z" user="Wim L" uid="223681" lat="48.4517669" lon="-120.1645511"/>
+ <node id="1937595529" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6818625" lon="-120.1296968"/>
+ <node id="1937595540" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7438944" lon="-120.1371757"/>
+ <node id="1937595456" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6035823" lon="-120.4408963"/>
+ <node id="50084794" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:16:29Z" user="woodpeck_fixbot" uid="147510" lat="48.4619780" lon="-120.1622870"/>
+ <node id="1937595469" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6089427" lon="-120.1633339"/>
+ <node id="1937595259" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:07Z" user="Wim L" uid="223681" lat="48.5110574" lon="-120.1885341"/>
+ <node id="1937595304" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5258498" lon="-120.3065639"/>
+ <node id="1937595161" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4948736" lon="-120.2382543"/>
+ <node id="1937595328" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5372584" lon="-120.3273824"/>
+ <node id="1937595325" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5360416" lon="-120.3257953"/>
+ <node id="1937595509" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6510867" lon="-120.1496029"/>
+ <node id="50309939" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4062670" lon="-120.1420110"/>
+ <node id="1937595185" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5006714" lon="-120.1798740"/>
+ <node id="50132335" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:26:16Z" user="woodpeck_fixbot" uid="147510" lat="48.4870380" lon="-120.1894920"/>
+ <node id="1937595457" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6038763" lon="-120.1624590"/>
+ <node id="1937595317" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5318241" lon="-120.1875445"/>
+ <node id="50309920" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:44Z" user="woodpeck_fixbot" uid="147510" lat="48.3919070" lon="-120.1366090"/>
+ <node id="50310005" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4565440" lon="-120.1689170"/>
+ <node id="1937595417" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5888381" lon="-120.4012887"/>
+ <node id="50250205" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:07:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4610640" lon="-120.1899790"/>
+ <node id="1937595389" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5732705" lon="-120.3775965"/>
+ <node id="50311055" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4916150" lon="-120.2317420"/>
+ <node id="50309910" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:44Z" user="woodpeck_fixbot" uid="147510" lat="48.3836960" lon="-120.1331440"/>
+ <node id="1937595212" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5051807" lon="-120.1850605"/>
+ <node id="1937595319" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5327338" lon="-120.1877604"/>
+ <node id="1937595336" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5417813" lon="-120.1839004"/>
+ <node id="1937595348" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5464606" lon="-120.1859370"/>
+ <node id="50208800" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:03:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4540720" lon="-120.1512690"/>
+ <node id="1937595468" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6080831" lon="-120.1626339"/>
+ <node id="1937595180" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5005243" lon="-120.1808732"/>
+ <node id="50112022" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:20:55Z" user="woodpeck_fixbot" uid="147510" lat="48.5145520" lon="-120.2659360"/>
+ <node id="1930069970" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4464031" lon="-120.1595228"/>
+ <node id="1937595273" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5177454" lon="-120.1845109"/>
+ <node id="1937595495" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6344088" lon="-120.1558764"/>
+ <node id="50309942" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4076630" lon="-120.1422480"/>
+ <node id="1937595446" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.6006163" lon="-120.1653672"/>
+ <node id="1930069957" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4309019" lon="-120.1579949"/>
+ <node id="50309969" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4269890" lon="-120.1624790"/>
+ <node id="1930069912" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3776090" lon="-120.1190723"/>
+ <node id="1937595374" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5647805" lon="-120.1776817"/>
+ <node id="1937595415" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5881918" lon="-120.1679742"/>
+ <node id="1937595546" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7702608" lon="-120.1222942"/>
+ <node id="1930069963" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4414141" lon="-120.1626454"/>
+ <node id="1937595258" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:07Z" user="Wim L" uid="223681" lat="48.5109831" lon="-120.2813231"/>
+ <node id="2070970944" visible="true" version="1" changeset="14301298" timestamp="2012-12-17T02:19:29Z" user="pnorman" uid="355617" lat="48.5216873" lon="-120.2764161"/>
+ <node id="1930069969" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4450736" lon="-120.1591029"/>
+ <node id="1937595377" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5672890" lon="-120.3661421"/>
+ <node id="1937595463" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6050251" lon="-120.1646213"/>
+ <node id="50175851" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:40:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4816950" lon="-120.2049060"/>
+ <node id="1937595281" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5196205" lon="-120.1841779"/>
+ <node id="1937595512" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6549636" lon="-120.1477999"/>
+ <node id="1937595334" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5413219" lon="-120.1848857"/>
+ <node id="1937595465" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6054301" lon="-120.1642339"/>
+ <node id="1937595496" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6346563" lon="-120.1549251"/>
+ <node id="1937595357" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5538657" lon="-120.3382775"/>
+ <node id="1937595176" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5003036" lon="-120.1815115"/>
+ <node id="1937595264" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5126835" lon="-120.1858805"/>
+ <node id="1930069941" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4109212" lon="-120.1327939"/>
+ <node id="1937595517" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6605333" lon="-120.1417368"/>
+ <node id="1937595314" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5293939" lon="-120.1886828"/>
+ <node id="50310007" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4576530" lon="-120.1692500"/>
+ <node id="50309976" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4366270" lon="-120.1646010"/>
+ <node id="1937595363" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5554195" lon="-120.1833492"/>
+ <node id="1937595486" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6261159" lon="-120.1591318"/>
+ <node id="1937595388" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5732727" lon="-120.1733702"/>
+ <node id="50054995" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:14:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4260290" lon="-120.1616210"/>
+ <node id="50311117" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:59Z" user="woodpeck_fixbot" uid="147510" lat="48.5179070" lon="-120.2714510"/>
+ <node id="50311098" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.5110730" lon="-120.2584970"/>
+ <node id="1937595154" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4890249" lon="-120.1864749"/>
+ <node id="1937595253" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:07Z" user="Wim L" uid="223681" lat="48.5097963" lon="-120.1871800"/>
+ <node id="1937595421" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5905396" lon="-120.4075972"/>
+ <node id="1937595173" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4995496" lon="-120.1767934"/>
+ <node id="491334508" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4620620" lon="-120.1854890"/>
+ <node id="1937595308" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5263844" lon="-120.3082571"/>
+ <node id="50309914" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:44Z" user="woodpeck_fixbot" uid="147510" lat="48.3868740" lon="-120.1344850"/>
+ <node id="1937595169" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4988876" lon="-120.1765436"/>
+ <node id="1937595290" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5225984" lon="-120.1837061"/>
+ <node id="1937595398" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:19Z" user="Wim L" uid="223681" lat="48.5811449" lon="-120.3898350"/>
+ <node id="50271310" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:09:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4973360" lon="-120.1892750"/>
+ <node id="1937595356" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5534355" lon="-120.1858053"/>
+ <node id="50188417" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:45:06Z" user="woodpeck_fixbot" uid="147510" lat="48.4628870" lon="-120.1630650"/>
+ <node id="1937595443" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5992206" lon="-120.4282427"/>
+ <node id="1937595449" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6012197" lon="-120.4308516"/>
+ <node id="491334484" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4621210" lon="-120.1727100"/>
+ <node id="1937595260" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5115254" lon="-120.1875136"/>
+ <node id="50309956" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4177130" lon="-120.1499600"/>
+ <node id="1937595306" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:13Z" user="Wim L" uid="223681" lat="48.5260278" lon="-120.1888201"/>
+ <node id="50311051" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4887580" lon="-120.2283890"/>
+ <node id="1937595346" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5453642" lon="-120.1854546"/>
+ <node id="1937595450" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6014762" lon="-120.4323420"/>
+ <node id="1937595365" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5571050" lon="-120.1817760"/>
+ <node id="1937595203" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5033666" lon="-120.2649517"/>
+ <node id="1937595405" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5837085" lon="-120.1727791"/>
+ <node id="50309928" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:00Z" user="woodpeck_fixbot" uid="147510" lat="48.3966970" lon="-120.1402700"/>
+ <node id="50309990" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4515410" lon="-120.1663440"/>
+ <node id="1937595344" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5448865" lon="-120.1839837"/>
+ <node id="1937595526" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6732766" lon="-120.1355424"/>
+ <node id="1930069967" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4438855" lon="-120.1604588"/>
+ <node id="50225709" visible="true" version="3" changeset="14298131" timestamp="2012-12-16T19:41:46Z" user="pnorman" uid="355617" lat="48.4690563" lon="-120.1545017"/>
+ <node id="50310016" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4620610" lon="-120.1725130"/>
+ <node id="1937595158" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4920953" lon="-120.1886882"/>
+ <node id="50216429" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4879715" lon="-120.1778581"/>
+ <node id="1937595282" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5196389" lon="-120.1857598"/>
+ <node id="491334458" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4626340" lon="-120.1690260"/>
+ <node id="1937595285" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5214528" lon="-120.2981853"/>
+ <node id="50310012" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4614770" lon="-120.1718680"/>
+ <node id="1937595431" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5944315" lon="-120.4186562"/>
+ <node id="50261490" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4627393" lon="-120.1840872"/>
+ <node id="1930069939" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4059046" lon="-120.1307004"/>
+ <node id="1937595527" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6750975" lon="-120.1321485"/>
+ <node id="50311093" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.5083310" lon="-120.2564720"/>
+ <node id="491334468" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4620320" lon="-120.1690570"/>
+ <node id="50310000" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4558270" lon="-120.1685230"/>
+ <node id="50115874" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:26:21Z" user="woodpeck_fixbot" uid="147510" lat="48.4861220" lon="-120.2063520"/>
+ <node id="50268066" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:59:21Z" user="woodpeck_fixbot" uid="147510" lat="48.5359120" lon="-120.3162130"/>
+ <node id="1930069955" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4294664" lon="-120.1608487"/>
+ <node id="1937595476" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6174597" lon="-120.1631754"/>
+ <node id="50286578" visible="true" version="3" changeset="17421226" timestamp="2013-08-20T05:55:41Z" user="Ivan Komarov" uid="69864" lat="48.4446634" lon="-120.1480649"/>
+ <node id="50225667" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4876544" lon="-120.1772160"/>
+ <node id="1937595275" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5187012" lon="-120.2907628"/>
+ <node id="1937595373" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5642387" lon="-120.1784310"/>
+ <node id="50271302" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:16:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4913300" lon="-120.1926100"/>
+ <node id="1930069892" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:39Z" user="Wim L" uid="223681" lat="48.3698094" lon="-120.1183832"/>
+ <node id="1930069879" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:38Z" user="Wim L" uid="223681" lat="48.3687657" lon="-120.1190908"/>
+ <node id="50226941" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4634301" lon="-120.1938538"/>
+ <node id="1937595338" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5427500" lon="-120.3227325"/>
+ <node id="1930069949" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4195557" lon="-120.1425366"/>
+ <node id="1937595128" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4786780" lon="-120.2041630"/>
+ <node id="1930070085" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:19Z" user="Wim L" uid="223681" lat="48.4559981" lon="-120.1627137"/>
+ <node id="1937595339" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5432972" lon="-120.1847053"/>
+ <node id="1937595494" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6339130" lon="-120.1565033"/>
+ <node id="50309913" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:33:59Z" user="woodpeck_fixbot" uid="147510" lat="48.3845440" lon="-120.1336650"/>
+ <node id="50202439" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:01:35Z" user="woodpeck_fixbot" uid="147510" lat="48.3727780" lon="-120.1246340"/>
+ <node id="1930069950" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4231287" lon="-120.1466776"/>
+ <node id="1937595320" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5334235" lon="-120.3221200"/>
+ <node id="2070468269" visible="true" version="1" changeset="14298131" timestamp="2012-12-16T19:41:43Z" user="pnorman" uid="355617" lat="48.4704671" lon="-120.1567208"/>
+ <node id="1930069959" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4380561" lon="-120.1553970"/>
+ <node id="50309981" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4448780" lon="-120.1645480"/>
+ <node id="50250207" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4610640" lon="-120.1907860"/>
+ <node id="50091300" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:32:20Z" user="woodpeck_fixbot" uid="147510" lat="48.4871730" lon="-120.1879020"/>
+ <node id="50311103" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:59Z" user="woodpeck_fixbot" uid="147510" lat="48.5129700" lon="-120.2612460"/>
+ <node id="1930069973" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:11Z" user="Wim L" uid="223681" lat="48.4532083" lon="-120.1643082"/>
+ <node id="1937595416" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5887436" lon="-120.4026565"/>
+ <node id="50268076" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:59:21Z" user="woodpeck_fixbot" uid="147510" lat="48.5330800" lon="-120.3088200"/>
+ <node id="1937595198" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5027126" lon="-120.1829824"/>
+ <node id="1930069944" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4149336" lon="-120.1433163"/>
+ <node id="1937595341" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5439495" lon="-120.1844832"/>
+ <node id="1937595140" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4810816" lon="-120.2194800"/>
+ <node id="1937595520" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6632011" lon="-120.1383065"/>
+ <node id="1937595420" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5900535" lon="-120.4063723"/>
+ <node id="1930069946" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4159664" lon="-120.1407539"/>
+ <node id="1937595313" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5292920" lon="-120.3218814"/>
+ <node id="50133973" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:37:48Z" user="woodpeck_fixbot" uid="147510" lat="48.4676500" lon="-120.2077550"/>
+ <node id="50112256" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:20:59Z" user="woodpeck_fixbot" uid="147510" lat="48.5343170" lon="-120.3124940"/>
+ <node id="1937595208" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5043417" lon="-120.2730074"/>
+ <node id="1937595462" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6047028" lon="-120.1626339"/>
+ <node id="1937595507" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6473474" lon="-120.1518165"/>
+ <node id="1937595262" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5121319" lon="-120.1853532"/>
+ <node id="50133977" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:26:42Z" user="woodpeck_fixbot" uid="147510" lat="48.4670340" lon="-120.2034880"/>
+ <node id="1937595516" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6590621" lon="-120.1438934"/>
+ <node id="1930069911" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3766801" lon="-120.1195751"/>
+ <node id="1937595204" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5035884" lon="-120.2641445"/>
+ <node id="1937595429" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5937563" lon="-120.4230456"/>
+ <node id="50309963" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4220770" lon="-120.1571960"/>
+ <node id="1937595302" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5253260" lon="-120.1880351"/>
+ <node id="1930069938" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4047013" lon="-120.1319004"/>
+ <node id="1930069952" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4239334" lon="-120.1539883"/>
+ <node id="50199090" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:00:57Z" user="woodpeck_fixbot" uid="147510" lat="48.4880400" lon="-120.1825770"/>
+ <node id="1937595199" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5028057" lon="-120.2579426"/>
+ <node id="1937595160" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4948004" lon="-120.1846847"/>
+ <node id="1937595453" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6025096" lon="-120.1635895"/>
+ <node id="1937595499" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6374175" lon="-120.1542761"/>
+ <node id="1937595143" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4821982" lon="-120.2211923"/>
+ <node id="50309997" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4551960" lon="-120.1681960"/>
+ <node id="491334492" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4625370" lon="-120.1802400"/>
+ <node id="50311105" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:40Z" user="woodpeck_fixbot" uid="147510" lat="48.5132440" lon="-120.2621050"/>
+ <node id="1937595383" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5713289" lon="-120.3790637"/>
+ <node id="1937595437" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5957516" lon="-120.1638485"/>
+ <node id="1930069915" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3807970" lon="-120.1282635"/>
+ <node id="1937595197" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5026491" lon="-120.2596358"/>
+ <node id="50070502" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:53:05Z" user="woodpeck_fixbot" uid="147510" lat="48.3751090" lon="-120.1261920"/>
+ <node id="50185406" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:44:02Z" user="woodpeck_fixbot" uid="147510" lat="48.3776900" lon="-120.1284960"/>
+ <node id="1937595508" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6499889" lon="-120.1499211"/>
+ <node id="1937595333" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5406880" lon="-120.1852881"/>
+ <node id="1937595482" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6225778" lon="-120.1582613"/>
+ <node id="50289784" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4457810" lon="-120.1492510"/>
+ <node id="1937595125" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4783648" lon="-120.2056987"/>
+ <node id="50298236" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:27:28Z" user="woodpeck_fixbot" uid="147510" lat="48.4389800" lon="-120.1649090"/>
+ <node id="50309926" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.3952580" lon="-120.1397920"/>
+ <node id="50091294" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:21:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4881320" lon="-120.1881420"/>
+ <node id="50311043" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4864620" lon="-120.2187900"/>
+ <node id="1937595321" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5344745" lon="-120.3221200"/>
+ <node id="50261485" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:56Z" user="Wim L" uid="223681" lat="48.4629914" lon="-120.1842802"/>
+ <node id="50311108" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:59Z" user="woodpeck_fixbot" uid="147510" lat="48.5142730" lon="-120.2646820"/>
+ <node id="1937595501" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6396826" lon="-120.1543089"/>
+ <node id="1937595536" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7046873" lon="-120.1251361"/>
+ <node id="1937595400" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:19Z" user="Wim L" uid="223681" lat="48.5832786" lon="-120.1689543"/>
+ <node id="1937595521" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6649843" lon="-120.1372316"/>
+ <node id="1937595354" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5509425" lon="-120.1835232"/>
+ <node id="50309971" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4278800" lon="-120.1630610"/>
+ <node id="50309931" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.3981390" lon="-120.1404530"/>
+ <node id="1937595385" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5718670" lon="-120.1730340"/>
+ <node id="491334476" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4621100" lon="-120.1724500"/>
+ <node id="1937595351" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5495915" lon="-120.1834251"/>
+ <node id="1937608672" visible="true" version="1" changeset="13292648" timestamp="2012-09-29T06:11:38Z" user="Wim L" uid="223681" lat="48.5205829" lon="-120.1858849"/>
+ <node id="50309965" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4255040" lon="-120.1609700"/>
+ <node id="1930069925" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3864943" lon="-120.1309698"/>
+ <node id="1937595510" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6538543" lon="-120.1495676"/>
+ <node id="1930069914" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3797118" lon="-120.1198893"/>
+ <node id="1930069910" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:39Z" user="Wim L" uid="223681" lat="48.3746769" lon="-120.1216001"/>
+ <node id="1937595126" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4785392" lon="-120.2114749">
+  <tag k="waterway" v="weir"/>
+ </node>
+ <node id="1937595503" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6399337" lon="-120.1523203"/>
+ <node id="1937595287" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5220396" lon="-120.3005086"/>
+ <node id="50309996" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4543740" lon="-120.1679560"/>
+ <node id="50109558" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:25:12Z" user="woodpeck_fixbot" uid="147510" lat="48.4634690" lon="-120.1635640"/>
+ <node id="1937595406" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5846925" lon="-120.3969639"/>
+ <node id="50128144" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:25:08Z" user="woodpeck_fixbot" uid="147510" lat="48.4501620" lon="-120.1493790"/>
+ <node id="1930069896" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:39Z" user="Wim L" uid="223681" lat="48.3704708" lon="-120.1192257"/>
+ <node id="50311046" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4874660" lon="-120.2257990"/>
+ <node id="1937595318" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5322251" lon="-120.3231223"/>
+ <node id="1937595522" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6697279" lon="-120.1369566"/>
+ <node id="50309958" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.4189920" lon="-120.1514340"/>
+ <node id="50161432" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:36:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4556070" lon="-120.1684020"/>
+ <node id="491334496" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4620660" lon="-120.1817880"/>
+ <node id="50310011" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4603350" lon="-120.1708380"/>
+ <node id="1930069940" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4080156" lon="-120.1305638"/>
+ <node id="1937595467" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:24Z" user="Wim L" uid="223681" lat="48.6064715" lon="-120.1632714"/>
+ <node id="1937595413" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5875604" lon="-120.1678858"/>
+ <node id="50079594" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:15:07Z" user="woodpeck_fixbot" uid="147510" lat="48.4495980" lon="-120.1493630"/>
+ <node id="1930069958" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4323078" lon="-120.1572313"/>
+ <node id="50309946" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4106570" lon="-120.1437030"/>
+ <node id="50271304" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T18:09:38Z" user="woodpeck_fixbot" uid="147510" lat="48.4939560" lon="-120.1915090"/>
+ <node id="50311072" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:39Z" user="woodpeck_fixbot" uid="147510" lat="48.5010320" lon="-120.2511980"/>
+ <node id="491334473" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4620930" lon="-120.1717150"/>
+ <node id="1937595353" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5508615" lon="-120.3340592"/>
+ <node id="50250200" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:07:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4604190" lon="-120.1897150"/>
+ <node id="1930069966" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4435094" lon="-120.1628074"/>
+ <node id="1937595381" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5705385" lon="-120.3688396"/>
+ <node id="1937595372" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5633203" lon="-120.1798603"/>
+ <node id="1930069960" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4396680" lon="-120.1553565"/>
+ <node id="1937595315" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5300697" lon="-120.1876230"/>
+ <node id="50250198" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:56:08Z" user="woodpeck_fixbot" uid="147510" lat="48.4588710" lon="-120.1881010"/>
+ <node id="1937595474" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6157769" lon="-120.1622208"/>
+ <node id="50311119" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.5184780" lon="-120.2720690"/>
+ <node id="50311113" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:59Z" user="woodpeck_fixbot" uid="147510" lat="48.5155080" lon="-120.2677400"/>
+ <node id="1937595355" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5528911" lon="-120.1851520"/>
+ <node id="1937595187" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5007817" lon="-120.1790137"/>
+ <node id="1930069931" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3943183" lon="-120.1379776"/>
+ <node id="50289799" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:10:14Z" user="woodpeck_fixbot" uid="147510" lat="48.4549630" lon="-120.1523000"/>
+ <node id="1937595268" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5156312" lon="-120.1878136"/>
+ <node id="1937595286" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5219183" lon="-120.1851215"/>
+ <node id="1937595206" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5037240" lon="-120.1852859"/>
+ <node id="1937595153" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:02Z" user="Wim L" uid="223681" lat="48.4886938" lon="-120.1851705"/>
+ <node id="50311142" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:19:30Z" user="pnorman" uid="355617" lat="48.5285349" lon="-120.2943327"/>
+ <node id="1937595369" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5603651" lon="-120.3504572"/>
+ <node id="50223137" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4631911" lon="-120.1936028"/>
+ <node id="1937595130" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:01Z" user="Wim L" uid="223681" lat="48.4793790" lon="-120.2155819"/>
+ <node id="1937595178" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5003956" lon="-120.1819278"/>
+ <node id="50268064" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:14:55Z" user="woodpeck_fixbot" uid="147510" lat="48.5366430" lon="-120.3175200"/>
+ <node id="50184171" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4850710" lon="-120.2041721"/>
+ <node id="1937595272" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5175616" lon="-120.1857043"/>
+ <node id="50162535" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:38:20Z" user="woodpeck_fixbot" uid="147510" lat="48.4796820" lon="-120.2029150"/>
+ <node id="50311121" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:41Z" user="woodpeck_fixbot" uid="147510" lat="48.5187070" lon="-120.2724470"/>
+ <node id="50311054" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4899820" lon="-120.2297510"/>
+ <node id="1937595387" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5727353" lon="-120.3701538"/>
+ <node id="1937595280" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5195286" lon="-120.1848440"/>
+ <node id="1930069917" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3810683" lon="-120.1205531"/>
+ <node id="1930069918" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:21:40Z" user="Wim L" uid="223681" lat="48.3812718" lon="-120.1237190"/>
+ <node id="1937595190" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5010576" lon="-120.2548319"/>
+ <node id="50031081" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:05:49Z" user="woodpeck_fixbot" uid="147510" lat="48.4602830" lon="-120.1867530"/>
+ <node id="1930069968" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4443898" lon="-120.1593701"/>
+ <node id="50310009" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:54Z" user="woodpeck_fixbot" uid="147510" lat="48.4603040" lon="-120.1708190"/>
+ <node id="50250215" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:07:01Z" user="woodpeck_fixbot" uid="147510" lat="48.4615800" lon="-120.1923870"/>
+ <node id="1937595452" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6016680" lon="-120.1645794"/>
+ <node id="1937595541" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7485964" lon="-120.1356772"/>
+ <node id="1930069962" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4403127" lon="-120.1565173"/>
+ <node id="1937595399" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:19Z" user="Wim L" uid="223681" lat="48.5828651" lon="-120.1749790"/>
+ <node id="1937595284" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.5209329" lon="-120.1856307"/>
+ <node id="1937595451" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6016382" lon="-120.4393855"/>
+ <node id="1937595498" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6360089" lon="-120.1545564"/>
+ <node id="1937595215" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5074779" lon="-120.2817431"/>
+ <node id="50058541" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:14:57Z" user="woodpeck_fixbot" uid="147510" lat="48.5109410" lon="-120.2584090"/>
+ <node id="1937595157" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4910401" lon="-120.1882654"/>
+ <node id="1937595528" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.6785613" lon="-120.1297968"/>
+ <node id="1937595432" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5945420" lon="-120.1640934"/>
+ <node id="50311077" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:40Z" user="woodpeck_fixbot" uid="147510" lat="48.5025280" lon="-120.2529730"/>
+ <node id="50309918" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:06:53Z" user="woodpeck_fixbot" uid="147510" lat="48.3882730" lon="-120.1349390"/>
+ <node id="50309954" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:00Z" user="woodpeck_fixbot" uid="147510" lat="48.4169130" lon="-120.1493090"/>
+ <node id="50311102" visible="true" version="2" changeset="2124740" timestamp="2009-08-13T00:07:04Z" user="woodpeck_fixbot" uid="147510" lat="48.5126040" lon="-120.2604550"/>
+ <node id="1937595513" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6551154" lon="-120.1470752"/>
+ <node id="1937595439" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5968338" lon="-120.4276941"/>
+ <node id="1930069926" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3870534" lon="-120.1315326"/>
+ <node id="1930070099" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4588718" lon="-120.1684022"/>
+ <node id="1937595500" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6393672" lon="-120.1545475"/>
+ <node id="50311095" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.5098390" lon="-120.2576730"/>
+ <node id="50309994" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4536200" lon="-120.1675450"/>
+ <node id="1937595345" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.5454837" lon="-120.3258261"/>
+ <node id="1937595412" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5873032" lon="-120.1671611"/>
+ <node id="1930069954" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4283459" lon="-120.1618514"/>
+ <node id="50193678" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:46:44Z" user="woodpeck_fixbot" uid="147510" lat="48.4903970" lon="-120.1926700"/>
+ <node id="1937595349" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5474349" lon="-120.1855838"/>
+ <node id="1930069965" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4433483" lon="-120.1634823"/>
+ <node id="1930069953" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4264303" lon="-120.1603962"/>
+ <node id="1937595488" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6284569" lon="-120.1584200"/>
+ <node id="50091228" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:04Z" user="woodpeck_fixbot" uid="147510" lat="48.4897310" lon="-120.1927130"/>
+ <node id="1937595489" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6295226" lon="-120.1575138"/>
+ <node id="50250217" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:56:08Z" user="woodpeck_fixbot" uid="147510" lat="48.4620960" lon="-120.1926640"/>
+ <node id="1937595166" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4975083" lon="-120.1778203"/>
+ <node id="1937595428" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:21Z" user="Wim L" uid="223681" lat="48.5935268" lon="-120.4205753"/>
+ <node id="50250220" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T09:05:30Z" user="woodpeck_fixbot" uid="147510" lat="48.4635150" lon="-120.1937350"/>
+ <node id="491334498" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4618540" lon="-120.1820300"/>
+ <node id="1930069934" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.4003790" lon="-120.1388193"/>
+ <node id="1937595335" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:15Z" user="Wim L" uid="223681" lat="48.5414074" lon="-120.3230279"/>
+ <node id="50199095" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4882669" lon="-120.1780750"/>
+ <node id="1930070098" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4574539" lon="-120.1666079"/>
+ <node id="491334463" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4620260" lon="-120.1687790"/>
+ <node id="1937595159" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.4930207" lon="-120.1885053"/>
+ <node id="50151027" visible="true" version="2" changeset="3296733" timestamp="2009-12-05T17:32:15Z" user="woodpeck_fixbot" uid="147510" lat="48.4622540" lon="-120.1727260"/>
+ <node id="1937595448" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:22Z" user="Wim L" uid="223681" lat="48.6010441" lon="-120.4368947"/>
+ <node id="1937595378" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5683290" lon="-120.1737596"/>
+ <node id="1937595403" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:19Z" user="Wim L" uid="223681" lat="48.5835101" lon="-120.1744290"/>
+ <node id="1937595312" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5287444" lon="-120.3198732"/>
+ <node id="50131098" visible="true" version="4" changeset="13525402" timestamp="2012-10-16T22:27:49Z" user="lxbarth" uid="589596" lat="48.4694808" lon="-120.2033612"/>
+ <node id="1937595464" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:46Z" user="Wim L" uid="223681" lat="48.6049399" lon="-120.4429936"/>
+ <node id="50271315" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:16:10Z" user="woodpeck_fixbot" uid="147510" lat="48.4981360" lon="-120.1874200"/>
+ <node id="50225669" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:52Z" user="Wim L" uid="223681" lat="48.4876939" lon="-120.1769729"/>
+ <node id="1937595493" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6335869" lon="-120.1565576"/>
+ <node id="1937595193" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:05Z" user="Wim L" uid="223681" lat="48.5016968" lon="-120.2618016"/>
+ <node id="1937595408" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:20Z" user="Wim L" uid="223681" lat="48.5859691" lon="-120.3977483"/>
+ <node id="1937595477" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:25Z" user="Wim L" uid="223681" lat="48.6207316" lon="-120.1623269"/>
+ <node id="50311049" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:39Z" user="woodpeck_fixbot" uid="147510" lat="48.4880590" lon="-120.2272080"/>
+ <node id="50309983" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:45Z" user="woodpeck_fixbot" uid="147510" lat="48.4465850" lon="-120.1644930"/>
+ <node id="50216427" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4876446" lon="-120.1776582"/>
+ <node id="50226065" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T00:58:45Z" user="woodpeck_fixbot" uid="147510" lat="48.5375700" lon="-120.3183250"/>
+ <node id="1930069927" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3880485" lon="-120.1321284"/>
+ <node id="1930070101" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681" lat="48.4626809" lon="-120.1689689"/>
+ <node id="50106769" visible="true" version="2" changeset="2124740" timestamp="2009-08-12T23:34:19Z" user="woodpeck_fixbot" uid="147510" lat="48.4139600" lon="-120.1471440"/>
+ <node id="1937595291" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5229844" lon="-120.1842889"/>
+ <node id="1937595548" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:29Z" user="Wim L" uid="223681" lat="48.7818702" lon="-120.1090411">
+  <tag k="FIXME" v="continues"/>
+ </node>
+ <node id="1937595300" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:09Z" user="Wim L" uid="223681" lat="48.5252090" lon="-120.1872109"/>
+ <node id="1930070088" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:19Z" user="Wim L" uid="223681" lat="48.4566564" lon="-120.1642026"/>
+ <node id="50310002" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:02Z" user="woodpeck_fixbot" uid="147510" lat="48.4565060" lon="-120.1688960"/>
+ <node id="1937595518" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6620784" lon="-120.1396814"/>
+ <node id="50216431" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:51Z" user="Wim L" uid="223681" lat="48.4881454" lon="-120.1779913"/>
+ <node id="1937595359" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:17Z" user="Wim L" uid="223681" lat="48.5546489" lon="-120.3430109"/>
+ <node id="50311140" visible="true" version="2" changeset="3137735" timestamp="2009-11-17T01:34:41Z" user="woodpeck_fixbot" uid="147510" lat="48.5270020" lon="-120.2902860"/>
+ <node id="1937595330" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:14Z" user="Wim L" uid="223681" lat="48.5384752" lon="-120.3273824"/>
+ <node id="1937595175" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:04Z" user="Wim L" uid="223681" lat="48.5002668" lon="-120.1777925"/>
+ <node id="50091292" visible="true" version="2" changeset="3425423" timestamp="2009-12-22T08:55:05Z" user="woodpeck_fixbot" uid="147510" lat="48.4885210" lon="-120.1886230"/>
+ <node id="50311063" visible="true" version="2" changeset="3297413" timestamp="2009-12-05T18:20:58Z" user="woodpeck_fixbot" uid="147510" lat="48.4984670" lon="-120.2455670"/>
+ <node id="1937595277" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:08Z" user="Wim L" uid="223681" lat="48.5191609" lon="-120.1836228"/>
+ <node id="1930069951" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:10Z" user="Wim L" uid="223681" lat="48.4239334" lon="-120.1488693"/>
+ <node id="491334487" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:21Z" user="TIGERcnl" uid="120146" lat="48.4619670" lon="-120.1771650"/>
+ <node id="1937595519" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:28Z" user="Wim L" uid="223681" lat="48.6620949" lon="-120.1405564"/>
+ <node id="1937595376" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:18Z" user="Wim L" uid="223681" lat="48.5668650" lon="-120.1757528"/>
+ <node id="1930069929" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:09Z" user="Wim L" uid="223681" lat="48.3904822" lon="-120.1325797"/>
+ <node id="50226945" visible="true" version="3" changeset="14301298" timestamp="2012-12-17T02:12:13Z" user="pnorman" uid="355617" lat="48.4635531" lon="-120.1908928"/>
+ <node id="491334480" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:08:20Z" user="TIGERcnl" uid="120146" lat="48.4621120" lon="-120.1725020"/>
+ <way id="6091729" visible="true" version="1" changeset="417421" timestamp="2007-09-13T03:53:56Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50253600"/>
+  <nd ref="50253602"/>
+  <nd ref="50137292"/>
+  <nd ref="50137371"/>
+  <nd ref="50253605"/>
+  <nd ref="50253608"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="National Fish Hatchery Entranc"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="National Fish Hatchery Entranc"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157367277:157367285:157367286:157326369"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="40512274" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:50Z" user="TIGERcnl" uid="120146">
+  <nd ref="491338010"/>
+  <nd ref="491338012"/>
+  <nd ref="491338015"/>
+  <nd ref="491338019"/>
+  <nd ref="491338020"/>
+  <nd ref="491338023"/>
+  <nd ref="491338026"/>
+  <nd ref="491338028"/>
+  <nd ref="491338031"/>
+  <nd ref="491338039"/>
+  <nd ref="491338042"/>
+  <nd ref="491338045"/>
+  <nd ref="491338048"/>
+  <nd ref="491338050"/>
+  <nd ref="491338010"/>
+  <tag k="admin_level" v="8"/>
+  <tag k="boundary" v="administrative"/>
+  <tag k="created_by" v="polyshp2osm-multipoly"/>
+  <tag k="source" v="TIGER/Line® 2008 Place Shapefiles (http://www.census.gov/geo/www/tiger/)"/>
+ </way>
+ <way id="6080315" visible="true" version="1" changeset="415417" timestamp="2007-09-12T23:30:36Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50122894"/>
+  <nd ref="50122895"/>
+  <nd ref="50122897"/>
+  <nd ref="50122898"/>
+  <nd ref="50122899"/>
+  <nd ref="50122900"/>
+  <nd ref="50122903"/>
+  <nd ref="50122905"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157378036"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6073756" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T15:49:03Z" user="balrog-kun" uid="20587">
+  <nd ref="50031061"/>
+  <nd ref="50031062"/>
+  <nd ref="50031064"/>
+  <nd ref="50031066"/>
+  <nd ref="50031068"/>
+  <nd ref="50031071"/>
+  <nd ref="50031073"/>
+  <nd ref="50031075"/>
+  <nd ref="50031077"/>
+  <nd ref="50031079"/>
+  <nd ref="50031081"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Palamino Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Palamino"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358073:157358076:157366892:157366893"/>
+ </way>
+ <way id="6089456" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:00:28Z" user="balrog-kun" uid="20587">
+  <nd ref="50222970"/>
+  <nd ref="50222972"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Dibble Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Dibble"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359600"/>
+ </way>
+ <way id="6088955" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:41Z" user="Wim L" uid="223681">
+  <nd ref="50216419"/>
+  <nd ref="50216421"/>
+  <nd ref="50216423"/>
+  <nd ref="50216425"/>
+  <nd ref="50216427"/>
+  <nd ref="50216429"/>
+  <nd ref="50216431"/>
+  <nd ref="50199095"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="East Chewuch Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Chewuch"/>
+  <tag k="tiger:name_direction_prefix" v="E"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6088629" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T15:59:19Z" user="balrog-kun" uid="20587">
+  <nd ref="50212353"/>
+  <nd ref="50034353"/>
+  <nd ref="50212355"/>
+  <nd ref="50212357"/>
+  <nd ref="50212359"/>
+  <nd ref="50212361"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Corral Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Corral"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326337:157359604:157359605:157326339"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6095241" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:10:51Z" user="balrog-kun" uid="20587">
+  <nd ref="50303124"/>
+  <nd ref="50222970"/>
+  <nd ref="50303126"/>
+  <nd ref="50303128"/>
+  <nd ref="50303130"/>
+  <nd ref="50303132"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Waring Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Waring"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359598"/>
+ </way>
+ <way id="6090763" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:02:41Z" user="balrog-kun" uid="20587">
+  <nd ref="50242133"/>
+  <nd ref="50242135"/>
+  <nd ref="50242137"/>
+  <nd ref="50242138"/>
+  <nd ref="50242139"/>
+  <nd ref="50116252"/>
+  <nd ref="50242142"/>
+  <nd ref="50199090"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="South Maughan River Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Maughan River"/>
+  <tag k="tiger:name_direction_prefix" v="S"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157375752:157359703"/>
+ </way>
+ <way id="6094314" visible="true" version="4" changeset="14298131" timestamp="2012-12-16T19:41:44Z" user="pnorman" uid="355617">
+  <nd ref="50286578"/>
+  <nd ref="50159213"/>
+  <nd ref="50289783"/>
+  <nd ref="50289784"/>
+  <nd ref="50079571"/>
+  <nd ref="50079594"/>
+  <nd ref="50128144"/>
+  <nd ref="50244682"/>
+  <nd ref="2070468265"/>
+  <nd ref="50208800"/>
+  <nd ref="50289799"/>
+  <nd ref="50053227"/>
+  <nd ref="50289803"/>
+  <nd ref="50289805"/>
+  <nd ref="50109002"/>
+  <nd ref="50289808"/>
+  <nd ref="50289810"/>
+  <nd ref="50108975"/>
+  <nd ref="50289813"/>
+  <nd ref="50289814"/>
+  <nd ref="50260834"/>
+  <nd ref="50289817"/>
+  <nd ref="50109743"/>
+  <nd ref="50147863"/>
+  <nd ref="50084794"/>
+  <nd ref="50188417"/>
+  <nd ref="50109558"/>
+  <nd ref="50053583"/>
+  <nd ref="50289819"/>
+  <nd ref="50289821"/>
+  <nd ref="50289823"/>
+  <nd ref="50289825"/>
+  <nd ref="50289827"/>
+  <nd ref="50211027"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="East Twisp-Winthrop Road"/>
+  <tag k="source" v="TIGER 2005"/>
+ </way>
+ <way id="6094882" visible="true" version="4" changeset="6293041" timestamp="2010-11-05T03:44:49Z" user="jackpack" uid="359574">
+  <nd ref="50131083"/>
+  <nd ref="50298267"/>
+  <nd ref="50298268"/>
+  <nd ref="50298269"/>
+  <nd ref="50298270"/>
+  <nd ref="50298271"/>
+  <nd ref="50298272"/>
+  <nd ref="50298273"/>
+  <nd ref="50298274"/>
+  <nd ref="50298275"/>
+  <nd ref="50253600"/>
+  <nd ref="50298276"/>
+  <nd ref="50298277"/>
+  <nd ref="50298278"/>
+  <nd ref="50298279"/>
+  <nd ref="50220738"/>
+  <nd ref="50230397"/>
+  <nd ref="50298280"/>
+  <nd ref="50167029"/>
+  <nd ref="50298281"/>
+  <nd ref="50231953"/>
+  <nd ref="50298282"/>
+  <nd ref="50139116"/>
+  <nd ref="50224552"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="Twin Lakes Road"/>
+  <tag k="name_1" v="White Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Twin Lakes"/>
+  <tag k="tiger:name_base_1" v="White"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:name_type_1" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157362445:157379663"/>
+ </way>
+ <way id="6092559" visible="true" version="2" changeset="13228588" timestamp="2012-09-24T04:22:27Z" user="Wim L" uid="223681">
+  <nd ref="50264865"/>
+  <nd ref="50264866"/>
+  <nd ref="50249289"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="McLean"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="McLean"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6077339" visible="true" version="1" changeset="415417" timestamp="2007-09-12T22:03:13Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50082832"/>
+  <nd ref="50082834"/>
+  <nd ref="50082837"/>
+  <nd ref="50082839"/>
+  <nd ref="50082842"/>
+  <nd ref="50082843"/>
+  <nd ref="50082845"/>
+  <nd ref="50082847"/>
+  <nd ref="50082849"/>
+  <nd ref="50082851"/>
+  <nd ref="50082853"/>
+  <nd ref="50082855"/>
+  <nd ref="50082857"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326850:157326326"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="182640369" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:23Z" user="Wim L" uid="223681">
+  <nd ref="1930070118"/>
+  <nd ref="1930070116"/>
+  <nd ref="1930070110"/>
+  <nd ref="1930070108"/>
+  <nd ref="1930070106"/>
+  <nd ref="1930070104"/>
+  <nd ref="1930070103"/>
+  <nd ref="1930070102"/>
+  <nd ref="1930070101"/>
+  <nd ref="1930070100"/>
+  <nd ref="1930070099"/>
+  <nd ref="1930070098"/>
+  <nd ref="1930070088"/>
+  <nd ref="1930070085"/>
+  <nd ref="1930070084"/>
+  <nd ref="1930069973"/>
+  <nd ref="1930069972"/>
+  <nd ref="1930069971"/>
+  <nd ref="1930069970"/>
+  <nd ref="1930069969"/>
+  <nd ref="1930069968"/>
+  <nd ref="1930069967"/>
+  <nd ref="1930069966"/>
+  <nd ref="1930069965"/>
+  <nd ref="1930069964"/>
+  <nd ref="1930069963"/>
+  <nd ref="1930069962"/>
+  <nd ref="1930069961"/>
+  <nd ref="1930069960"/>
+  <nd ref="1930069959"/>
+  <nd ref="1930069958"/>
+  <nd ref="1930069957"/>
+  <nd ref="1930069955"/>
+  <nd ref="1930069954"/>
+  <nd ref="1930069953"/>
+  <nd ref="1930069952"/>
+  <nd ref="1930069951"/>
+  <nd ref="1930069950"/>
+  <nd ref="1930069949"/>
+  <nd ref="1930069947"/>
+  <nd ref="1930069946"/>
+  <nd ref="1930069945"/>
+  <nd ref="1930069944"/>
+  <nd ref="1930069943"/>
+  <nd ref="1930069942"/>
+  <nd ref="1930069941"/>
+  <nd ref="1930069940"/>
+  <nd ref="1930069939"/>
+  <nd ref="1930069938"/>
+  <nd ref="1930069937"/>
+  <nd ref="1930069936"/>
+  <nd ref="1930069935"/>
+  <nd ref="1930069934"/>
+  <nd ref="1930069933"/>
+  <nd ref="1930069932"/>
+  <nd ref="1930069931"/>
+  <nd ref="1930069930"/>
+  <nd ref="1930069929"/>
+  <nd ref="1930069928"/>
+  <nd ref="1930069927"/>
+  <nd ref="1930069926"/>
+  <nd ref="1930069925"/>
+  <nd ref="1930069924"/>
+  <nd ref="1930069921"/>
+  <nd ref="1930069919"/>
+  <nd ref="1930069915"/>
+  <nd ref="1930069916"/>
+  <nd ref="1930069918"/>
+  <nd ref="1930069920"/>
+  <nd ref="1930069917"/>
+  <nd ref="1930069914"/>
+  <nd ref="1930069913"/>
+  <nd ref="1930069912"/>
+  <nd ref="1930069911"/>
+  <nd ref="1930069910"/>
+  <nd ref="1930069909"/>
+  <nd ref="1930069908"/>
+  <nd ref="1930069896"/>
+  <nd ref="1930069892"/>
+  <nd ref="1930069887"/>
+  <nd ref="1930069879"/>
+  <tag k="name" v="Methow River"/>
+  <tag k="waterway" v="river"/>
+  <tag k="wikipedia" v="Methow_River"/>
+ </way>
+ <way id="6084607" visible="true" version="1" changeset="417064" timestamp="2007-09-13T00:54:46Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50162537"/>
+  <nd ref="50162571"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157370145"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6077858" visible="true" version="1" changeset="415417" timestamp="2007-09-12T22:22:42Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50091448"/>
+  <nd ref="50091449"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157367302"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="182640345" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:21Z" user="Wim L" uid="223681">
+  <nd ref="50249289"/>
+  <nd ref="50264868"/>
+  <nd ref="50220113"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="McLean"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="McLean"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6075245" visible="true" version="1" changeset="415001" timestamp="2007-09-12T21:10:23Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50053583"/>
+  <nd ref="50053585"/>
+  <nd ref="50053586"/>
+  <nd ref="50053588"/>
+  <nd ref="50053590"/>
+  <nd ref="50053592"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157368482:157368483"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6089574" visible="true" version="3" changeset="7848519" timestamp="2011-04-13T04:24:23Z" user="compdude" uid="282329">
+  <nd ref="50224572"/>
+  <nd ref="50224574"/>
+  <nd ref="50224538"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Riverside Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157367257"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_left_1" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6091910" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:04:32Z" user="balrog-kun" uid="20587">
+  <nd ref="50220101"/>
+  <nd ref="50256155"/>
+  <nd ref="50251672"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Perry Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Perry"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359631:157359632"/>
+ </way>
+ <way id="6085936" visible="true" version="1" changeset="417238" timestamp="2007-09-13T01:26:24Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50177295"/>
+  <nd ref="50177296"/>
+  <nd ref="50177298"/>
+  <nd ref="50177300"/>
+  <nd ref="50177302"/>
+  <nd ref="50177304"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157368500"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="182640341" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:20Z" user="Wim L" uid="223681">
+  <nd ref="50220095"/>
+  <nd ref="50220098"/>
+  <nd ref="50220099"/>
+  <nd ref="50220100"/>
+  <nd ref="50220101"/>
+  <nd ref="50220102"/>
+  <nd ref="50220105"/>
+  <nd ref="50220106"/>
+  <nd ref="50220109"/>
+  <nd ref="50220111"/>
+  <nd ref="50220112"/>
+  <nd ref="50220113"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="Castle Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Castle"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6081187" visible="true" version="1" changeset="417064" timestamp="2007-09-12T23:49:24Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50133973"/>
+  <nd ref="50133975"/>
+  <nd ref="50133977"/>
+  <nd ref="50133979"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358032"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6077850" visible="true" version="1" changeset="415417" timestamp="2007-09-12T22:22:26Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50091260"/>
+  <nd ref="50091292"/>
+  <nd ref="50091294"/>
+  <nd ref="50091296"/>
+  <nd ref="50091300"/>
+  <nd ref="50034094"/>
+  <nd ref="50091301"/>
+  <nd ref="50091304"/>
+  <nd ref="50091307"/>
+  <nd ref="50091308"/>
+  <nd ref="50091310"/>
+  <nd ref="50091313"/>
+  <nd ref="50091316"/>
+  <nd ref="50091318"/>
+  <nd ref="50091319"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157370124:157370125:157358294:157379227:157358289"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6074047" visible="true" version="1" changeset="415001" timestamp="2007-09-12T20:27:30Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50034333"/>
+  <nd ref="50034336"/>
+  <nd ref="50034339"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359606:157359607"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6092080" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:04:45Z" user="balrog-kun" uid="20587">
+  <nd ref="50251679"/>
+  <nd ref="50258506"/>
+  <nd ref="50256155"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Lince Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Lince"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359633"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_left_1" v="98862"/>
+  <tag k="tiger:zip_left_2" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6078479" visible="true" version="1" changeset="415417" timestamp="2007-09-12T22:47:30Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50100756"/>
+  <nd ref="50100757"/>
+  <nd ref="50100759"/>
+  <nd ref="50100761"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326354"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6095374" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:26Z" user="Wim L" uid="223681">
+  <nd ref="50224528"/>
+  <nd ref="50304669"/>
+  <nd ref="50220137"/>
+  <nd ref="50220852"/>
+  <nd ref="50304672"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Bridge Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Bridge"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6094464" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:09:20Z" user="balrog-kun" uid="20587">
+  <nd ref="50220126"/>
+  <nd ref="50243392"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Roses Hill Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Roses Hill"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359619"/>
+ </way>
+ <way id="6090078" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:27Z" user="Wim L" uid="223681">
+  <nd ref="1930070105"/>
+  <nd ref="50231702"/>
+  <nd ref="50231704"/>
+  <nd ref="50167737"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Cemetery Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Cemetery"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="182640343" visible="true" version="1" changeset="13228588" timestamp="2012-09-24T04:22:21Z" user="Wim L" uid="223681">
+  <nd ref="50249289"/>
+  <nd ref="50249291"/>
+  <nd ref="50249292"/>
+  <nd ref="50249295"/>
+  <nd ref="50224520"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="Main Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Main"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6095650" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:11:38Z" user="balrog-kun" uid="20587">
+  <nd ref="50134615"/>
+  <nd ref="50308615"/>
+  <nd ref="50308618"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Belsby Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Belsby"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326359"/>
+ </way>
+ <way id="6089269" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:44Z" user="Wim L" uid="223681">
+  <nd ref="50298278"/>
+  <nd ref="50220739"/>
+  <nd ref="50220742"/>
+  <nd ref="50220744"/>
+  <nd ref="50220747"/>
+  <nd ref="50220749"/>
+  <nd ref="50220751"/>
+  <nd ref="50220753"/>
+  <nd ref="50220755"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Sundown Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Sundown"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_left_1" v="98862"/>
+ </way>
+ <way id="6092948" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:06:08Z" user="balrog-kun" uid="20587">
+  <nd ref="50243388"/>
+  <nd ref="50270422"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Kenison Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Kenison"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359622"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="183387167" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:39Z" user="Wim L" uid="223681">
+  <nd ref="1937595548"/>
+  <nd ref="1937595547"/>
+  <nd ref="1937595546"/>
+  <nd ref="1937595545"/>
+  <nd ref="1937595544"/>
+  <nd ref="1937595543"/>
+  <nd ref="1937595542"/>
+  <nd ref="1937595541"/>
+  <nd ref="1937595540"/>
+  <nd ref="1937595539"/>
+  <nd ref="1937595538"/>
+  <nd ref="1937595537"/>
+  <nd ref="1937595536"/>
+  <nd ref="1937595535"/>
+  <nd ref="1937595534"/>
+  <nd ref="1937595533"/>
+  <nd ref="1937595532"/>
+  <nd ref="1937595531"/>
+  <nd ref="1937595530"/>
+  <nd ref="1937595529"/>
+  <nd ref="1937595528"/>
+  <nd ref="1937595527"/>
+  <nd ref="1937595526"/>
+  <nd ref="1937595525"/>
+  <nd ref="1937595524"/>
+  <nd ref="1937595523"/>
+  <nd ref="1937595522"/>
+  <nd ref="1937595521"/>
+  <nd ref="1937595520"/>
+  <nd ref="1937595518"/>
+  <nd ref="1937595519"/>
+  <nd ref="1937595517"/>
+  <nd ref="1937595516"/>
+  <nd ref="1937595515"/>
+  <nd ref="1937595514"/>
+  <nd ref="1937595513"/>
+  <nd ref="1937595512"/>
+  <nd ref="1937595511"/>
+  <nd ref="1937595510"/>
+  <nd ref="1937595509"/>
+  <nd ref="1937595508"/>
+  <nd ref="1937595507"/>
+  <nd ref="1937595506"/>
+  <nd ref="1937595505"/>
+  <nd ref="1937595504"/>
+  <nd ref="1937595503"/>
+  <nd ref="1937595502"/>
+  <nd ref="1937595501"/>
+  <nd ref="1937595500"/>
+  <nd ref="1937595499"/>
+  <nd ref="1937595498"/>
+  <nd ref="1937595497"/>
+  <nd ref="1937595496"/>
+  <nd ref="1937595495"/>
+  <nd ref="1937595494"/>
+  <nd ref="1937595493"/>
+  <nd ref="1937595492"/>
+  <nd ref="1937595491"/>
+  <nd ref="1937595490"/>
+  <nd ref="1937595489"/>
+  <nd ref="1937595488"/>
+  <nd ref="1937595487"/>
+  <nd ref="1937595486"/>
+  <nd ref="1937595485"/>
+  <nd ref="1937595484"/>
+  <nd ref="1937595483"/>
+  <nd ref="1937595482"/>
+  <nd ref="1937595481"/>
+  <nd ref="1937595478"/>
+  <nd ref="1937595479"/>
+  <nd ref="1937595480"/>
+  <nd ref="1937595477"/>
+  <nd ref="1937595476"/>
+  <nd ref="1937595475"/>
+  <nd ref="1937595474"/>
+  <nd ref="1937595473"/>
+  <nd ref="1937595472"/>
+  <nd ref="1937595471"/>
+  <nd ref="1937595470"/>
+  <nd ref="1937595469"/>
+  <nd ref="1937595468"/>
+  <nd ref="1937595467"/>
+  <nd ref="1937595466"/>
+  <nd ref="1937595465"/>
+  <nd ref="1937595463"/>
+  <nd ref="1937595460"/>
+  <nd ref="1937595458"/>
+  <nd ref="1937595461"/>
+  <nd ref="1937595462"/>
+  <nd ref="1937595459"/>
+  <nd ref="1937595457"/>
+  <nd ref="1937595455"/>
+  <nd ref="1937595453"/>
+  <nd ref="1937595452"/>
+  <nd ref="1937595446"/>
+  <nd ref="1937595444"/>
+  <nd ref="1937595442"/>
+  <nd ref="1937595440"/>
+  <nd ref="1937595438"/>
+  <nd ref="1937595437"/>
+  <nd ref="1937595432"/>
+  <nd ref="1937595426"/>
+  <nd ref="1937595423"/>
+  <nd ref="1937595419"/>
+  <nd ref="1937595415"/>
+  <nd ref="1937595413"/>
+  <nd ref="1937595412"/>
+  <nd ref="1937595410"/>
+  <nd ref="1937595409"/>
+  <nd ref="1937595407"/>
+  <nd ref="1937595404"/>
+  <nd ref="1937595400"/>
+  <nd ref="1937595401"/>
+  <nd ref="1937595405"/>
+  <nd ref="1937595403"/>
+  <nd ref="1937595399"/>
+  <nd ref="1937595397"/>
+  <nd ref="1937595394"/>
+  <nd ref="1937595392"/>
+  <nd ref="1937595388"/>
+  <nd ref="1937595385"/>
+  <nd ref="1937595380"/>
+  <nd ref="1937595379"/>
+  <nd ref="1937595378"/>
+  <nd ref="1937595376"/>
+  <nd ref="1937595375"/>
+  <nd ref="1937595374"/>
+  <nd ref="1937595373"/>
+  <nd ref="1937595372"/>
+  <nd ref="1937595371"/>
+  <nd ref="1937595368"/>
+  <nd ref="1937595367"/>
+  <nd ref="1937595365"/>
+  <nd ref="1937595363"/>
+  <nd ref="1937595360"/>
+  <nd ref="1937595358"/>
+  <nd ref="1937595356"/>
+  <nd ref="1937595355"/>
+  <nd ref="1937595354"/>
+  <nd ref="1937595351"/>
+  <nd ref="1937595350"/>
+  <nd ref="1937595349"/>
+  <nd ref="1937595348"/>
+  <nd ref="1937595347"/>
+  <nd ref="1937595346"/>
+  <nd ref="1937595344"/>
+  <nd ref="1937595342"/>
+  <nd ref="1937595341"/>
+  <nd ref="1937595339"/>
+  <nd ref="1937595337"/>
+  <nd ref="1937595336"/>
+  <nd ref="1937595334"/>
+  <nd ref="1937595333"/>
+  <nd ref="1937595331"/>
+  <nd ref="1937595329"/>
+  <nd ref="1937595327"/>
+  <nd ref="1937595326"/>
+  <nd ref="1937595324"/>
+  <nd ref="1937595322"/>
+  <nd ref="1937595319"/>
+  <nd ref="1937595317"/>
+  <nd ref="1937595316"/>
+  <nd ref="1937595315"/>
+  <nd ref="1937595314"/>
+  <nd ref="1937595311"/>
+  <nd ref="1937595310"/>
+  <nd ref="1937595306"/>
+  <nd ref="1937595305"/>
+  <nd ref="1937595303"/>
+  <nd ref="1937595299"/>
+  <nd ref="1937595302"/>
+  <nd ref="1937595300"/>
+  <nd ref="1937595297"/>
+  <nd ref="1937595294"/>
+  <nd ref="1937595292"/>
+  <nd ref="1937595293"/>
+  <nd ref="1937595291"/>
+  <nd ref="1937595290"/>
+  <nd ref="1937595288"/>
+  <nd ref="1937595286"/>
+  <nd ref="1937595284"/>
+  <nd ref="1937608672"/>
+  <nd ref="1937595282"/>
+  <nd ref="1937595280"/>
+  <nd ref="1937595281"/>
+  <nd ref="1937595277"/>
+  <nd ref="1937595273"/>
+  <nd ref="1937595272"/>
+  <nd ref="1937595271"/>
+  <nd ref="1937595269"/>
+  <nd ref="1937595268"/>
+  <nd ref="1937595267"/>
+  <nd ref="1937595265"/>
+  <nd ref="1937595264"/>
+  <nd ref="1937595262"/>
+  <nd ref="1937595261"/>
+  <nd ref="1937595260"/>
+  <nd ref="1937595259"/>
+  <nd ref="1937595255"/>
+  <nd ref="1937595253"/>
+  <nd ref="1937595251"/>
+  <nd ref="1937595249"/>
+  <nd ref="1937595214"/>
+  <nd ref="1937595212"/>
+  <nd ref="1937595210"/>
+  <nd ref="1937595206"/>
+  <nd ref="1937595200"/>
+  <nd ref="1937595201"/>
+  <nd ref="1937595198"/>
+  <nd ref="1937595191"/>
+  <nd ref="1937595189"/>
+  <nd ref="1937595186"/>
+  <nd ref="1937595178"/>
+  <nd ref="1937595176"/>
+  <nd ref="1937595180"/>
+  <nd ref="1937595185"/>
+  <nd ref="1937595187"/>
+  <nd ref="1937595175"/>
+  <nd ref="1937595173"/>
+  <nd ref="1937595169"/>
+  <nd ref="1937595167"/>
+  <nd ref="1937595166"/>
+  <nd ref="1937595165"/>
+  <nd ref="1937595164"/>
+  <nd ref="1937595160"/>
+  <nd ref="1937595163"/>
+  <nd ref="1937595162"/>
+  <nd ref="1937595159"/>
+  <nd ref="1937595158"/>
+  <nd ref="1937595157"/>
+  <nd ref="1937595155"/>
+  <nd ref="1937595154"/>
+  <nd ref="1937595153"/>
+  <nd ref="1937595152"/>
+  <nd ref="1937595150"/>
+  <nd ref="1937595147"/>
+  <nd ref="1937595146"/>
+  <nd ref="491334788"/>
+  <nd ref="1937595145"/>
+  <nd ref="1937595144"/>
+  <nd ref="1937595142"/>
+  <nd ref="1937595141"/>
+  <nd ref="1937595139"/>
+  <nd ref="1937595134"/>
+  <nd ref="1937595131"/>
+  <nd ref="1937595132"/>
+  <nd ref="1937595135"/>
+  <nd ref="1937595137"/>
+  <nd ref="1937595138"/>
+  <nd ref="491334734"/>
+  <nd ref="1937595136"/>
+  <nd ref="1937595133"/>
+  <nd ref="1937595129"/>
+  <nd ref="1937595123"/>
+  <nd ref="1937595122"/>
+  <nd ref="1937595121"/>
+  <nd ref="1937595119"/>
+  <nd ref="1930070118"/>
+  <tag k="name" v="Chewuch River"/>
+  <tag k="waterway" v="river"/>
+  <tag k="wikipedia" v="Chewuch_River"/>
+ </way>
+ <way id="6096655" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:13:06Z" user="balrog-kun" uid="20587">
+  <nd ref="50031064"/>
+  <nd ref="50323233"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Buckskin Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Buckskin"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358077"/>
+ </way>
+ <way id="6088546" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:29Z" user="Wim L" uid="223681">
+  <nd ref="50211027"/>
+  <nd ref="50211028"/>
+  <nd ref="50220095"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="name" v="Twisp-Winthrop East Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Twisp-Winthrop East"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6083816" visible="true" version="1" changeset="417064" timestamp="2007-09-13T00:38:11Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50134616"/>
+  <nd ref="50155804"/>
+  <nd ref="50155805"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157378041"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6096266" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:12:28Z" user="balrog-kun" uid="20587">
+  <nd ref="50231954"/>
+  <nd ref="50317914"/>
+  <nd ref="50317909"/>
+  <nd ref="50317917"/>
+  <nd ref="50317919"/>
+  <nd ref="50317920"/>
+  <nd ref="50317921"/>
+  <nd ref="50317927"/>
+  <nd ref="50091448"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Norfolk Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Norfolk"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157365219:157365220"/>
+ </way>
+ <way id="6081035" visible="true" version="1" changeset="417064" timestamp="2007-09-12T23:46:45Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50132201"/>
+  <nd ref="50132203"/>
+  <nd ref="50132205"/>
+  <nd ref="50132207"/>
+  <nd ref="50132209"/>
+  <nd ref="50132210"/>
+  <nd ref="50132211"/>
+  <nd ref="50132212"/>
+  <nd ref="50132213"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157370130:157370131"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="183387168" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:44Z" user="Wim L" uid="223681">
+  <nd ref="1937595464"/>
+  <nd ref="1937595456"/>
+  <nd ref="1937595454"/>
+  <nd ref="1937595451"/>
+  <nd ref="1937595448"/>
+  <nd ref="1937595447"/>
+  <nd ref="1937595450"/>
+  <nd ref="1937595449"/>
+  <nd ref="1937595445"/>
+  <nd ref="1937595443"/>
+  <nd ref="1937595441"/>
+  <nd ref="1937595439"/>
+  <nd ref="1937595433"/>
+  <nd ref="1937595429"/>
+  <nd ref="1937595428"/>
+  <nd ref="1937595430"/>
+  <nd ref="1937595431"/>
+  <nd ref="1937595435"/>
+  <nd ref="1937595436"/>
+  <nd ref="1937595434"/>
+  <nd ref="1937595427"/>
+  <nd ref="1937595425"/>
+  <nd ref="1937595422"/>
+  <nd ref="1937595424"/>
+  <nd ref="1937595421"/>
+  <nd ref="1937595420"/>
+  <nd ref="1937595418"/>
+  <nd ref="1937595416"/>
+  <nd ref="1937595417"/>
+  <nd ref="1937595414"/>
+  <nd ref="1937595411"/>
+  <nd ref="1937595408"/>
+  <nd ref="1937595406"/>
+  <nd ref="1937595402"/>
+  <nd ref="1937595398"/>
+  <nd ref="1937595396"/>
+  <nd ref="1937595395"/>
+  <nd ref="1937595384"/>
+  <nd ref="1937595382"/>
+  <nd ref="1937595383"/>
+  <nd ref="1937595386"/>
+  <nd ref="1937595389"/>
+  <nd ref="1937595390"/>
+  <nd ref="1937595393"/>
+  <nd ref="1937595391"/>
+  <nd ref="1937595387"/>
+  <nd ref="1937595381"/>
+  <nd ref="1937595377"/>
+  <nd ref="1937595370"/>
+  <nd ref="1937595369"/>
+  <nd ref="1937595366"/>
+  <nd ref="1937595361"/>
+  <nd ref="1937595359"/>
+  <nd ref="1937595362"/>
+  <nd ref="1937595364"/>
+  <nd ref="1937595357"/>
+  <nd ref="1937595353"/>
+  <nd ref="1937595352"/>
+  <nd ref="1937595345"/>
+  <nd ref="1937595343"/>
+  <nd ref="1937595340"/>
+  <nd ref="1937595338"/>
+  <nd ref="1937595335"/>
+  <nd ref="1937595332"/>
+  <nd ref="1937595330"/>
+  <nd ref="1937595328"/>
+  <nd ref="1937595325"/>
+  <nd ref="1937595323"/>
+  <nd ref="1937595321"/>
+  <nd ref="1937595320"/>
+  <nd ref="1937595318"/>
+  <nd ref="1937595313"/>
+  <nd ref="1937595312"/>
+  <nd ref="1937595309"/>
+  <nd ref="1937595298"/>
+  <nd ref="1937595301"/>
+  <nd ref="1937595307"/>
+  <nd ref="1937595308"/>
+  <nd ref="1937595304"/>
+  <nd ref="1937595296"/>
+  <nd ref="1937595295"/>
+  <nd ref="1937595289"/>
+  <nd ref="1937595287"/>
+  <nd ref="1937595285"/>
+  <nd ref="1937595283"/>
+  <nd ref="1937595276"/>
+  <nd ref="1937595274"/>
+  <nd ref="1937595278"/>
+  <nd ref="1937595279"/>
+  <nd ref="1937595275"/>
+  <nd ref="1937595270"/>
+  <nd ref="1937595266"/>
+  <nd ref="1937595263"/>
+  <nd ref="1937595258"/>
+  <nd ref="1937595215"/>
+  <nd ref="1937595209"/>
+  <nd ref="1937595208"/>
+  <nd ref="1937595213"/>
+  <nd ref="1937595211"/>
+  <nd ref="1937595205"/>
+  <nd ref="1937595203"/>
+  <nd ref="1937595204"/>
+  <nd ref="1937595207"/>
+  <nd ref="1937595202"/>
+  <nd ref="1937595196"/>
+  <nd ref="1937595193"/>
+  <nd ref="1937595192"/>
+  <nd ref="1937595194"/>
+  <nd ref="1937595197"/>
+  <nd ref="1937595199"/>
+  <nd ref="1937595195"/>
+  <nd ref="1937595190"/>
+  <nd ref="1937595171"/>
+  <nd ref="1937608671"/>
+  <nd ref="1937608670"/>
+  <nd ref="1937595161"/>
+  <nd ref="1937595156"/>
+  <nd ref="1937595151"/>
+  <nd ref="1937595149"/>
+  <nd ref="1937595148"/>
+  <nd ref="1937595143"/>
+  <nd ref="1937595140"/>
+  <nd ref="1937595130"/>
+  <nd ref="1937608669"/>
+  <nd ref="1937595126"/>
+  <nd ref="1937595125"/>
+  <nd ref="1937595128"/>
+  <nd ref="1937595127"/>
+  <nd ref="1937595124"/>
+  <nd ref="1937595120"/>
+  <nd ref="1937595111"/>
+  <nd ref="1937595109"/>
+  <nd ref="1937595110"/>
+  <nd ref="1937595107"/>
+  <nd ref="1937595105"/>
+  <nd ref="1937595106"/>
+  <nd ref="1937595108"/>
+  <nd ref="1937595112"/>
+  <nd ref="1937595116"/>
+  <nd ref="1937595117"/>
+  <nd ref="1937595115"/>
+  <nd ref="1937595114"/>
+  <nd ref="1937595113"/>
+  <nd ref="1930070118"/>
+  <tag k="name" v="Methow River"/>
+  <tag k="waterway" v="river"/>
+ </way>
+ <way id="6083106" visible="true" version="1" changeset="417064" timestamp="2007-09-13T00:24:09Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50082834"/>
+  <nd ref="50150570"/>
+  <nd ref="50150571"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326325"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6086603" visible="true" version="1" changeset="417238" timestamp="2007-09-13T01:39:18Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50184193"/>
+  <nd ref="50184194"/>
+  <nd ref="50184196"/>
+  <nd ref="50184197"/>
+  <nd ref="50184199"/>
+  <nd ref="50176013"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157375736"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6096454" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:12:48Z" user="balrog-kun" uid="20587">
+  <nd ref="50263165"/>
+  <nd ref="50320789"/>
+  <nd ref="50249280"/>
+  <nd ref="50320792"/>
+  <nd ref="50220102"/>
+  <nd ref="50294916"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Washington Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Washington"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359612:157326391:157326634"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6096263" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:12:28Z" user="balrog-kun" uid="20587">
+  <nd ref="50317909"/>
+  <nd ref="50317910"/>
+  <nd ref="50139116"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Norfolk Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Norfolk"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157379242"/>
+ </way>
+ <way id="6089569" visible="true" version="5" changeset="13228588" timestamp="2012-09-24T04:22:29Z" user="Wim L" uid="223681">
+  <nd ref="50224520"/>
+  <nd ref="1930070112"/>
+  <nd ref="1930070114"/>
+  <nd ref="50224521"/>
+  <nd ref="50224523"/>
+  <nd ref="50224526"/>
+  <nd ref="50224528"/>
+  <tag k="highway" v="primary"/>
+  <tag k="name" v="Riverside Avenue"/>
+  <tag k="ref" v="WA 20"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="40512266" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:49Z" user="TIGERcnl" uid="120146">
+  <nd ref="491337850"/>
+  <nd ref="491337852"/>
+  <nd ref="491337854"/>
+  <nd ref="491337856"/>
+  <nd ref="491337858"/>
+  <nd ref="491337860"/>
+  <nd ref="491337862"/>
+  <nd ref="491337863"/>
+  <nd ref="491337865"/>
+  <nd ref="491337868"/>
+  <nd ref="491337870"/>
+  <nd ref="491337872"/>
+  <nd ref="491337874"/>
+  <nd ref="491337875"/>
+  <nd ref="491337877"/>
+  <nd ref="491337881"/>
+  <nd ref="491337882"/>
+  <nd ref="491337885"/>
+  <nd ref="491337887"/>
+  <nd ref="491337890"/>
+  <nd ref="491337892"/>
+  <nd ref="491337896"/>
+  <nd ref="491337899"/>
+  <nd ref="491337901"/>
+  <nd ref="491337904"/>
+  <nd ref="491337906"/>
+  <nd ref="491337909"/>
+  <nd ref="491337911"/>
+  <nd ref="491337914"/>
+  <nd ref="491337917"/>
+  <nd ref="491337919"/>
+  <nd ref="491337922"/>
+  <nd ref="491337924"/>
+  <nd ref="491337928"/>
+  <nd ref="491337930"/>
+  <nd ref="491337932"/>
+  <nd ref="491337935"/>
+  <nd ref="491337937"/>
+  <nd ref="491337940"/>
+  <nd ref="491337944"/>
+  <nd ref="491337946"/>
+  <nd ref="491337949"/>
+  <nd ref="491337951"/>
+  <nd ref="491337953"/>
+  <nd ref="491337956"/>
+  <nd ref="491337957"/>
+  <nd ref="491337959"/>
+  <nd ref="491337961"/>
+  <nd ref="491337962"/>
+  <nd ref="491337964"/>
+  <nd ref="491337966"/>
+  <nd ref="491337968"/>
+  <nd ref="491337969"/>
+  <nd ref="491337971"/>
+  <nd ref="491337972"/>
+  <nd ref="491337990"/>
+  <nd ref="491337992"/>
+  <nd ref="491337994"/>
+  <nd ref="491337850"/>
+  <tag k="admin_level" v="8"/>
+  <tag k="boundary" v="administrative"/>
+  <tag k="created_by" v="polyshp2osm-multipoly"/>
+  <tag k="source" v="TIGER/Line® 2008 Place Shapefiles (http://www.census.gov/geo/www/tiger/)"/>
+ </way>
+ <way id="6075263" visible="true" version="1" changeset="415001" timestamp="2007-09-12T21:10:40Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50053595"/>
+  <nd ref="50053759"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157368488"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="40512263" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:46Z" user="TIGERcnl" uid="120146">
+  <nd ref="491337777"/>
+  <nd ref="491337781"/>
+  <nd ref="491337782"/>
+  <nd ref="491337785"/>
+  <nd ref="491337788"/>
+  <nd ref="491337791"/>
+  <nd ref="491337793"/>
+  <nd ref="491337794"/>
+  <nd ref="491337796"/>
+  <nd ref="491337798"/>
+  <nd ref="491337800"/>
+  <nd ref="491337811"/>
+  <nd ref="491337812"/>
+  <nd ref="491337813"/>
+  <nd ref="491337815"/>
+  <nd ref="491337816"/>
+  <nd ref="491337817"/>
+  <nd ref="491337818"/>
+  <nd ref="491337819"/>
+  <nd ref="491337820"/>
+  <nd ref="491337822"/>
+  <nd ref="491337823"/>
+  <nd ref="491337824"/>
+  <nd ref="491337825"/>
+  <nd ref="491337827"/>
+  <nd ref="491337829"/>
+  <nd ref="491337831"/>
+  <nd ref="491337833"/>
+  <nd ref="491337835"/>
+  <nd ref="491337838"/>
+  <nd ref="491337840"/>
+  <nd ref="491337842"/>
+  <nd ref="491337844"/>
+  <nd ref="491337777"/>
+  <tag k="admin_level" v="8"/>
+  <tag k="boundary" v="administrative"/>
+  <tag k="created_by" v="polyshp2osm-multipoly"/>
+  <tag k="source" v="TIGER/Line® 2008 Place Shapefiles (http://www.census.gov/geo/www/tiger/)"/>
+ </way>
+ <way id="6094255" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:08:56Z" user="balrog-kun" uid="20587">
+  <nd ref="50091304"/>
+  <nd ref="50289078"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Rust Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Rust"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358293"/>
+  <tag k="tiger:zip_left" v="98862"/>
+ </way>
+ <way id="44887965" visible="true" version="2" changeset="5973839" timestamp="2010-10-06T21:33:53Z" user="uboot" uid="26299">
+  <nd ref="569073212"/>
+  <nd ref="569073210"/>
+  <nd ref="569073209"/>
+  <nd ref="569073207"/>
+  <nd ref="569073205"/>
+  <nd ref="569073221"/>
+  <nd ref="569073219"/>
+  <nd ref="569073218"/>
+  <nd ref="569073216"/>
+  <nd ref="569073214"/>
+  <nd ref="569073223"/>
+  <nd ref="569073225"/>
+  <nd ref="569073226"/>
+  <nd ref="569073228"/>
+  <nd ref="569073230"/>
+  <nd ref="569073212"/>
+  <tag k="addr:county" v="Okanogan"/>
+  <tag k="addr:state" v="WA"/>
+  <tag k="amenity" v="parking"/>
+  <tag k="attribution" v="Department of Fish and Game"/>
+  <tag k="condition" v="FAIR"/>
+  <tag k="FG:area" v="18701.46"/>
+  <tag k="FG:COND_INDEX" v="0.32"/>
+  <tag k="FG:datafile" v="wint.cor"/>
+  <tag k="FG:GPS_DATE" v="2001/06/22"/>
+  <tag k="FG:lane_miles" v="0.32"/>
+  <tag k="FG:ORG_CODE" v="13265"/>
+  <tag k="FG:perimeter" v="172.18"/>
+  <tag k="FG:photo" v="3271"/>
+  <tag k="FG:PROP_NO" v="00000"/>
+  <tag k="FG:RTE" v="900"/>
+  <tag k="FG:rte_description" v="From Rte 010, left"/>
+  <tag k="FG:station" v="Winthrop NFH"/>
+  <tag k="FG:visitors" v="3000"/>
+  <tag k="ID" v="13265-900-001"/>
+  <tag k="name" v="Hatchery Parking"/>
+  <tag k="prop_description" v="FWS Parking Lots"/>
+  <tag k="rating" v="5.0"/>
+  <tag k="surface" v="asphalt"/>
+  <tag k="x_coordinate" v="-120.189"/>
+  <tag k="y_coordinate" v="48.473"/>
+ </way>
+ <way id="6094625" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:27Z" user="Wim L" uid="223681">
+  <nd ref="50294916"/>
+  <nd ref="50294918"/>
+  <nd ref="1930070105"/>
+  <nd ref="50231701"/>
+  <nd ref="50294921"/>
+  <nd ref="50220119"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Filer Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Filer"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6089570" visible="true" version="5" changeset="14301554" timestamp="2012-12-17T03:04:27Z" user="pnorman" uid="355617">
+  <nd ref="50224542"/>
+  <nd ref="50168572"/>
+  <nd ref="50224544"/>
+  <nd ref="50224545"/>
+  <nd ref="50224547"/>
+  <nd ref="50224549"/>
+  <nd ref="50091449"/>
+  <nd ref="50224552"/>
+  <nd ref="50155805"/>
+  <nd ref="1930070107"/>
+  <tag k="highway" v="primary"/>
+  <tag k="name" v="Riverside Avenue"/>
+  <tag k="name_1" v="State Route 20"/>
+  <tag k="ref" v="WA 20"/>
+  <tag k="tiger:cfcc" v="A31"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_base_1" v="State Route 20"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6089674" visible="true" version="3" changeset="14298131" timestamp="2012-12-16T19:41:45Z" user="pnorman" uid="355617">
+  <nd ref="50216425"/>
+  <nd ref="50225665"/>
+  <nd ref="50225667"/>
+  <nd ref="50225669"/>
+  <nd ref="50225670"/>
+  <nd ref="2070468307"/>
+  <nd ref="50225671"/>
+  <nd ref="2070468305"/>
+  <nd ref="2070468303"/>
+  <nd ref="2070468301"/>
+  <nd ref="2070468299"/>
+  <nd ref="2070468295"/>
+  <nd ref="2070468289"/>
+  <nd ref="2070468285"/>
+  <nd ref="2070468282"/>
+  <nd ref="2070468276"/>
+  <nd ref="2070468273"/>
+  <nd ref="2070468278"/>
+  <nd ref="2070468284"/>
+  <nd ref="2070468287"/>
+  <nd ref="2070468297"/>
+  <nd ref="50225695"/>
+  <nd ref="2070468293"/>
+  <nd ref="2070468291"/>
+  <nd ref="2070468280"/>
+  <nd ref="50123930"/>
+  <nd ref="50225704"/>
+  <nd ref="50225706"/>
+  <nd ref="2070468271"/>
+  <nd ref="2070468269"/>
+  <nd ref="2070468267"/>
+  <nd ref="50225709"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Stud Horse Mountain Road"/>
+  <tag k="source" v="TIGER 2005"/>
+ </way>
+ <way id="6085793" visible="true" version="1" changeset="417238" timestamp="2007-09-13T01:23:36Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50176011"/>
+  <nd ref="50176013"/>
+  <nd ref="50176016"/>
+  <nd ref="50176018"/>
+  <nd ref="50176019"/>
+  <nd ref="50176021"/>
+  <nd ref="50176011"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157378984"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6074049" visible="true" version="1" changeset="415001" timestamp="2007-09-12T20:27:32Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50034353"/>
+  <nd ref="50034336"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359608"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6090869" visible="true" version="1" changeset="417421" timestamp="2007-09-13T03:35:38Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50167738"/>
+  <nd ref="50243382"/>
+  <nd ref="50243383"/>
+  <nd ref="50243386"/>
+  <nd ref="50243388"/>
+  <nd ref="50243390"/>
+  <nd ref="50243392"/>
+  <nd ref="50243394"/>
+  <nd ref="50243396"/>
+  <nd ref="50243398"/>
+  <nd ref="50243400"/>
+  <nd ref="50243402"/>
+  <nd ref="50243404"/>
+  <nd ref="50243406"/>
+  <nd ref="50243409"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Wister Way"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Wister"/>
+  <tag k="tiger:name_type" v="Way"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157365156:157365157:157359620"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+  <tag k="tiger:zip_left" v="98862"/>
+ </way>
+ <way id="6075247" visible="true" version="1" changeset="415001" timestamp="2007-09-12T21:10:24Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50053586"/>
+  <nd ref="50053595"/>
+  <nd ref="50053597"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157368484:157368485"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6093017" visible="true" version="3" changeset="13292648" timestamp="2012-09-29T06:11:45Z" user="Wim L" uid="223681">
+  <nd ref="50271283"/>
+  <nd ref="50271285"/>
+  <nd ref="1937608668"/>
+  <nd ref="50271286"/>
+  <nd ref="50271287"/>
+  <nd ref="50271289"/>
+  <nd ref="50271292"/>
+  <nd ref="50082832"/>
+  <nd ref="50271295"/>
+  <nd ref="50184193"/>
+  <nd ref="50184155"/>
+  <nd ref="50132201"/>
+  <nd ref="50091228"/>
+  <nd ref="50193678"/>
+  <nd ref="50271302"/>
+  <nd ref="50271304"/>
+  <nd ref="50193629"/>
+  <nd ref="50153930"/>
+  <nd ref="50271307"/>
+  <nd ref="50271310"/>
+  <nd ref="50271311"/>
+  <nd ref="50271313"/>
+  <nd ref="50271315"/>
+  <nd ref="50216342"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Westside Chewuch Road"/>
+  <tag k="name_1" v="County Highway 1213"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Westside Chewuch"/>
+  <tag k="tiger:name_base_1" v="County Highway 1213"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6081565" visible="true" version="1" changeset="417064" timestamp="2007-09-12T23:54:52Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50137292"/>
+  <nd ref="50137294"/>
+  <nd ref="50137296"/>
+  <nd ref="50137298"/>
+  <nd ref="50137300"/>
+  <nd ref="50137302"/>
+  <nd ref="50137305"/>
+  <nd ref="50137307"/>
+  <nd ref="50137308"/>
+  <nd ref="50137310"/>
+  <nd ref="50137311"/>
+  <nd ref="50137313"/>
+  <nd ref="50137315"/>
+  <nd ref="50137317"/>
+  <nd ref="50137371"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157367287"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6095780" visible="true" version="4" changeset="14301554" timestamp="2012-12-17T03:04:26Z" user="pnorman" uid="355617">
+  <nd ref="50224528"/>
+  <nd ref="50311016"/>
+  <nd ref="50311018"/>
+  <nd ref="50311019"/>
+  <nd ref="50311020"/>
+  <nd ref="50311022"/>
+  <nd ref="50041866"/>
+  <nd ref="50271283"/>
+  <nd ref="50041876"/>
+  <nd ref="50100761"/>
+  <nd ref="50311026"/>
+  <nd ref="50311028"/>
+  <nd ref="50311030"/>
+  <nd ref="50311032"/>
+  <nd ref="50248681"/>
+  <nd ref="50311035"/>
+  <nd ref="50311038"/>
+  <nd ref="50248664"/>
+  <nd ref="50162538"/>
+  <nd ref="50175851"/>
+  <nd ref="50311041"/>
+  <nd ref="50115856"/>
+  <nd ref="50306707"/>
+  <nd ref="50311043"/>
+  <nd ref="50311044"/>
+  <nd ref="50311045"/>
+  <nd ref="50311046"/>
+  <nd ref="50311049"/>
+  <nd ref="50311051"/>
+  <nd ref="50311054"/>
+  <nd ref="50311055"/>
+  <nd ref="50311057"/>
+  <nd ref="50311059"/>
+  <nd ref="50311061"/>
+  <nd ref="50311063"/>
+  <nd ref="50311066"/>
+  <nd ref="50311068"/>
+  <nd ref="50311070"/>
+  <nd ref="50311072"/>
+  <nd ref="50311074"/>
+  <nd ref="50311076"/>
+  <nd ref="50311077"/>
+  <nd ref="50057108"/>
+  <nd ref="50311080"/>
+  <nd ref="2070970943"/>
+  <nd ref="50311093"/>
+  <nd ref="50181001"/>
+  <nd ref="50311095"/>
+  <nd ref="50058541"/>
+  <nd ref="50311098"/>
+  <nd ref="50311100"/>
+  <nd ref="50311102"/>
+  <nd ref="50311103"/>
+  <nd ref="50311105"/>
+  <nd ref="50148618"/>
+  <nd ref="50311108"/>
+  <nd ref="50311111"/>
+  <nd ref="50311112"/>
+  <nd ref="50112022"/>
+  <nd ref="50311113"/>
+  <nd ref="50311115"/>
+  <nd ref="50311117"/>
+  <nd ref="50311119"/>
+  <nd ref="50311121"/>
+  <nd ref="50311123"/>
+  <nd ref="50311125"/>
+  <nd ref="2070970944"/>
+  <nd ref="50311140"/>
+  <nd ref="50311142"/>
+  <nd ref="50311143"/>
+  <nd ref="2070970945"/>
+  <nd ref="2070970946"/>
+  <nd ref="50268077"/>
+  <nd ref="50268076"/>
+  <nd ref="50268074"/>
+  <nd ref="50268072"/>
+  <nd ref="50112256"/>
+  <nd ref="50268069"/>
+  <nd ref="50268068"/>
+  <nd ref="50268066"/>
+  <nd ref="50268064"/>
+  <nd ref="50268062"/>
+  <nd ref="50226065"/>
+  <tag k="highway" v="primary"/>
+  <tag k="name" v="Highway 20"/>
+  <tag k="ref" v="WA 20"/>
+ </way>
+ <way id="6081238" visible="true" version="1" changeset="417064" timestamp="2007-09-12T23:50:27Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50134615"/>
+  <nd ref="50134616"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157366154"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6085117" visible="true" version="1" changeset="417064" timestamp="2007-09-13T01:10:34Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50168572"/>
+  <nd ref="50168573"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157379277"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6085031" visible="true" version="1" changeset="417064" timestamp="2007-09-13T01:08:44Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50167737"/>
+  <nd ref="50167738"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326835"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6096012" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:26Z" user="Wim L" uid="223681">
+  <nd ref="50224572"/>
+  <nd ref="50220143"/>
+  <nd ref="50314549"/>
+  <nd ref="50304672"/>
+  <nd ref="1930070120"/>
+  <nd ref="50212361"/>
+  <nd ref="1930070122"/>
+  <nd ref="50303124"/>
+  <nd ref="50122894"/>
+  <nd ref="50122905"/>
+  <nd ref="50314570"/>
+  <nd ref="50314572"/>
+  <nd ref="50216419"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Bluff Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Bluff"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6092281" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:05:05Z" user="balrog-kun" uid="20587">
+  <nd ref="50230389"/>
+  <nd ref="50261466"/>
+  <nd ref="50261468"/>
+  <nd ref="50261470"/>
+  <nd ref="50261472"/>
+  <nd ref="50261474"/>
+  <nd ref="50261475"/>
+  <nd ref="50261477"/>
+  <nd ref="50261479"/>
+  <nd ref="50261481"/>
+  <nd ref="50261483"/>
+  <nd ref="50261485"/>
+  <nd ref="50261487"/>
+  <nd ref="50261490"/>
+  <nd ref="50095246"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Horizon Flats Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Horizon Flats"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157375765"/>
+ </way>
+ <way id="6092438" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:29Z" user="Wim L" uid="223681">
+  <nd ref="50264865"/>
+  <nd ref="50263160"/>
+  <nd ref="50263161"/>
+  <nd ref="50263163"/>
+  <nd ref="50263165"/>
+  <nd ref="50256162"/>
+  <nd ref="50263168"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Riverside Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6091314" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:03:40Z" user="balrog-kun" uid="20587">
+  <nd ref="50248664"/>
+  <nd ref="50248665"/>
+  <nd ref="50248667"/>
+  <nd ref="50248668"/>
+  <nd ref="50248669"/>
+  <nd ref="50248671"/>
+  <nd ref="50248677"/>
+  <nd ref="50248679"/>
+  <nd ref="50248681"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Rader Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Rader"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157378251"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6089749" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:01:02Z" user="balrog-kun" uid="20587">
+  <nd ref="50226941"/>
+  <nd ref="50226943"/>
+  <nd ref="50226945"/>
+  <nd ref="50226947"/>
+  <nd ref="50226949"/>
+  <nd ref="50226952"/>
+  <nd ref="50226954"/>
+  <nd ref="50031073"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Pinto Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Pinto"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358072"/>
+  <tag k="tiger:zip_left" v="98862"/>
+ </way>
+ <way id="6073759" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T15:49:03Z" user="balrog-kun" uid="20587">
+  <nd ref="50031062"/>
+  <nd ref="50031085"/>
+  <nd ref="50031088"/>
+  <nd ref="50031091"/>
+  <nd ref="50031094"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Palamino Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Palamino"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157366894"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_left_1" v="98862"/>
+ </way>
+ <way id="6084986" visible="true" version="1" changeset="417064" timestamp="2007-09-13T01:07:23Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50167029"/>
+  <nd ref="50167030"/>
+  <nd ref="50167033"/>
+  <nd ref="50167036"/>
+  <nd ref="50167039"/>
+  <nd ref="50167041"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157367290"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6084602" visible="true" version="1" changeset="417064" timestamp="2007-09-13T00:54:43Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50162535"/>
+  <nd ref="50162537"/>
+  <nd ref="50162538"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157370143:157370144"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="108292990" visible="true" version="2" changeset="13228588" timestamp="2012-09-24T04:22:28Z" user="Wim L" uid="223681">
+  <nd ref="50224528"/>
+  <nd ref="50224532"/>
+  <nd ref="50224533"/>
+  <nd ref="50224534"/>
+  <nd ref="50224535"/>
+  <nd ref="50224536"/>
+  <nd ref="50224538"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Riverside Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6091911" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:04:32Z" user="balrog-kun" uid="20587">
+  <nd ref="50220099"/>
+  <nd ref="50256158"/>
+  <nd ref="50249279"/>
+  <nd ref="50256162"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Perry Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Perry"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359638"/>
+ </way>
+ <way id="6077853" visible="true" version="1" changeset="415417" timestamp="2007-09-12T22:22:37Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50034094"/>
+  <nd ref="50091411"/>
+  <nd ref="50091413"/>
+  <nd ref="50091415"/>
+  <nd ref="50091417"/>
+  <nd ref="50091418"/>
+  <nd ref="50091310"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157370126"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6074497" visible="true" version="1" changeset="415001" timestamp="2007-09-12T20:45:12Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50041866"/>
+  <nd ref="50041867"/>
+  <nd ref="50041870"/>
+  <nd ref="50041872"/>
+  <nd ref="50041874"/>
+  <nd ref="50041876"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326349"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6080916" visible="true" version="3" changeset="13525402" timestamp="2012-10-16T22:27:48Z" user="lxbarth" uid="589596">
+  <nd ref="50131083"/>
+  <nd ref="50131084"/>
+  <nd ref="50131087"/>
+  <nd ref="50131090"/>
+  <nd ref="50131093"/>
+  <nd ref="50131098"/>
+  <tag k="highway" v="tertiary"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6095728" visible="true" version="3" changeset="14301554" timestamp="2012-12-17T03:04:25Z" user="pnorman" uid="355617">
+  <nd ref="50202439"/>
+  <nd ref="50309907"/>
+  <nd ref="50070502"/>
+  <nd ref="50185406"/>
+  <nd ref="50309910"/>
+  <nd ref="50309913"/>
+  <nd ref="50309914"/>
+  <nd ref="50309915"/>
+  <nd ref="50309918"/>
+  <nd ref="50165275"/>
+  <nd ref="50309920"/>
+  <nd ref="50309922"/>
+  <nd ref="50309924"/>
+  <nd ref="50309926"/>
+  <nd ref="50309928"/>
+  <nd ref="50219931"/>
+  <nd ref="50309931"/>
+  <nd ref="50309935"/>
+  <nd ref="50309937"/>
+  <nd ref="50058339"/>
+  <nd ref="50309939"/>
+  <nd ref="50309942"/>
+  <nd ref="50309944"/>
+  <nd ref="50309946"/>
+  <nd ref="50309947"/>
+  <nd ref="50131301"/>
+  <nd ref="50309950"/>
+  <nd ref="50106769"/>
+  <nd ref="50309952"/>
+  <nd ref="50309954"/>
+  <nd ref="50309956"/>
+  <nd ref="50309958"/>
+  <nd ref="50309961"/>
+  <nd ref="50309963"/>
+  <nd ref="50309964"/>
+  <nd ref="50309965"/>
+  <nd ref="50054995"/>
+  <nd ref="50309969"/>
+  <nd ref="50309971"/>
+  <nd ref="50309973"/>
+  <nd ref="50215269"/>
+  <nd ref="50172572"/>
+  <nd ref="50309976"/>
+  <nd ref="50122151"/>
+  <nd ref="50298236"/>
+  <nd ref="50309980"/>
+  <nd ref="50309981"/>
+  <nd ref="50309983"/>
+  <nd ref="50309985"/>
+  <nd ref="50309987"/>
+  <nd ref="50309990"/>
+  <nd ref="50309992"/>
+  <nd ref="50309994"/>
+  <nd ref="50309996"/>
+  <nd ref="50309997"/>
+  <nd ref="50161432"/>
+  <nd ref="50310000"/>
+  <nd ref="50310002"/>
+  <nd ref="50310005"/>
+  <nd ref="50310007"/>
+  <nd ref="50310009"/>
+  <nd ref="50310011"/>
+  <nd ref="50310012"/>
+  <nd ref="50310016"/>
+  <nd ref="50151027"/>
+  <nd ref="50033259"/>
+  <nd ref="50224542"/>
+  <tag k="highway" v="primary"/>
+  <tag k="name" v="Highway 20"/>
+  <tag k="ref" v="WA 20"/>
+  <tag k="tiger:cfcc" v="A31"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Highway 20"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6091566" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:28Z" user="Wim L" uid="223681">
+  <nd ref="50251672"/>
+  <nd ref="50251673"/>
+  <nd ref="50251675"/>
+  <nd ref="50251677"/>
+  <nd ref="50251679"/>
+  <nd ref="50251681"/>
+  <nd ref="50220095"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Perry Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Perry"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6085693" visible="true" version="1" changeset="417238" timestamp="2007-09-13T01:21:32Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50174990"/>
+  <nd ref="50091307"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358288"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="40512257" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:43Z" user="TIGERcnl" uid="120146">
+  <nd ref="491337721"/>
+  <nd ref="491337725"/>
+  <nd ref="491337727"/>
+  <nd ref="491337730"/>
+  <nd ref="491337732"/>
+  <nd ref="491337734"/>
+  <nd ref="491337737"/>
+  <nd ref="491337738"/>
+  <nd ref="491337741"/>
+  <nd ref="491337743"/>
+  <nd ref="491337745"/>
+  <nd ref="491337747"/>
+  <nd ref="491337748"/>
+  <nd ref="491337750"/>
+  <nd ref="491337752"/>
+  <nd ref="491337755"/>
+  <nd ref="491337757"/>
+  <nd ref="491337760"/>
+  <nd ref="491337762"/>
+  <nd ref="491337763"/>
+  <nd ref="491337766"/>
+  <nd ref="491337769"/>
+  <nd ref="491337721"/>
+  <tag k="admin_level" v="8"/>
+  <tag k="boundary" v="administrative"/>
+  <tag k="created_by" v="polyshp2osm-multipoly"/>
+  <tag k="source" v="TIGER/Line® 2008 Place Shapefiles (http://www.census.gov/geo/www/tiger/)"/>
+ </way>
+ <way id="6089566" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:00:39Z" user="balrog-kun" uid="20587">
+  <nd ref="50212355"/>
+  <nd ref="50034339"/>
+  <nd ref="50224506"/>
+  <nd ref="50224508"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Lufkin Lane"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Lufkin"/>
+  <tag k="tiger:name_type" v="Ln"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157359987:157355017"/>
+ </way>
+ <way id="40512249" visible="true" version="1" changeset="2426841" timestamp="2009-09-09T17:09:41Z" user="TIGERcnl" uid="120146">
+  <nd ref="491334429"/>
+  <nd ref="491334432"/>
+  <nd ref="491334435"/>
+  <nd ref="491334438"/>
+  <nd ref="491334440"/>
+  <nd ref="491334444"/>
+  <nd ref="491334447"/>
+  <nd ref="491334450"/>
+  <nd ref="491334452"/>
+  <nd ref="491334455"/>
+  <nd ref="491334458"/>
+  <nd ref="491334460"/>
+  <nd ref="491334463"/>
+  <nd ref="491334466"/>
+  <nd ref="491334468"/>
+  <nd ref="491334471"/>
+  <nd ref="491334473"/>
+  <nd ref="491334476"/>
+  <nd ref="491334480"/>
+  <nd ref="491334482"/>
+  <nd ref="491334484"/>
+  <nd ref="491334486"/>
+  <nd ref="491334487"/>
+  <nd ref="491334490"/>
+  <nd ref="491334492"/>
+  <nd ref="491334493"/>
+  <nd ref="491334496"/>
+  <nd ref="491334498"/>
+  <nd ref="491334500"/>
+  <nd ref="491334501"/>
+  <nd ref="491334503"/>
+  <nd ref="491334506"/>
+  <nd ref="491334508"/>
+  <nd ref="491334512"/>
+  <nd ref="491334514"/>
+  <nd ref="491334516"/>
+  <nd ref="491334518"/>
+  <nd ref="491334521"/>
+  <nd ref="491334525"/>
+  <nd ref="491334526"/>
+  <nd ref="491334530"/>
+  <nd ref="491334533"/>
+  <nd ref="491334536"/>
+  <nd ref="491334539"/>
+  <nd ref="491334542"/>
+  <nd ref="491334543"/>
+  <nd ref="491334546"/>
+  <nd ref="491334549"/>
+  <nd ref="491334553"/>
+  <nd ref="491334556"/>
+  <nd ref="491334559"/>
+  <nd ref="491334561"/>
+  <nd ref="491334565"/>
+  <nd ref="491334568"/>
+  <nd ref="491334570"/>
+  <nd ref="491334573"/>
+  <nd ref="491334576"/>
+  <nd ref="491334578"/>
+  <nd ref="491334581"/>
+  <nd ref="491334585"/>
+  <nd ref="491334587"/>
+  <nd ref="491334589"/>
+  <nd ref="491334592"/>
+  <nd ref="491334594"/>
+  <nd ref="491334597"/>
+  <nd ref="491334601"/>
+  <nd ref="491334603"/>
+  <nd ref="491334606"/>
+  <nd ref="491334609"/>
+  <nd ref="491334611"/>
+  <nd ref="491334615"/>
+  <nd ref="491334618"/>
+  <nd ref="491334621"/>
+  <nd ref="491334623"/>
+  <nd ref="491334627"/>
+  <nd ref="491334630"/>
+  <nd ref="491334631"/>
+  <nd ref="491334634"/>
+  <nd ref="491334637"/>
+  <nd ref="491334639"/>
+  <nd ref="491334660"/>
+  <nd ref="491334663"/>
+  <nd ref="491334665"/>
+  <nd ref="491334667"/>
+  <nd ref="491334668"/>
+  <nd ref="491334670"/>
+  <nd ref="491334673"/>
+  <nd ref="491334675"/>
+  <nd ref="491334678"/>
+  <nd ref="491334681"/>
+  <nd ref="491334684"/>
+  <nd ref="491334688"/>
+  <nd ref="491334689"/>
+  <nd ref="491334692"/>
+  <nd ref="491334695"/>
+  <nd ref="491334698"/>
+  <nd ref="491334702"/>
+  <nd ref="491334704"/>
+  <nd ref="491334707"/>
+  <nd ref="491334708"/>
+  <nd ref="491334711"/>
+  <nd ref="491334714"/>
+  <nd ref="491334718"/>
+  <nd ref="491334720"/>
+  <nd ref="491334723"/>
+  <nd ref="491334725"/>
+  <nd ref="491334727"/>
+  <nd ref="491334729"/>
+  <nd ref="491334732"/>
+  <nd ref="491334734"/>
+  <nd ref="491334736"/>
+  <nd ref="491334738"/>
+  <nd ref="491334740"/>
+  <nd ref="491334742"/>
+  <nd ref="491334744"/>
+  <nd ref="491334747"/>
+  <nd ref="491334750"/>
+  <nd ref="491334753"/>
+  <nd ref="491334756"/>
+  <nd ref="491334759"/>
+  <nd ref="491334762"/>
+  <nd ref="491334765"/>
+  <nd ref="491334768"/>
+  <nd ref="491334771"/>
+  <nd ref="491334773"/>
+  <nd ref="491334776"/>
+  <nd ref="491334779"/>
+  <nd ref="491334782"/>
+  <nd ref="491334786"/>
+  <nd ref="491334788"/>
+  <nd ref="491334791"/>
+  <nd ref="491334794"/>
+  <nd ref="491334796"/>
+  <nd ref="491334799"/>
+  <nd ref="491334802"/>
+  <nd ref="491334805"/>
+  <nd ref="491334809"/>
+  <nd ref="491334812"/>
+  <nd ref="491334816"/>
+  <nd ref="491334817"/>
+  <nd ref="491334819"/>
+  <nd ref="491334821"/>
+  <nd ref="491334822"/>
+  <nd ref="491334824"/>
+  <nd ref="491334826"/>
+  <nd ref="491334827"/>
+  <nd ref="491334830"/>
+  <nd ref="491334831"/>
+  <nd ref="491334833"/>
+  <nd ref="491334835"/>
+  <nd ref="491334837"/>
+  <nd ref="491334840"/>
+  <nd ref="491334844"/>
+  <nd ref="491334845"/>
+  <nd ref="491334848"/>
+  <nd ref="491334851"/>
+  <nd ref="491337430"/>
+  <nd ref="491337432"/>
+  <nd ref="491337434"/>
+  <nd ref="491337438"/>
+  <nd ref="491337440"/>
+  <nd ref="491337443"/>
+  <nd ref="491337445"/>
+  <nd ref="491337448"/>
+  <nd ref="491337452"/>
+  <nd ref="491337454"/>
+  <nd ref="491337457"/>
+  <nd ref="491337460"/>
+  <nd ref="491337462"/>
+  <nd ref="491337465"/>
+  <nd ref="491337467"/>
+  <nd ref="491337470"/>
+  <nd ref="491337474"/>
+  <nd ref="491337476"/>
+  <nd ref="491337480"/>
+  <nd ref="491337483"/>
+  <nd ref="491337484"/>
+  <nd ref="491337488"/>
+  <nd ref="491337491"/>
+  <nd ref="491337493"/>
+  <nd ref="491337496"/>
+  <nd ref="491337501"/>
+  <nd ref="491337502"/>
+  <nd ref="491337505"/>
+  <nd ref="491337507"/>
+  <nd ref="491337511"/>
+  <nd ref="491337513"/>
+  <nd ref="491337516"/>
+  <nd ref="491337519"/>
+  <nd ref="491337521"/>
+  <nd ref="491337524"/>
+  <nd ref="491337527"/>
+  <nd ref="491337530"/>
+  <nd ref="491337533"/>
+  <nd ref="491337534"/>
+  <nd ref="491337536"/>
+  <nd ref="491337538"/>
+  <nd ref="491337539"/>
+  <nd ref="491337542"/>
+  <nd ref="491337543"/>
+  <nd ref="491337546"/>
+  <nd ref="491337549"/>
+  <nd ref="491337550"/>
+  <nd ref="491337551"/>
+  <nd ref="491337554"/>
+  <nd ref="491337556"/>
+  <nd ref="491337559"/>
+  <nd ref="491337561"/>
+  <nd ref="491337564"/>
+  <nd ref="491337567"/>
+  <nd ref="491337569"/>
+  <nd ref="491337571"/>
+  <nd ref="491337573"/>
+  <nd ref="491337576"/>
+  <nd ref="491337578"/>
+  <nd ref="491337580"/>
+  <nd ref="491337583"/>
+  <nd ref="491337586"/>
+  <nd ref="491337588"/>
+  <nd ref="491337591"/>
+  <nd ref="491337594"/>
+  <nd ref="491337596"/>
+  <nd ref="491337599"/>
+  <nd ref="491337601"/>
+  <nd ref="491337604"/>
+  <nd ref="491337627"/>
+  <nd ref="491337630"/>
+  <nd ref="491337633"/>
+  <nd ref="491337636"/>
+  <nd ref="491337637"/>
+  <nd ref="491337640"/>
+  <nd ref="491337644"/>
+  <nd ref="491337648"/>
+  <nd ref="491337650"/>
+  <nd ref="491337653"/>
+  <nd ref="491337655"/>
+  <nd ref="491337659"/>
+  <nd ref="491337662"/>
+  <nd ref="491337663"/>
+  <nd ref="491337666"/>
+  <nd ref="491337670"/>
+  <nd ref="491337672"/>
+  <nd ref="491337675"/>
+  <nd ref="491337678"/>
+  <nd ref="491337680"/>
+  <nd ref="491337683"/>
+  <nd ref="491334429"/>
+  <tag k="admin_level" v="8"/>
+  <tag k="boundary" v="administrative"/>
+  <tag k="created_by" v="polyshp2osm-multipoly"/>
+  <tag k="source" v="TIGER/Line® 2008 Place Shapefiles (http://www.census.gov/geo/www/tiger/)"/>
+ </way>
+ <way id="6089229" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:26Z" user="Wim L" uid="223681">
+  <nd ref="50220113"/>
+  <nd ref="50220116"/>
+  <nd ref="50220118"/>
+  <nd ref="50220119"/>
+  <nd ref="50220120"/>
+  <nd ref="50220121"/>
+  <nd ref="50220123"/>
+  <nd ref="50220126"/>
+  <nd ref="50220128"/>
+  <nd ref="50220129"/>
+  <nd ref="50177304"/>
+  <nd ref="50034333"/>
+  <nd ref="50220132"/>
+  <nd ref="50220134"/>
+  <nd ref="50212353"/>
+  <nd ref="50220136"/>
+  <nd ref="50220137"/>
+  <nd ref="50220139"/>
+  <nd ref="50220141"/>
+  <nd ref="50220143"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Castle Avenue"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Castle"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="182640375" visible="true" version="2" changeset="14301554" timestamp="2012-12-17T03:04:28Z" user="pnorman" uid="355617">
+  <nd ref="1930070107"/>
+  <nd ref="50224554"/>
+  <tag k="bridge" v="yes"/>
+  <tag k="highway" v="primary"/>
+  <tag k="layer" v="1"/>
+  <tag k="name" v="Riverside Avenue"/>
+  <tag k="name_1" v="State Route 20"/>
+  <tag k="ref" v="WA 20"/>
+  <tag k="tiger:cfcc" v="A31"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_base_1" v="State Route 20"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6096056" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:12:10Z" user="balrog-kun" uid="20587">
+  <nd ref="50263160"/>
+  <nd ref="50249282"/>
+  <nd ref="50220109"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Center Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Center"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326383:157326385"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_left_1" v="98862"/>
+ </way>
+ <way id="6074033" visible="true" version="1" changeset="415001" timestamp="2007-09-12T20:26:42Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50034092"/>
+  <nd ref="50034094"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358298"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6081745" visible="true" version="1" changeset="417064" timestamp="2007-09-12T23:57:36Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50139116"/>
+  <nd ref="50139117"/>
+  <nd ref="50134615"/>
+  <tag k="highway" v="residential"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326363"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6089282" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:00:08Z" user="balrog-kun" uid="20587">
+  <nd ref="50212357"/>
+  <nd ref="50220849"/>
+  <nd ref="50220852"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Englar Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Englar"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157326336"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_left_1" v="98862"/>
+  <tag k="tiger:zip_left_2" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="6089982" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:01:23Z" user="balrog-kun" uid="20587">
+  <nd ref="50230387"/>
+  <nd ref="50230389"/>
+  <nd ref="50220755"/>
+  <nd ref="50230391"/>
+  <nd ref="50230393"/>
+  <nd ref="50230397"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Horizon Flat Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Horizon Flat"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157379678:157374438:157356044"/>
+ </way>
+ <way id="6091454" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:03:52Z" user="balrog-kun" uid="20587">
+  <nd ref="50250198"/>
+  <nd ref="50250200"/>
+  <nd ref="50250202"/>
+  <nd ref="50250205"/>
+  <nd ref="50250207"/>
+  <nd ref="50250209"/>
+  <nd ref="50250211"/>
+  <nd ref="50250213"/>
+  <nd ref="50250215"/>
+  <nd ref="50250217"/>
+  <nd ref="50250219"/>
+  <nd ref="50223137"/>
+  <nd ref="50226941"/>
+  <nd ref="50250220"/>
+  <nd ref="50250221"/>
+  <nd ref="50250222"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Paint Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Paint"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157358107:157358108"/>
+ </way>
+ <way id="182640373" visible="true" version="2" changeset="14301554" timestamp="2012-12-17T03:04:28Z" user="pnorman" uid="355617">
+  <nd ref="50224554"/>
+  <nd ref="50224520"/>
+  <tag k="highway" v="primary"/>
+  <tag k="name" v="Riverside Avenue"/>
+  <tag k="name_1" v="State Route 20"/>
+  <tag k="ref" v="WA 20"/>
+  <tag k="tiger:cfcc" v="A31"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Riverside"/>
+  <tag k="tiger:name_base_1" v="State Route 20"/>
+  <tag k="tiger:name_type" v="Ave"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6081045" visible="true" version="1" changeset="417064" timestamp="2007-09-12T23:46:58Z" user="DaveHansenTiger" uid="7168">
+  <nd ref="50132209"/>
+  <nd ref="50132335"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157370134"/>
+  <tag k="tiger:upload_uuid" v="bulk_upload.pl-560448a6-909f-41ce-b72a-3874dfb9eb30"/>
+ </way>
+ <way id="6090100" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:01:35Z" user="balrog-kun" uid="20587">
+  <nd ref="50231953"/>
+  <nd ref="50231954"/>
+  <nd ref="50231956"/>
+  <nd ref="50231958"/>
+  <nd ref="50231960"/>
+  <nd ref="50231963"/>
+  <nd ref="50231965"/>
+  <nd ref="50231967"/>
+  <nd ref="50231969"/>
+  <nd ref="50231971"/>
+  <nd ref="50231973"/>
+  <nd ref="50231974"/>
+  <nd ref="50231977"/>
+  <nd ref="50231979"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Greenwood Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Greenwood"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157365215:157378631"/>
+ </way>
+ <way id="6092072" visible="true" version="2" changeset="4304478" timestamp="2010-04-02T16:04:44Z" user="balrog-kun" uid="20587">
+  <nd ref="50220739"/>
+  <nd ref="50258452"/>
+  <nd ref="50258454"/>
+  <nd ref="50258456"/>
+  <nd ref="50258458"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Saddleback Road"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Saddleback"/>
+  <tag k="tiger:name_type" v="Rd"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:separated" v="no"/>
+  <tag k="tiger:source" v="tiger_import_dch_v0.6_20070830"/>
+  <tag k="tiger:tlid" v="157374443"/>
+ </way>
+ <way id="6086598" visible="true" version="2" changeset="13292648" timestamp="2012-09-29T06:11:45Z" user="Wim L" uid="223681">
+  <nd ref="50184155"/>
+  <nd ref="50184157"/>
+  <nd ref="50184160"/>
+  <nd ref="50184162"/>
+  <nd ref="50184164"/>
+  <nd ref="50184165"/>
+  <nd ref="50184166"/>
+  <nd ref="50184168"/>
+  <nd ref="50184169"/>
+  <nd ref="50184171"/>
+  <nd ref="50115874"/>
+  <tag k="access" v="private"/>
+  <tag k="highway" v="service"/>
+  <tag k="tiger:cfcc" v="A74"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:reviewed" v="no"/>
+ </way>
+ <way id="6091388" visible="true" version="3" changeset="13228588" timestamp="2012-09-24T04:22:27Z" user="Wim L" uid="223681">
+  <nd ref="50249277"/>
+  <nd ref="50249279"/>
+  <nd ref="50249280"/>
+  <nd ref="50249282"/>
+  <nd ref="50249284"/>
+  <nd ref="50249289"/>
+  <tag k="highway" v="residential"/>
+  <tag k="name" v="Main Street"/>
+  <tag k="tiger:cfcc" v="A41"/>
+  <tag k="tiger:county" v="Okanogan, WA"/>
+  <tag k="tiger:name_base" v="Main"/>
+  <tag k="tiger:name_type" v="St"/>
+  <tag k="tiger:reviewed" v="no"/>
+  <tag k="tiger:zip_left" v="98862"/>
+  <tag k="tiger:zip_right" v="98862"/>
+ </way>
+ <way id="183387169" visible="true" version="1" changeset="13292455" timestamp="2012-09-29T05:29:32Z" user="Wim L" uid="223681">
+  <nd ref="1937595115"/>
+  <nd ref="1937595118"/>
+  <nd ref="1937595119"/>
+  <tag k="waterway" v="river"/>
+ </way>
+ <relation id="237891" visible="true" version="2" changeset="15155909" timestamp="2013-02-25T00:11:34Z" user="Jano John Akim Franke" uid="42191">
+  <member type="way" ref="40512249" role="outer"/>
+  <member type="way" ref="40512266" role="outer"/>
+  <member type="way" ref="40512274" role="outer"/>
+  <member type="way" ref="40512257" role="inner"/>
+  <member type="way" ref="40512263" role="inner"/>
+  <tag k="admin_level" v="8"/>
+  <tag k="border_type" v="town"/>
+  <tag k="boundary" v="administrative"/>
+  <tag k="is_in" v="USA, Washington"/>
+  <tag k="is_in:country" v="USA"/>
+  <tag k="is_in:country_code" v="US"/>
+  <tag k="is_in:iso_3166_2" v="US:WA"/>
+  <tag k="is_in:state" v="Washington"/>
+  <tag k="is_in:state_code" v="WA"/>
+  <tag k="name" v="Winthrop"/>
+  <tag k="place" v="town"/>
+  <tag k="source" v="TIGER/Line® 2008 Place Shapefiles (http://www.census.gov/geo/www/tiger/)"/>
+  <tag k="tiger:CLASSFP" v="C1"/>
+  <tag k="tiger:CPI" v="N"/>
+  <tag k="tiger:FUNCSTAT" v="A"/>
+  <tag k="tiger:LSAD" v="43"/>
+  <tag k="tiger:MTFCC" v="G4110"/>
+  <tag k="tiger:NAME" v="Winthrop"/>
+  <tag k="tiger:NAMELSAD" v="Winthrop town"/>
+  <tag k="tiger:PCICBSA" v="N"/>
+  <tag k="tiger:PCINECTA" v="N"/>
+  <tag k="tiger:PLACEFP" v="79380"/>
+  <tag k="tiger:PLACENS" v="02413503"/>
+  <tag k="tiger:PLCIDFP" v="5379380"/>
+  <tag k="tiger:STATEFP" v="53"/>
+  <tag k="type" v="boundary"/>
+  <tag k="wikipedia" v="en:Winthrop, Washington"/>
+ </relation>
+ <relation id="2644277" visible="true" version="16" changeset="17323598" timestamp="2013-08-12T21:15:04Z" user="compdude" uid="282329">
+  <member type="way" ref="5918852" role=""/>
+  <member type="way" ref="5918860" role=""/>
+  <member type="way" ref="204876813" role=""/>
+  <member type="way" ref="5918055" role=""/>
+  <member type="way" ref="5914664" role=""/>
+  <member type="way" ref="122316954" role=""/>
+  <member type="way" ref="6278313" role=""/>
+  <member type="way" ref="5914611" role=""/>
+  <member type="way" ref="5903243" role=""/>
+  <member type="way" ref="232488600" role=""/>
+  <member type="way" ref="200693126" role=""/>
+  <member type="way" ref="5904227" role=""/>
+  <member type="way" ref="5903781" role=""/>
+  <member type="way" ref="5904216" role=""/>
+  <member type="way" ref="5902192" role=""/>
+  <member type="way" ref="5904213" role=""/>
+  <member type="way" ref="179577783" role=""/>
+  <member type="way" ref="179577776" role=""/>
+  <member type="way" ref="179577782" role=""/>
+  <member type="way" ref="179577784" role=""/>
+  <member type="way" ref="179578938" role=""/>
+  <member type="way" ref="179578941" role=""/>
+  <member type="way" ref="5903982" role=""/>
+  <member type="way" ref="179575918" role=""/>
+  <member type="way" ref="5904357" role=""/>
+  <member type="way" ref="5904226" role=""/>
+  <member type="way" ref="122316940" role=""/>
+  <member type="way" ref="5906765" role=""/>
+  <member type="way" ref="106177632" role=""/>
+  <member type="way" ref="22711292" role=""/>
+  <member type="way" ref="26131788" role=""/>
+  <member type="way" ref="26131783" role=""/>
+  <member type="way" ref="53138852" role=""/>
+  <member type="way" ref="53138837" role=""/>
+  <member type="way" ref="22711305" role=""/>
+  <member type="way" ref="85774993" role=""/>
+  <member type="way" ref="23600849" role=""/>
+  <member type="way" ref="129469271" role=""/>
+  <member type="way" ref="129469272" role=""/>
+  <member type="way" ref="22713059" role=""/>
+  <member type="way" ref="209300165" role=""/>
+  <member type="way" ref="209300166" role=""/>
+  <member type="way" ref="222941100" role=""/>
+  <member type="way" ref="222941104" role=""/>
+  <member type="way" ref="171472994" role=""/>
+  <member type="way" ref="171473196" role=""/>
+  <member type="way" ref="171473199" role=""/>
+  <member type="way" ref="53140884" role=""/>
+  <member type="way" ref="53138819" role=""/>
+  <member type="way" ref="53138713" role=""/>
+  <member type="way" ref="22713068" role=""/>
+  <member type="way" ref="23600844" role=""/>
+  <member type="way" ref="85774806" role=""/>
+  <member type="way" ref="22711304" role=""/>
+  <member type="way" ref="209300170" role=""/>
+  <member type="way" ref="209300171" role=""/>
+  <member type="way" ref="222941103" role=""/>
+  <member type="way" ref="222941105" role=""/>
+  <member type="way" ref="22711295" role=""/>
+  <member type="way" ref="171472993" role=""/>
+  <member type="way" ref="22713669" role=""/>
+  <member type="way" ref="68668162" role=""/>
+  <member type="way" ref="22709196" role=""/>
+  <member type="way" ref="169468445" role=""/>
+  <member type="way" ref="169468437" role=""/>
+  <member type="way" ref="22710041" role=""/>
+  <member type="way" ref="22710601" role=""/>
+  <member type="way" ref="169468443" role=""/>
+  <member type="way" ref="22711294" role=""/>
+  <member type="way" ref="22713070" role=""/>
+  <member type="way" ref="22709207" role=""/>
+  <member type="way" ref="22713301" role=""/>
+  <member type="way" ref="169465281" role="east"/>
+  <member type="way" ref="169465283" role=""/>
+  <member type="way" ref="169465271" role="east"/>
+  <member type="way" ref="169465266" role="west"/>
+  <member type="way" ref="169465265" role="west"/>
+  <member type="way" ref="22712040" role=""/>
+  <member type="way" ref="169465278" role=""/>
+  <member type="way" ref="22712559" role=""/>
+  <member type="way" ref="22711297" role=""/>
+  <member type="way" ref="22711301" role=""/>
+  <member type="way" ref="22711299" role=""/>
+  <member type="way" ref="51788386" role=""/>
+  <member type="way" ref="51788427" role=""/>
+  <member type="way" ref="51788429" role=""/>
+  <member type="way" ref="51788430" role=""/>
+  <member type="way" ref="51791884" role=""/>
+  <member type="way" ref="51791881" role=""/>
+  <member type="way" ref="127274467" role=""/>
+  <member type="way" ref="127274462" role=""/>
+  <member type="way" ref="51792005" role=""/>
+  <member type="way" ref="51792004" role=""/>
+  <member type="way" ref="127274464" role=""/>
+  <member type="way" ref="127274465" role=""/>
+  <member type="way" ref="51791923" role=""/>
+  <member type="way" ref="51791894" role=""/>
+  <member type="way" ref="51794948" role=""/>
+  <member type="way" ref="51794947" role=""/>
+  <member type="way" ref="184530650" role=""/>
+  <member type="way" ref="184530655" role=""/>
+  <member type="way" ref="184253852" role=""/>
+  <member type="way" ref="184253853" role=""/>
+  <member type="way" ref="5262024" role=""/>
+  <member type="way" ref="22711293" role=""/>
+  <member type="way" ref="89761464" role=""/>
+  <member type="way" ref="5850185" role=""/>
+  <member type="way" ref="5850535" role=""/>
+  <member type="way" ref="5847791" role=""/>
+  <member type="way" ref="89761463" role=""/>
+  <member type="way" ref="6095754" role=""/>
+  <member type="way" ref="6092741" role=""/>
+  <member type="way" ref="6095785" role=""/>
+  <member type="way" ref="183388309" role=""/>
+  <member type="way" ref="183388308" role=""/>
+  <member type="way" ref="6095780" role=""/>
+  <member type="way" ref="6089569" role=""/>
+  <member type="way" ref="182640373" role=""/>
+  <member type="way" ref="182640375" role=""/>
+  <member type="way" ref="6089570" role=""/>
+  <member type="way" ref="6095728" role=""/>
+  <member type="way" ref="6088070" role=""/>
+  <member type="way" ref="6095737" role=""/>
+  <member type="way" ref="230796083" role=""/>
+  <member type="way" ref="230796084" role=""/>
+  <member type="way" ref="125924749" role=""/>
+  <member type="way" ref="6092766" role=""/>
+  <member type="way" ref="6095759" role=""/>
+  <member type="way" ref="6092742" role=""/>
+  <member type="way" ref="6095789" role=""/>
+  <member type="way" ref="6092770" role=""/>
+  <member type="way" ref="6095741" role=""/>
+  <member type="way" ref="6092774" role=""/>
+  <member type="way" ref="6091492" role=""/>
+  <member type="way" ref="6095786" role=""/>
+  <member type="way" ref="189577561" role=""/>
+  <member type="way" ref="189577562" role=""/>
+  <member type="way" ref="189582557" role=""/>
+  <member type="way" ref="189582550" role=""/>
+  <member type="way" ref="6088755" role=""/>
+  <member type="way" ref="36077285" role=""/>
+  <member type="way" ref="6094942" role=""/>
+  <member type="way" ref="6095787" role=""/>
+  <member type="way" ref="6092743" role=""/>
+  <member type="way" ref="6095770" role=""/>
+  <member type="way" ref="6092768" role=""/>
+  <member type="way" ref="6095782" role=""/>
+  <member type="way" ref="6092769" role=""/>
+  <member type="way" ref="6095739" role=""/>
+  <member type="way" ref="6092758" role=""/>
+  <member type="way" ref="6095742" role=""/>
+  <member type="way" ref="6095517" role=""/>
+  <member type="way" ref="5888760" role=""/>
+  <member type="way" ref="5889677" role=""/>
+  <member type="way" ref="125924753" role=""/>
+  <member type="way" ref="5888756" role=""/>
+  <member type="way" ref="233309799" role=""/>
+  <member type="way" ref="5886269" role=""/>
+  <member type="way" ref="32528630" role=""/>
+  <member type="way" ref="32540171" role=""/>
+  <member type="way" ref="32540170" role=""/>
+  <member type="way" ref="6215862" role=""/>
+  <member type="way" ref="6215411" role=""/>
+  <member type="way" ref="6217126" role=""/>
+  <member type="way" ref="200984858" role=""/>
+  <member type="way" ref="6215859" role=""/>
+  <member type="way" ref="32869883" role=""/>
+  <member type="way" ref="117340291" role=""/>
+  <member type="way" ref="135094208" role=""/>
+  <member type="way" ref="32869725" role=""/>
+  <member type="way" ref="6217128" role=""/>
+  <member type="way" ref="6219654" role=""/>
+  <member type="way" ref="6217803" role=""/>
+  <member type="way" ref="6215161" role=""/>
+  <member type="way" ref="6217824" role=""/>
+  <member type="way" ref="6106627" role=""/>
+  <member type="way" ref="6106635" role=""/>
+  <member type="way" ref="6106657" role=""/>
+  <member type="way" ref="52521180" role=""/>
+  <member type="way" ref="51770754" role=""/>
+  <member type="way" ref="5917246" role=""/>
+  <member type="way" ref="82479140" role=""/>
+  <member type="way" ref="82479141" role=""/>
+  <member type="way" ref="5917252" role=""/>
+  <member type="way" ref="204876814" role="east"/>
+  <member type="way" ref="204877023" role="west"/>
+  <member type="way" ref="204876811" role=""/>
+  <member type="way" ref="204877098" role="west"/>
+  <member type="way" ref="204877097" role="east"/>
+  <member type="way" ref="204877320" role=""/>
+  <member type="way" ref="204877583" role="east"/>
+  <member type="way" ref="204877582" role="west"/>
+  <tag k="name" v="North Cascades Highway"/>
+  <tag k="network" v="US:WA"/>
+  <tag k="ref" v="20"/>
+  <tag k="route" v="road"/>
+  <tag k="type" v="route"/>
+ </relation>
+</osm>
diff --git a/test/osmium.test.js b/test/osmium.test.js
new file mode 100644
index 0000000..2906bbd
--- /dev/null
+++ b/test/osmium.test.js
@@ -0,0 +1,73 @@
+var osmium = require('../');
+var assert = require('assert');
+
+describe('osmium', function() {
+
+    it('should be able to create an osmium.Reader', function(done) {
+        var file = new osmium.File(__dirname+"/data/berlin-latest.osm.pbf");
+        var reader = new osmium.Reader(file, {});
+        var header = reader.header();
+        assert.equal(header.generator, 'Osmium (http://wiki.openstreetmap.org/wiki/Osmium)');
+        var bounds = header.bounds;
+        var expected = [ 13.08283, 52.33446, 13.76136, 52.6783 ];
+        assert.ok(Math.abs(bounds[0] - expected[0]) < .000000001);
+        assert.ok(Math.abs(bounds[1] - expected[1]) < .000000001);
+        assert.ok(Math.abs(bounds[2] - expected[2]) < .000000001);
+        assert.ok(Math.abs(bounds[3] - expected[3]) < .000000001);
+        reader.close();
+        done();
+    });
+
+    it('should be able to apply a handler to a reader', function(done) {
+        var handler = new osmium.Handler();
+        var nodes = 0;
+        handler.on('node',function(node) {
+            ++nodes;
+        });
+        handler.on('done',function() {
+            assert.equal(nodes >= 1993505, true);
+        });
+        var file = new osmium.File(__dirname+"/data/berlin-latest.osm.pbf");
+        var reader = new osmium.Reader(file);
+        reader.apply(handler);
+
+        // since reader.apply is sync, we can re-use handlers
+        var file2 = new osmium.File(__dirname+"/data/winthrop.osm");
+        var reader2 = new osmium.Reader(file2);
+        nodes = 0;
+        handler.on('done',function() {
+            assert.equal(nodes,1525);
+            done();
+        });
+        reader2.apply(handler);
+    });
+
+    it('should be able to get node data from handler parameter', function(done) {
+        var handler = new osmium.Handler();
+        var nodes = 0, ways = 0;
+        handler.on('node',function(node) {
+            if (nodes == 0) {
+                assert.equal(node.id, 50031066);
+                assert.equal(node.lon, -120.1891610);
+            }
+            if (nodes == 1) {
+                assert.equal(node.id, 50031085);
+                assert.equal(node.lon, -120.1929190);
+            }
+            ++nodes;
+        });
+        handler.on('way',function(way) {
+            if (ways == 0) {
+                assert.equal(way.id, 6091729);
+            }
+            ++ways;
+        });
+        handler.on('done',function() {
+            assert.equal(nodes,1525);
+            done();
+        });
+        var reader = new osmium.Reader(__dirname+"/data/winthrop.osm", { 'node': true, 'way': true });
+        reader.apply(handler);
+    });
+
+});

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/node-osmium.git



More information about the Pkg-grass-devel mailing list