From 5ffce29fa4982b9f115d818c4eacfe4e6d5efb1a Mon Sep 17 00:00:00 2001 From: jarhill0 Date: Wed, 16 Jan 2019 18:21:19 -0800 Subject: [PATCH 1/4] Correctly sanitize cookies --- test/helpers.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/test/helpers.py b/test/helpers.py index 648ad80..9d4055b 100644 --- a/test/helpers.py +++ b/test/helpers.py @@ -6,9 +6,11 @@ def sanitize_cookies(interaction, cassette): response = interaction.as_response() response_cookies = response.cookies - request_body = response.request.body or '' # where secret values hide - # the or '' is necessary above because sometimes response.request.body - # is empty bytes, and that makes the later code complain. + request_cookies = dict() + for cookie in (interaction.as_response().request.headers.get('Cookie') or '').split('; '): + name, sep, val = cookie.partition('=') + if sep: + request_cookies[name] = val secret_values = set() for name in CLASSIFIED_COOKIES: @@ -16,12 +18,9 @@ def sanitize_cookies(interaction, cassette): if potential_val: secret_values.add(potential_val) - named_parameter_str = '&{}='.format(name) - if (named_parameter_str in request_body or - request_body.startswith(named_parameter_str[1:])): - i = request_body.index(name) + len(name) + 1 # +1 for the = sign - val = request_body[i:].split(',')[0] # after the comma is another cookie - secret_values.add(val) + potential_val = request_cookies.get(name) + if potential_val: + secret_values.add(potential_val) for val in secret_values: cassette.placeholders.append( From e1305056ba4a02d2c0fd62c2f6c5486162ca4c08 Mon Sep 17 00:00:00 2001 From: jarhill0 Date: Wed, 16 Jan 2019 18:22:29 -0800 Subject: [PATCH 2/4] Allow retrieving found/DNF caches (resolves #72) --- pycaching/cache.py | 41 + pycaching/geocaching.py | 48 +- test/cassettes/geocaching_my_dnfs.json | 1454 +++++++++++++++++ test/cassettes/geocaching_my_finds.json | 1454 +++++++++++++++++ ...geocaching_shortcut_getcache__by_guid.json | 74 + test/test_geo.py | 1 + test/test_geocaching.py | 24 +- 7 files changed, 3091 insertions(+), 5 deletions(-) create mode 100644 test/cassettes/geocaching_my_dnfs.json create mode 100644 test/cassettes/geocaching_my_finds.json create mode 100644 test/cassettes/geocaching_shortcut_getcache__by_guid.json diff --git a/pycaching/cache.py b/pycaching/cache.py index ab9891f..873adb9 100644 --- a/pycaching/cache.py +++ b/pycaching/cache.py @@ -110,6 +110,47 @@ class Cache(object): "log_page": "play/geocache/{wp}/log", } + @classmethod + def _from_print_page(cls, geocaching, guid, soup): + """Create a cache instance from a souped print-page and a GUID""" + if soup.find("p", "Warning") is not None: + raise errors.PMOnlyException() + + cache_info = dict() + cache_info['guid'] = guid + cache_info['wp'] = soup.find(class_='HalfRight').find('h1').text.strip() + content = soup.find(id="Content") + cache_info['name'] = content.find("h2").text.strip() + cache_info['type'] = Type.from_filename(content.h2.img['src'].split('/')[-1].partition('.')[0]) + cache_info['author'] = content.find(class_='Meta').text.partition(':')[2].strip() + diff_terr = content.find(class_='DiffTerr').find_all('img') + assert len(diff_terr) == 2 + cache_info['difficulty'] = float(diff_terr[0]['alt'].split()[0]) + cache_info['terrain'] = float(diff_terr[1]['alt'].split()[0]) + cache_info['size'] = Size.from_string(content.find(class_='Third AlignCenter').p.img['alt'].partition(':')[2]) + fav_text = content.find(class_='Third AlignRight').p.contents[2] + try: + cache_info['favorites'] = int(fav_text) + except ValueError: # element not present when 0 favorites + cache_info['favorites'] = 0 + cache_info['hidden'] = parse_date( + content.find(class_='HalfRight AlignRight').p.text.strip().partition(':')[2].strip()) + cache_info['location'] = Point.from_string(content.find(class_='LatLong').text.strip()) + cache_info['state'] = None # not on the page + attributes = [img['src'].split('/')[-1].partition('.')[0].rpartition('-') + for img in content.find(class_='sortables').find_all('img') + if img.get('src') and img['src'].startswith('/images/attributes/')] + cache_info['attributes'] = {attr_name: attr_setting == 'yes' + for attr_name, _, attr_setting in attributes} + if 'attribute' in cache_info['attributes']: # 'blank' attribute + del cache_info['attributes']['attribute'] + cache_info['summary'] = content.find("h2", text="Short Description").find_next("div").text + cache_info['description'] = content.find("h2", text="Long Description").find_next("div").text + hint = content.find(id='uxEncryptedHint') + cache_info['hint'] = hint.text.strip() if hint else None + cache_info['waypoints'] = Waypoint.from_html(content, table_id="Waypoints") + return Cache(geocaching, **cache_info) + def __init__(self, geocaching, wp, **kwargs): """Create a cache instance. diff --git a/pycaching/geocaching.py b/pycaching/geocaching.py index 9a7031a..48d651e 100644 --- a/pycaching/geocaching.py +++ b/pycaching/geocaching.py @@ -7,7 +7,7 @@ import json import subprocess import warnings -from urllib.parse import urljoin +from urllib.parse import parse_qs, urljoin, urlparse from os import path from pycaching.cache import Cache, Size from pycaching.log import Log, Type as LogType @@ -28,6 +28,7 @@ class Geocaching(object): "login_page": "account/signin", "search": "play/search", "search_more": "play/search/more-results", + 'my_logs': 'my/logs.aspx?lt={lt}', } _credentials_file = ".gc_credentials" @@ -340,12 +341,20 @@ def geocode(self, location): """ return Point.from_location(self, location) - def get_cache(self, wp): - """Return a :class:`.Cache` object by its waypoint. + def get_cache(self, wp=None, guid=None): + """Return a :class:`.Cache` object by its waypoint or GUID. :param str wp: Cache waypoint. + :param str guid: Cache GUID. + + .. note :: + Provide only the GUID or the waypoint, not both. """ - return Cache(self, wp) + if (wp is None) == (guid is None): + raise TypeError('Please provide exactly one of `wp` or `guid`.') + if wp is not None: + return Cache(self, wp) + return self._cache_from_guid(guid) def get_trackable(self, tid): """Return a :class:`.Trackable` object by its trackable ID. @@ -367,3 +376,34 @@ def post_log(self, wp, text, type=LogType.found_it, date=None): date = datetime.date.today() l = Log(type=type, text=text, visited=date) self.get_cache(wp).post_log(l) + + def _cache_from_guid(self, guid): + logging.info('Loading cache with GUID {!r}'.format(guid)) + print_page = self._request(Cache._urls["print_page"], params={"guid": guid}) + return Cache._from_print_page(self, guid, print_page) + + def _my_logs(self, log_type, limit): + logging.info("Getting {} of my logs of type {}".format(limit, log_type)) + cache_table = self._request(self._urls['my_logs'].format(lt=log_type)).find(class_='Table') + if cache_table is None: # no finds on the account + return + cache_table = cache_table.tbody + + yielded = 0 + for row in cache_table.find_all('tr'): + link = row.find(class_='ImageLink')['href'] + guid = parse_qs(urlparse(link).query)['guid'][0] + + if yielded >= limit: + break + + yield self.get_cache(guid=guid) + yielded += 1 + + def my_finds(self, limit=float('inf')): + """Get an iterable of the logged-in user's finds.""" + return self._my_logs(LogType.found_it.value, limit) + + def my_dnfs(self, limit=float('inf')): + """Get an iterable of the logged-in user's DNFs.""" + return self._my_logs(LogType.didnt_find_it.value, limit) diff --git a/test/cassettes/geocaching_my_dnfs.json b/test/cassettes/geocaching_my_dnfs.json new file mode 100644 index 0000000..98df325 --- /dev/null +++ b/test/cassettes/geocaching_my_dnfs.json @@ -0,0 +1,1454 @@ +{ + "http_interactions": [ + { + "recorded_at": "2019-01-28T07:06:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/my/logs.aspx?lt=3" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n\r\n\tYour Geocaching Logs (Filtered by Log Type)\r\n\r\n\r\n\r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n
\r\n \r\n\r\n \r\n \r\n \r\n\r\n Skip to Content\r\n\r\n
\r\n\t\n
\n

\n By using this site, you agree to its use of cookies as provided in our policy.\n

\n \n
\n\r\n
\n\n\r\n\r\n \r\n\r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n\r\n \r\n\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n\r\n
\r\n\t\r\n \n \n
\n\t\n\t

\n\t\n
\n

\n Your Geocaching Logs (Filtered by Log Type)\n

\n \n

\n 28 result(s).

\n

\n \n Show:\n Archive, Attended, Didn't find it, Enable listing, Found it, Needs archived, Needs maintenance, Owner maintenance, Post reviewer note, Submit for review, Temporarily disable listing, Update coordinates, Will attend, Write note, All Logs\n

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n \"Didn't\n \n \n \n 07/19/2017\n \n pole a#2 \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 07/19/2017\n \n Ohlone Greenway Trail - Behind the Old Supermarket \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/12/2017\n \n Cache Scratch Fever! \n \n Connecticut\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 02/21/2017\n \n *batteries not included \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 02/21/2017\n \n Another Tipsy's on the Rocks \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 02/21/2017\n \n OsamG84's Beach Cache \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 02/20/2017\n \n Tipsy Beach \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 05/03/2015\n \n Frog Lake \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 08/24/2014\n \n Please share my umbrella \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 08/23/2014\n \n Beat the Clock Series \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 06/27/2014\n \n Kensington Public Path #6 \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 06/19/2014\n \n Drop of Water \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 06/07/2014\n \n Red-Winged Blackbirds! \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 06/07/2014\n \n Terns! \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 05/26/2014\n \n Sheppey \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/26/2014\n \n Trifecta Vista \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/19/2014\n \n Berkeley Way with a Jay \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/16/2014\n \n Ohlone Greenway Trail - Behind the Old Supermarket \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/16/2014\n \n El Cerrito Swim Center \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/12/2014\n \n Ode to the Library of Alexandria! \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/11/2014\n \n Tree Hugger \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 04/04/2014\n \n Happy Hour #4 \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 03/22/2014\n \n Happy Hour #4 \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 03/16/2014\n \n Jewel Lake \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 03/02/2014\n \n Indian Bear Lair \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 03/02/2014\n \n Fountain Walk \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 02/23/2014\n \n Kenna's Golden Gate Fields Lookout \n \n California\n  \n \n \n Visit log\n \n
\n \"Didn't\n \n \n \n 11/07/2013\n \n Coyote Bush \n \n California\n  \n \n \n Visit log\n \n
\n \n\n\n\r\n \r\n
\r\n\r\n
\r\n
\r\n\t\r\n \r\n
\r\n\r\n
\r\n\r\n

\r\n \r\n Advertising with Us\r\n

\r\n \r\n
\r\n
\r\n
\r\n
\r\n\r\n \r\n\r\n Return to the Top of the Page\r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n
\r\n \r\n
\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "68283" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:27 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:27 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/my/logs.aspx?lt=3" + } + }, + { + "recorded_at": "2019-01-28T07:06:27", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=082ff119-df9e-4d7c-b0f2-5e76773b0f44" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC53AV3) pole a#2 by altoids79\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC53AV3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional pole a#2\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n altoids79\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 04/23/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.701 W 122\u00b0 17.870\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 561722 N 4196247\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"3
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Other)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 50 Found it \"Didn't 7 Didn't find it \"Write 3 Write note \"Publish 1 Publish Listing \"Needs 2 Needs Maintenance \"Owner 2 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

i do not plan on have any more telepohne pole caches this was just a\u00a0coincidence.

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

This cache is disguised to look like something that you would find in a telephone pole. this telephone pole is the closed on to terrace on the fork. think inside the box for this cache if you know what i mean.

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tit is a small wood dowel the size of a pencil\r\n\t
\r\n\t\tvg vf n fznyy jbbq qbjry gur fvmr bs n crapvy\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:27\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "24847" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:27 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:27 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=082ff119-df9e-4d7c-b0f2-5e76773b0f44" + } + }, + { + "recorded_at": "2019-01-28T07:06:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=89f048d6-c5e3-46d4-9611-20b4fc326dc2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC34GGD) Ohlone Greenway Trail - Behind the Old Supermarket by Olaf Itoff (adopted by bobf)\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC34GGD\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Ohlone Greenway Trail - Behind the Old Supermarket\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Olaf Itoff (adopted by bobf)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 09/19/2011\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.729 W 122\u00b0 18.406\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 560936 N 4196294\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 200 Found it \"Didn't 26 Didn't find it \"Write 8 Write note \"Temporarily 5 Temporarily Disable Listing \"Enable 5 Enable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 8 Owner Maintenance \"Update 1 Update Coordinates \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n Here is another Greenway Trail cache; this time near Moeser Lane. Stealth required. Enjoy!\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n For many years this supermarket served the neighboring community. Now it has modernized and moved up the trail.

Congratulations BerkeleyBoomers FTF!!!\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tLook low. Near a pole-ette. Magnetic.
[mottob eht ta xob lacirtcele eht htiw elop egral eht erongi]\r\n\t
\r\n\t\tYbbx ybj. Arne n cbyr-rggr. Zntargvp.
[mottob eht ta xob lacirtcele eht htiw elop egral eht erongi]\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"bikes \"available \"parking \"stealth \"kid \"park \"dogs \"blank\" \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

bikes allowed, available 24-7, parking available, stealth required, kid friendly, park and grab, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:28\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27417" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:27 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:28 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=89f048d6-c5e3-46d4-9611-20b4fc326dc2" + } + }, + { + "recorded_at": "2019-01-28T07:06:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=dee90c5f-febc-4400-ac83-f89d0c27e743" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GCTW85) Cache Scratch Fever! by paddlehikers\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GCTW85\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Cache Scratch Fever!\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n paddlehikers\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/12/2006\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 34.635 W 072\u00b0 33.014\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 18T E 704228 N 4605738\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 233 Found it \"Didn't 37 Didn't find it \"Write 11 Write note \"Publish 1 Publish Listing \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n We may have to have a contest at the next event to see who can say the name of this cache three times fast! Go ahead\u2026try it, then read on\u2026. and read it all because this is not an ordinary cache.\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n This is a nice easy little cache in a lovely spot that we’ve always enjoyed and which is easily overlooked if you don’t know it is here. And it is here that many a brave and hearty pioneer came with visions of scratching a fortune out of the mineral rich grounds flanking what is now known as Mine Brook. It began in 1762 when a trio of German immigrants with pick-axes and a lot of time on their hands began digging for the cache of cobalt that lay below. Others continued that effort up through the start of the Civil War. You will pass by two vertical mineshafts (made safe by chain link fence), from which the “drifts”, or horizontal shafts, sprout off deep below the surface. One in fact ventures off beneath the road you drove in on toward the base of Great Hill. The labyrinth has been flooded and thereby void of exploration for 150+ years.

Others came seeking their fortune in gold. They panned for it with disappointing results, then bored into the ledge walls exposed by the rushing stream. Evidence of this remains just downstream and across the brook from the cache. You will see a small cave entrance that once inside, opens to a fairly spacious little room which I once explored as a young teen. (If you choose to do same, try to avoid the temptation of shining a bright light at any of the brown mossy looking things clinging to the ceiling. When one wakes up, they all do, and oh yea… if my lantern and backpack is still in there, grab it for me.

Now it’s your turn to come to this treasure laden gorge in hopes of scratching a fortune out of its hidden confines. But there’s a catch to this cache. It is a small container bearing the following contents: Logbook, pencil and FIVE Ct State Lottery scratch off tickets. Here’s the deal. Bring along a replacement $1.00 ticket for however many you and your party of prospectors plan to scratch. Sign the logbook and record your winnings. Let’s see who finds the winning vein! There is no room for additional trade items. The FTF can swap a dollar ticket for the fiver waiting for him or her.

Please avoid muggles and be sure to rehide well due to nature of the contents. And be sure to check out the area. This is also a perfect starting point for two other area caches, “Depot Hill Depot” and “Cayla’s Cool Cache”. Both are highly recommended. GOOD LUCK!
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tthird rock from the sun\r\n\t
\r\n\t\tguveq ebpx sebz gur fha\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"no \"available \"available \"scenic \"takes \"kid \"abandoned \"dogs \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

abandoned mine nearby, no campfires, available in winter, available 24-7, scenic view, takes less than 1 hour, kid friendly, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:28\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "31958" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:27 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:28 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=dee90c5f-febc-4400-ac83-f89d0c27e743" + } + }, + { + "recorded_at": "2019-01-28T07:06:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=d55c94bf-1115-4cfe-ac6b-2d5a49c325bd" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC506DA) *batteries not included by OsamG84 with The Tipsy's\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC506DA\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional *batteries not included\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n OsamG84 with The Tipsy's\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/12/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 33\u00b0 24.628 W 117\u00b0 36.664\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 443182 N 3696959\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 4\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 87 Found it \"Didn't 39 Didn't find it \"Write 5 Write note \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Owner 4 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

My 1st hide! I made a\u00a0nifty little container and finally found a cozy spot for it.\u00a0

\r\n

Don't go past the fence, the\u00a0Cache is NOT on the tracks.

\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"available \"available \"stealth \"scenic \"blank\" \"blank\"

What are Attributes?

available 24-7, available in winter, stealth required, scenic view\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:28\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "24785" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:27 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:28 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=d55c94bf-1115-4cfe-ac6b-2d5a49c325bd" + } + }, + { + "recorded_at": "2019-01-28T07:06:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=88c12f5a-48c5-49ed-8ad2-cc0778f39bf0" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC54H6X) Another Tipsy's on the Rocks by Team Tipsy\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC54H6X\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Another Tipsy's on the Rocks\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Team Tipsy\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 05/10/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 33\u00b0 24.751 W 117\u00b0 36.795\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 442980 N 3697188\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"4
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Other)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 22 Found it \"Didn't 14 Didn't find it \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

Whelp...

\r\n

Another night with the moon.

\r\n

Another Tipsy's on the rocks.

\r\n

Found a big moon.

\r\n

Come join the Tipsy's on the rocks.

\r\n

\u00a0

\r\n

\u00a0

\r\n

EVER WRITE ANOTHER POEM?

\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

TIPSYSLLDOIT

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tGood luck. Or you should've ordered it neat...\r\n\t
\r\n\t\tTbbq yhpx. Be lbh fubhyq'ir beqrerq vg arng...\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"picnic \"teamwork \"restrooms \"drinking \"recommended \"may \"food \"in \"park \"available \"available \"UV \"scenic \"takes \"thorns!\"

What are Attributes?

thorns!, may require skiis, UV light required, picnic tables available, teamwork required, restrooms available, drinking water nearby, recommended for tourists, food nearby, in abandoned structure, park and grab, available in winter, available 24-7, scenic view, takes less than 1 hour\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \"\" Ocean's California Trip, \"\" Ocean's California Trip 2\r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:28\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27732" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:27 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:28 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=88c12f5a-48c5-49ed-8ad2-cc0778f39bf0" + } + }, + { + "recorded_at": "2019-01-28T07:06:28", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=cd7e0816-d0be-412f-b9bf-d8bc4b87f6ea" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC506MV) OsamG84's Beach Cache by Klutch32\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC506MV\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional OsamG84's Beach Cache\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Klutch32\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/13/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 33\u00b0 24.886 W 117\u00b0 36.937\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 442761 N 3697438\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 53 Found it \"Didn't 19 Didn't find it \"Write 2 Write note \"Archive\" 1 Archive \"Temporarily 2 Temporarily Disable Listing \"Enable 1 Enable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

Stolen from OsamG.\u00a0

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Hid this cache without permission from\u00a0OsamG. \u00a0Ftf gets the priveledge of holding the container once held by OsamG. \u00a0

\r\n

Klutch32: OsamG84 is the heart and an soul of the Tipsy's! \u00a0Always there when we need him the most.\u00a0

\r\n

Worst: He's here....I swear OsamG is truly here! While catching the view, Klutch and I felt complete at this GZ. Is that possible? Can we feel our Tipsy teammate? YUP! Pretty sure he'd be cool with this one...

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"needs \"blank\" \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:28\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "25750" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:28 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:28 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=cd7e0816-d0be-412f-b9bf-d8bc4b87f6ea" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=adb7f81a-0b2f-48a2-b118-9c26b63c11e2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4X02F) Tipsy Beach by Tipsy's\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4X02F\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Tipsy Beach\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Tipsy's\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 01/14/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 33\u00b0 25.459 W 117\u00b0 37.505\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 441887 N 3698502\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"3
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Other)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 7\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 49 Found it \"Didn't 23 Didn't find it \"Write 1 Write note \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Needs 2 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

TIPSY

\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

The Tipsy's love the beach. Night or day, it is the greatest place you can be. This cache blends in, but when you see it, you'll know it.

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\twolton\r\n\t
\r\n\t\tjbygba\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"available \"stealth \"scenic \"needs \"blank\" \"blank\"

What are Attributes?

available 24-7, stealth required, scenic view, needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "25883" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:28 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=adb7f81a-0b2f-48a2-b118-9c26b63c11e2" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=7049be95-a77d-42ed-aabd-720d7835ade8" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GCP2WR) Frog Lake by bullit\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GCP2WR\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Frog Lake\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n bullit\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 05/27/2005\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 12.204 W 121\u00b0 32.792\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 628982 N 4118425\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"3\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Regular)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 85 Found it \"Didn't 8 Didn't find it \"Write 5 Write note \"Archive\" 1 Archive \"Needs 1 Needs Archived \"Temporarily 1 Temporarily Disable Listing \"Needs 1 Needs Maintenance \"Owner 3 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n A 50 cal ammo can at Frog Lake in Henry Coe State Park\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n Nazgul, Marky and Joani and I decided to play hookie from work today to go for a hike in Coe.

Head down to this cache from Henry Coe and then walk the loop back around to Frog Rock and Flat Way Back. This gets the steep section(downhill this way) out of the way early in the hike, then it is a nice gradual climb on fantastic single track back to the headquarters.

This is a cool little pond(I don't know who names these things) that reminded us of Paradise Lake(larger pond) which we visited on backcountry day this year. So if you can't get out to Paradise Lake any time soon take a nice little hike around the loop and visit Frog Lake. Bring a fishing pole and some bass lures if you are so inclined... looks like there is good fishing to be had.

Cache starts out with the FTF bug for the FTF, a Canada geocoin(please trade for another coin), some compasses, a signal antenna ball from TN, something from Marky, a carabiner radio and a bottle opener.
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\t10 feet uphill from the stump behind the log\r\n\t
\r\n\t\t10 srrg hcuvyy sebz gur fghzc oruvaq gur ybt\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"needs \"blank\" \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27785" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:28 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=7049be95-a77d-42ed-aabd-720d7835ade8" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=dc3e95c2-4e36-48ce-9b21-dea01b7739dc" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC2QV9G) Please share my umbrella by scidawg\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC2QV9G\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Please share my umbrella\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n scidawg\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/24/2011\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 33\u00b0 56.995 W 083\u00b0 24.494\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17S E 277449 N 3759215\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 241 Found it \"Didn't 14 Didn't find it \"Write 2 Write note \"Temporarily 2 Temporarily Disable Listing \"Enable 2 Enable Listing \"Publish 1 Publish Listing \"Needs 3 Needs Maintenance \"Owner 3 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n small altoids container hidden in an urban environment\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n this is another in my musical lyrics series. The cache title is a song lyric from a song by The Hollies. The song title is your hint. Bring your own pen.

Congrats to GAGeonerd for FTF!\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tsee description\r\n\t
\r\n\t\tfrr qrfpevcgvba\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"takes \"public \"stealth \"park \"blank\" \"blank\"

What are Attributes?

takes less than 1 hour, public transit available, stealth required, park and grab\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "26145" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:28 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=dc3e95c2-4e36-48ce-9b21-dea01b7739dc" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=a6ecc53d-1b90-4724-95b9-2761172996ca" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC7602) Beat the Clock Series by Crowehunter (adopted from snake1411)\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC7602\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Beat the Clock Series\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Crowehunter (adopted from snake1411)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 07/26/2002\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 33\u00b0 55.689 W 083\u00b0 22.526\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17S E 280425 N 3756730\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2.5
\r\n Terrain:\r\n \"2.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Regular)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 11\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 185 Found it \"Didn't 5 Didn't find it \"Write 13 Write note \"Archive\" 1 Archive \"Needs 1 Needs Maintenance \"Owner 7 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n How good a cacher are you? Come hunt this timed obstacle cache and find out!\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n The coordinates to four Beat the Clock caches are listed on a slip of paper in the cache. Grab one, load the 4 coords into your gpsr, plan your route, start your stopwatch , then off you go!!
\r\n
\r\nAfter you've signed the logbooks in all four caches, return to the original Beat the Clock cache and mark your time. Let us know how you did using the following rating system:
\r\n
\r\n
    \r\n
  • Less than 45 mins Superman or Wonderwoman
  • \r\n
  • 45 - 60 mins Expert
  • \r\n
  • 61 - 75 mins Novice
  • \r\n
  • 1 hr 15 - 1 hr 45 mins Good
  • \r\n
  • 1 hr 46 mins - 2 hrs 15 mins o.k.
  • \r\n
  • More than 2 hrs 15 mins Sell your gpsr on E-bay; find a new hobby
    \r\n
    \r\nPlease do not use a bicycle while the clock is ticking. That would provide an unfair advantage.
    \r\n
    \r\nThe four Beat the Clock caches to look up are:
    \r\n
    \r\nMove slower and you'll be going backwards!
    \r\n
    \r\nSuck it up people! Get your butt in gear!
    \r\n
    \r\nMove IT! Move IT! Move IT!
    \r\n
    \r\nCould you possible go any slower?
    \r\nBE AWARE when using the app some of the caches do not show up on the map since they all start with the same coords as this one, but trust us they are all there. This is a great chance to receive 5 smileys so please be sure to log each one individually
    \r\n
    \r\n
  • \r\n
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tThe fallen tree has been removed and it is now just the stump. Green flagging.\r\n\t
\r\n\t\tGur snyyra gerr unf orra erzbirq naq vg vf abj whfg gur fghzc. Terra synttvat.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"dogs \"available \"dangerous \"ticks!\" \"thorns!\" \"blank\"

What are Attributes?

dangerous animals!, ticks!, thorns!, dogs allowed, available in winter\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "28688" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:28 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=a6ecc53d-1b90-4724-95b9-2761172996ca" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=a1127c55-7cfb-4054-9c2f-857aa2f1200e" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC57QQW) Kensington Public Path #6 by CraigmontRegal\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC57QQW\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Kensington Public Path #6\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n CraigmontRegal\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 06/26/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.494 W 122\u00b0 16.804\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 563286 N 4195876\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 30 Found it \"Didn't 10 Didn't find it \"Write 2 Write note \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

I placed a cache in Kensington as it appears that Kensington is quite \"cache empty\". It also occurs to me that Kensington is not very creative when it comes to naming public paths; they are almost all numbered, much like the Parisian arrondissements (neighborhoods) which are also all numbered. There is some PO near GZ. The cache is NOT on private property. BYOP

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tUnder Branches, A Foot From The Path, Camoed\r\n\t
\r\n\t\tHaqre Oenapurf, N Sbbg Sebz Gur Cngu, Pnzbrq\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"kid \"takes \"available \"poison \"stealth

What are Attributes?

poison plants!, not in front yard, kid friendly, takes less than 1 hour, available in winter, stealth required\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "26019" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:28 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=a1127c55-7cfb-4054-9c2f-857aa2f1200e" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=4345155f-baa4-400f-8984-47d602a668c4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC3ECT6) Drop of Water by hangus\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC3ECT6\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Drop of Water\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n hangus\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/11/2012\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 57.915 W 121\u00b0 46.474\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 607642 N 4202667\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 29 Found it \"Didn't 21 Didn't find it \"Archive\" 2 Archive \"Unarchive\" 1 Unarchive \"Temporarily 2 Temporarily Disable Listing \"Enable 1 Enable Listing \"Publish 1 Publish Listing \"Owner 2 Owner Maintenance \"Post 1 Post Reviewer Note \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n Easy access and parking close to cache. Nice walking paths around community center. Come check it out.\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n Water park and community center is visable from location.
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tNOT in the rocks.\r\n\t
\r\n\t\tABG va gur ebpxf.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "25102" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=4345155f-baa4-400f-8984-47d602a668c4" + } + }, + { + "recorded_at": "2019-01-28T07:06:29", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=cb7eab26-ba44-47b8-8761-bfebfa47780f" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4DQ6C) Red-Winged Blackbirds! by Hunt-n-Jeep\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4DQ6C\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Red-Winged Blackbirds!\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Hunt-n-Jeep\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 06/06/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 52.370 W 122\u00b0 19.217\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 559780 N 4191923\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 108 Found it \"Didn't 18 Didn't find it \"Write 1 Write note \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Needs 2 Needs Maintenance \"Post 1 Post Reviewer Note \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n This cache is found in Berkeley's\u00a0Cesar Chavez Park.\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n
The cache is another of\u00a0my \"wild bird\" cache\u00a0series--each of which is named after a\u00a0species commonly found\u00a0near GZ.
\r\n
\r\nThis particular cache is dedicated to the Red-Winged Blackbird--a small bird that is commonly seens in fields throughout North and Central America.\u00a0\u00a0
\r\n
\r\nThe males\u00a0are among\u00a0the most recognizable of birds with shimmering black plumage that is\u00a0highlighted by red wing patches.
\r\n
\r\nRed-Winged Blackbirds are also\u00a0fiercly\u00a0territorial and will aggessively defend perceived intruders, including much larger birds and land animals by swooping and attacking with their short, sharb beaks--so, if you happen to be near a nest beware!
\r\n

\r\nThis cache is a small cylindrical container\u00a0with room for small trade items.\u00a0
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tNeedles\r\n\t
\r\n\t\tArrqyrf\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"no \"no \"not \"not \"bikes \"picnic \"restrooms \"public \"parking \"available \"scenic \"needs \"dogs

What are Attributes?

no snowmobiles, no drinking water, not recommended at night, not 24-7, bikes allowed, picnic tables available, restrooms available, public transit available, parking available, available in winter, scenic view, needs maintenance, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:29\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "29446" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:29 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=cb7eab26-ba44-47b8-8761-bfebfa47780f" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=4ec375e2-2db3-495e-997c-6c37323c7103" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC43KRM) Terns! by Hunt-n-Jeep\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC43KRM\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Terns!\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Hunt-n-Jeep\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 12/31/2012\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 52.273 W 122\u00b0 19.272\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 559701 N 4191743\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 202 Found it \"Didn't 25 Didn't find it \"Write 2 Write note \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Needs 2 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n This cache can be found along the\u00a0Western edge of C\u00e9sar E. Chavez Park, located near the Berkeley Marina.
\r\n
\r\nIt is placed\u00a0near a picnic area with several tables, a couple of BBQ's and a beautiful view of the Golden Gate Bridge--so you might want to bring the family and\u00a0a picnic!

\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n This cache is\u00a0one of my \"wild bird caches\"--each of which is named after wild bird species that I happened to see from GZ while hiding the cache.
\r\n
\r\nThis particular cache is dedicated to the Forster's Tern--a\u00a0gull-like\u00a0shorebird characterized by a slim body, black-capped head plumage, a sharply pointed beak, pointed wing tips and a deeply forked tail.\u00a0 As I placed the cache, I saw several of these graceful flyers sail along the shoreline,occasionally giving their distinctive squawk.
\r\n
\r\nWhen you go, make sure to leave plenty of time to fully enjoy C\u00e9sar E. Chavez Park--which has been a mainstay of outdoor recreation in Berkeley for decades.
\r\n
\r\nOriginally called \"North Waterfront Park\" when it officially opened in 1991, the park was re-named \"C\u00e9sar E. Chavez Park\" in 1996 to honor the iconic Hispanic labor leader.
\r\n
\r\nIn addition to the aformentioned views, picnicking\u00a0and birdwatching opportunities, the 90-acre park also offers:

\r\n
    \r\n
  • Large grassy areas with rolling hills (commonly used for flying kites, remote control aircraft and frisbee games).
  • \r\n
  • Hiking trails; including the 1.25-mile (2.01 km) Dorothy Stegmann Trail around the park\u2019s perimeter (which is fully wheelchair accessible)
  • \r\n
  • A 17-acre off-leash dog area.
  • \r\n
  • A Solar Calendar.
  • \r\n
  • A wildlife sanctuary.
  • \r\n
\r\n
\r\nC\u00e9sar E. Chavez Park also hosts Berkeley's annual Kite Festival in late-July and many informal Solstice/Equinox celebrations.
\r\n
\r\nThe park is open from 6:00 am to 10:00 pm and there generally is ample parking available.
\r\n
\r\nBecause the park is VERY popular (especially when the weather is nice), some stealth will be required--but this particular hide will provide a bit more cover than some.
\r\n
\r\nCongratulations to Panda Ellie and Jellis for the co-FTF and thanks to Jellis for posting the photo!

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tCamo'd hanger.\r\n\t
\r\n\t\tPnzb'q unatre.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"not \"not \"bikes \"picnic \"restrooms \"drinking \"parking \"available \"scenic \"needs \"stroller \"stealth \"dogs

What are Attributes?

not wheelchair accessible, not recommended at night, not 24-7, bikes allowed, picnic tables available, restrooms available, drinking water nearby, parking available, available in winter, scenic view, needs maintenance, stroller accessible, stealth required, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "32268" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=4ec375e2-2db3-495e-997c-6c37323c7103" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=3b23851e-c9f0-40da-ab9f-d3008b3ea938" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC1GEE8) Sheppey by Moe311\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC1GEE8\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Unknown Sheppey\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Moe311\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 09/20/2008\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.606 W 122\u00b0 15.797\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 564761 N 4196096\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2.5
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 4\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 46 Found it \"Didn't 6 Didn't find it \"Write 5 Write note \"Needs 1 Needs Archived \"Temporarily 2 Temporarily Disable Listing \"Enable 2 Enable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Post 1 Post Reviewer Note \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

The cache is not at the listed coordinates.

\r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n You will find this \"camoed\" bison tube one Sheppey from the posted coordinates at a bearing of 42\u00b0 (true north).
\r\n
\r\n
\r\n

\r\nYou can validate your puzzle solution within 30 feet using certitude.
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\t[Puzzle] I used FizzyCalc
[Cache] In the curved one - More in Certitude
[Location] Bring the kids, celery, and lettuce!\r\n\t
\r\n\t\t[Puzzle] V hfrq SvmmlPnyp
[Cache] Va gur pheirq bar - Zber va Pregvghqr
[Location] Oevat gur xvqf, pryrel, naq yrgghpr!\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"kid \"parking \"watch \"blank\" \"blank\"

What are Attributes?

not 24-7, kid friendly, parking available, watch for livestock\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27259" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=3b23851e-c9f0-40da-ab9f-d3008b3ea938" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=aa0bf0ac-c5e4-4308-bbcc-dff6886d49f9" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC43D) Trifecta Vista by Ken & Alex\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC43D\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Trifecta Vista\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Ken & Alex\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 08/05/2001\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 53.575 W 122\u00b0 18.275\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 561144 N 4194161\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"3\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Other)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 320 Found it \"Didn't 25 Didn't find it \"Write 16 Write note \"Temporarily 1 Temporarily Disable Listing \"Enable 1 Enable Listing \"Needs 2 Needs Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n Excellent view of the Bay and Golden Gate Bridge. Short walk from parking.\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n This is a replacement for the Trifecta Reading Room cache which was pilleged. I chose a different spot which hopefully will be easier to get to, less threatened by poison oak and with luck () won't get pilleged!\r\n

The new cache is a little smaller, and does not really have room for books like the old one. It does have room for some goodies from nearby REI ...

\r\n

Contains a one-use camera for each group to take a picture of themselves. Please send an email to ken@bonsai.com when the camera is full, and I'll retrieve it, develop the pictures and get them up on a web site.

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \"\" FTF Micro Coin #1\r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "24920" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=aa0bf0ac-c5e4-4308-bbcc-dff6886d49f9" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=03dd4a20-47cd-4677-8daf-f4c645563d2c" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC3V3J7) Berkeley Way with a Jay by zachary95\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC3V3J7\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Berkeley Way with a Jay\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n zachary95\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 08/20/2012\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 52.231 W 122\u00b0 17.211\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 562722 N 4191688\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"3
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Not chosen)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 44 Found it \"Didn't 13 Didn't find it \"Write 2 Write note \"Archive\" 1 Archive \"Needs 1 Needs Archived \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n A small cache camo'd on berkeley way. I used to always see blue jays on berkeley way when I walked across it, this seemed a good place for a cache with meaning, and it has a mini park. \u00a0Maybe a good cache for kids.\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n This is a nice mini park, one of the many in berkeley. The bike path just next to it (west st.) was one of the few unpaved streets in Berkeley for years, \u00a0untill they paved it a few years ago and created a nice bike path, which has another cache on it. Historically it was the Santa Fe railroad but this was closed and the tacks were taken out sometime in the 70's.\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\t[no es el arbol]\r\n\t
\r\n\t\t[no es el arbol]\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"bikes \"available \"available \"needs \"drinking \"public \"parking \"takes \"kid \"stroller \"dogs \"stealth

What are Attributes?

bikes allowed, available in winter, available 24-7, needs maintenance, drinking water nearby, public transit available, parking available, takes less than 1 hour, kid friendly, stroller accessible, dogs allowed, stealth required\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27939" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=03dd4a20-47cd-4677-8daf-f4c645563d2c" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=89f048d6-c5e3-46d4-9611-20b4fc326dc2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC34GGD) Ohlone Greenway Trail - Behind the Old Supermarket by Olaf Itoff (adopted by bobf)\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC34GGD\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Ohlone Greenway Trail - Behind the Old Supermarket\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Olaf Itoff (adopted by bobf)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 09/19/2011\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.729 W 122\u00b0 18.406\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 560936 N 4196294\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 200 Found it \"Didn't 26 Didn't find it \"Write 8 Write note \"Temporarily 5 Temporarily Disable Listing \"Enable 5 Enable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 8 Owner Maintenance \"Update 1 Update Coordinates \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n Here is another Greenway Trail cache; this time near Moeser Lane. Stealth required. Enjoy!\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n For many years this supermarket served the neighboring community. Now it has modernized and moved up the trail.

Congratulations BerkeleyBoomers FTF!!!\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tLook low. Near a pole-ette. Magnetic.
[mottob eht ta xob lacirtcele eht htiw elop egral eht erongi]\r\n\t
\r\n\t\tYbbx ybj. Arne n cbyr-rggr. Zntargvp.
[mottob eht ta xob lacirtcele eht htiw elop egral eht erongi]\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"bikes \"available \"parking \"stealth \"kid \"park \"dogs \"blank\" \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

bikes allowed, available 24-7, parking available, stealth required, kid friendly, park and grab, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27417" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:29 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=89f048d6-c5e3-46d4-9611-20b4fc326dc2" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=541304fa-83a2-4f98-88ea-57f23647e2d0" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4RFY0) El Cerrito Swim Center by philton123\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4RFY0\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional El Cerrito Swim Center\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n philton123\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 11/03/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.872 W 122\u00b0 18.141\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 561323 N 4196561\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 51 Found it \"Didn't 19 Didn't find it \"Write 3 Write note \"Archive\" 1 Archive \"Publish 1 Publish Listing \"Needs 3 Needs Maintenance \"Owner 1 Owner Maintenance \"Update 1 Update Coordinates \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

Home of the best pool in El Cerrito.

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Cache is a small green container.\u00a0 Hillside, not pool side. Initial contents: Logbook, rubber band, and crayon.

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tStairway to Heaven\r\n\t
\r\n\t\tFgnvejnl gb Urnira\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "24887" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:30 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=541304fa-83a2-4f98-88ea-57f23647e2d0" + } + }, + { + "recorded_at": "2019-01-28T07:06:30", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=5aca7e26-424e-40c9-bb6d-f7b8ada9c3e9" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC48ZTW) Ode to the Library of Alexandria! by whytBuffalo\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC48ZTW\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Ode to the Library of Alexandria!\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n whytBuffalo\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 04/02/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 34\u00b0 06.600 W 118\u00b0 16.367\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 382609 N 3775083\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 32 Found it \"Didn't 4 Didn't find it \"Write 1 Write note \"Archive\" 1 Archive \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n This cache is the first in a series to honor and remember Carl Sagan, astronomy professor, Pulitzer Prize winning author, and the creator of the Emmy and Peabody award-winning PBS television series, COSMOS.\u00a0\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n In Episode 13: \"Who Speaks for Earth?\", Sagan informs his audience, \"If I could travel back in time, this is the place I would visit: the Library of Alexandria 2000 years ago. In here began the intellectual adventure that has led us into space. All the knowledge of the ancient world was once within these marble walls\". He goes on to tell the tragic story of the martyrdom of Hypatia of Alexandria - the first woman recognized as a mathematician and scientist since the recording of history.
\r\n
\r\nI'm pretty sure you can watch all 13 episodes online or streaming on netflix so when you have a chance, check it out!
\r\n
\r\nGood luck!\u00a0

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tSometime you have to “hit the ceiling”\r\n\t
\r\n\t\tFbzrgvzr lbh unir gb “uvg gur prvyvat”\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  \n \n Prefix\n \n Lookup\n \n Name\n \n Coordinate\n
\n \"Visible\"\n \n \"Reference\n \n \n R1\n \n R1\n \n Reference Point 1 (Reference Point)\n \n N 34\u00b0 06.600 W 118\u00b0 16.367 \n \n
\n  \n \n Note:\n \n This cache is the first in a series to honor and remember Carl Sagan, astronomy professor, Pulitzer Prize winning author, and the creator of the Emmy and Peabody award-winning PBS television series, COSMOS.

In Episode 13: \"Who Speaks for Earth?\", Sagan informs his audience, \"If I could travel back in time, this is the place I would visit: the Library of Alexandria 2000 years ago. In here began the intellectual adventure that has led us into space. All the knowledge of the ancient world was o\n

\n \n

\n \n

\n\n\n\r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"motorcycles \"bikes \"recommended \"parking \"wheelchair \"park \"available \"recommended \"available \"takes \"kid \"needs \"stroller \"stealth \"dogs

What are Attributes?

motorcycles allowed, bikes allowed, recommended for tourists, parking available, wheelchair accessible, park and grab, available in winter, recommended at night, available 24-7, takes less than 1 hour, kid friendly, needs maintenance, stroller accessible, stealth required, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/27/2019 23:06:30\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "34006" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Mon, 28 Jan 2019 07:06:30 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Thu, 28-Feb-2019 07:06:30 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=5aca7e26-424e-40c9-bb6d-f7b8ada9c3e9" + } + } + ], + "recorded_with": "betamax/0.8.1" +} \ No newline at end of file diff --git a/test/cassettes/geocaching_my_finds.json b/test/cassettes/geocaching_my_finds.json new file mode 100644 index 0000000..b5e9314 --- /dev/null +++ b/test/cassettes/geocaching_my_finds.json @@ -0,0 +1,1454 @@ +{ + "http_interactions": [ + { + "recorded_at": "2019-01-17T02:14:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/my/logs.aspx?lt=2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n\r\n\tYour Geocaching Logs (Filtered by Log Type)\r\n\r\n\r\n\r\n \r\n \r\n\r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n
\r\n \r\n\r\n \r\n \r\n \r\n\r\n Skip to Content\r\n\r\n
\r\n\t\n
\n

\n By using this site, you agree to its use of cookies as provided in our policy.\n

\n \n
\n\r\n
\n\n\r\n\r\n \r\n\r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n\r\n \r\n\r\n
\r\n \r\n \r\n \r\n
\r\n \r\n\r\n
\r\n\t\r\n \n \n
\n\t\n\t

\n\t\n
\n

\n Your Geocaching Logs (Filtered by Log Type)\n

\n \n

\n 213 result(s).

\n

\n \n Show:\n Archive, Attended, Didn't find it, Enable listing, Found it, Needs archived, Needs maintenance, Owner maintenance, Post reviewer note, Submit for review, Temporarily disable listing, Update coordinates, Will attend, Write note, All Logs\n

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n \"Found\n \n \n \n 07/29/2018\n \n Pillar \n \n Arizona\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/24/2018\n \n Mozarts Geburtshaus \n \n Salzburg, Austria\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/13/2018\n \n Sculptured Stairway \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2018\n \n Lorain NCIT #17 \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2018\n \n Lorain NCIT #16 \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2018\n \n Lorain NCIT #15 \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2018\n \n Lorain Co. BRaB – Follow the Red Brick Road  \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2018\n \n All that Jazz \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/10/2018\n \n Betty Hughes Park \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/09/2018\n \n Grandpa's Pasttime  \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/09/2018\n \n Kinda Artsy Don't Ya Think \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/08/2018\n \n Columbus Rd - Mt Vernon \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/08/2018\n \n We're on a bridge, Charlie! \n \n Ohio\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/22/2017\n \n Grant Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/20/2017\n \n Ow, my stump! Zombie first aid=>&lt \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/19/2017\n \n Team Io-Honu 5K \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/19/2017\n \n Eureka! You've got it! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/13/2017\n \n Long Overdue \n \n South Carolina\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/30/2017\n \n Basic LPC \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/30/2017\n \n In n Out Urge VII \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/30/2017\n \n Time for a Stretch? \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2017\n \n East Bay Brewery Series #6: Punk Rock and Pyramids \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2017\n \n East Bay Brewery Series #16: Field Trip \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2017\n \n Bobf Zooms to 10K \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2017\n \n East Bay Brewery Series #9: Ich liebe Bier! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2017\n \n Welcome to Gentrification [partly bronze] \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2017\n \n Medicine Wheel, Eastern Spur: Maahes \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/09/2017\n \n Triangle Island \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/28/2017\n \n East Bay Brewery Series #17: Elevate Me Later \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/28/2017\n \n 3B Chestnut and Something \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/28/2017\n \n Let's Go See the Albany Mudflat! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/15/2017\n \n India Wharf \n \n Massachusetts\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/15/2017\n \n Providence Nano Series #3- 2 Hour Parking \n \n Rhode Island\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/14/2017\n \n Providence Nano Series #8- Thayer Street \n \n Rhode Island\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/13/2017\n \n Providence Nano Series #1 (new)- Convention Center \n \n Rhode Island\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/12/2017\n \n Depot Hill Depot \n \n Connecticut\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/12/2017\n \n VLM1: Longship Docking \n \n Connecticut\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2017\n \n N\u00e1nob\u00fas \n \n Massachusetts\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2017\n \n Adventurous Ladder \n \n Massachusetts\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2017\n \n Where's the Beef? (Hadley) \n \n Massachusetts\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/10/2017\n \n Jumbo Welcome \n \n Massachusetts\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/09/2017\n \n Ship Yard Way \n \n Massachusetts\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/06/2017\n \n Let's Play Monopoly \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/06/2017\n \n Let's Go to Market >>> \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/21/2017\n \n Semper Fi Heroes \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/20/2017\n \n 204 Steps \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/20/2017\n \n NOT ALWAYS # ONE \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/20/2017\n \n Tipsys are tOo aTtracTive  \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n Henry W. Coe State Park HQ \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n M&J Geobeads #2 - DNF It, Reborn \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n Pack 766 COE Weekend #2 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n That's Middle Ridge \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n Flat Way Back \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n Frog Rock II \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n My Dad's Ammo Can \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/03/2015\n \n M&J Geobeads #1 - Found It \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 01/25/2015\n \n A Block South of Memorial Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 01/25/2015\n \n A Block North of Memorial Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 01/25/2015\n \n R.I.F. \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 10/05/2014\n \n Jewel Lake \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 09/22/2014\n \n Trifecta Vista \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/31/2014\n \n LIBBY VIEW - Reborn \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/24/2014\n \n Busiest Cache in Athens \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/23/2014\n \n Suck it up & Get your butt in gear!! - BTC #4  \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/23/2014\n \n Break on Bridge \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/21/2014\n \n Your Vision \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/21/2014\n \n Classic Fail - DECKED! \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/16/2014\n \n A Park Hidden In Plain Sight \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 08/04/2014\n \n El Cerrito Swim Center \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/23/2014\n \n Ship Harbor Earthcache \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/22/2014\n \n More Time on Orcas! \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/21/2014\n \n Row Row Row Your Boat \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/20/2014\n \n Fly/Drive #10.3 - Koffee Korner \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/18/2014\n \n Be Well \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/18/2014\n \n Council Crest Park - South \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/17/2014\n \n Mother's Little Helper \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/17/2014\n \n MBG Slides Again \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/17/2014\n \n Poetry in Motion \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/16/2014\n \n Klickitat Mall \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/16/2014\n \n O Christmas Tree \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/16/2014\n \n Island Trails #2: Mountian Top \n \n Oregon\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Richmond Marina Bay \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Bay Area History - Rosie \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Interesting Marker Here \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Concrete Bench \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Shipyard Stories, Jr. \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Unusual Map \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Down the Trail From Shimada \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Bench With Two Perches \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Western Stege Marsh Restoration \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Craig Fox Bench \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Near Where The Wild Things Are \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Close To The Big Picture \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Dog Park Intersection \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Little Tree \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/06/2014\n \n Eucalyptus Crow \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/04/2014\n \n SF Bay Trail: Squished at Pt. Isabel \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/04/2014\n \n RUSTY THE DOG \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/02/2014\n \n Asian American History Site #1: Shimada Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/02/2014\n \n Bay Trail Access \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/02/2014\n \n Resource Protection Area \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/02/2014\n \n Shore Patrol \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 07/02/2014\n \n Point Isabel Dog Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/29/2014\n \n Brain Game ❦ \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/27/2014\n \n Kensington Public Path #6 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/22/2014\n \n Beach Art House \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/17/2014\n \n Mural Potential on the Greenway Trail \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/16/2014\n \n Greenway at Lincoln Avenue \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n Eastshore Park: Gilman Street \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n The Berkeley Meadow \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n Great Egrets! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n Sea Gulls! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n On the Fence \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n House Sparrows! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n Mallards! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n Cooper's Hawk! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 06/07/2014\n \n McLaughlin Eastshore Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/31/2014\n \n Turkey Vulture! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/26/2014\n \n Herbwalk: Pineappleweed \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/24/2014\n \n It lights your way at night \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/19/2014\n \n 0.5 in Terrace Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 05/07/2014\n \n El Cerrito Public Library \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/27/2014\n \n Ohlone Greenway Trail - Bus Stop \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/20/2014\n \n spy cache hill \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/19/2014\n \n Science Cache #7: Pi \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/19/2014\n \n Berkeley Pictures \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/19/2014\n \n Make Me a Bike Path! ::POOF!:: You're a Bike Path! \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/19/2014\n \n WisteriaMysteria \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/19/2014\n \n Fresh Baked Anvils \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/18/2014\n \n Chipped \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/17/2014\n \n Sunset View Cemetery \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/16/2014\n \n mendocino park- R#3 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/16/2014\n \n Stop Light Cache \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/15/2014\n \n Joshua Tree Inn Room 8 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/14/2014\n \n Tortoise Island \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/14/2014\n \n Xenolith - Joshua Tree NP \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/14/2014\n \n Tor – Joshua Tree NP \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/13/2014\n \n Go on the Wagon. \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/13/2014\n \n JTSRR.ORG \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/13/2014\n \n A Stop in Joshua Tree \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/12/2014\n \n Sparkling Cipher \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2014\n \n Sensitive on Bay Trail \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2014\n \n Cerrito Creek \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 04/11/2014\n \n FTFLPH \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/30/2014\n \n Diagon Alley ❦ \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/22/2014\n \n Easter CCM \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/22/2014\n \n Crothers Road Detour \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/22/2014\n \n crothers rd. \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/21/2014\n \n The Franciscan Melange at Rodeo Beach \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/21/2014\n \n The Rainbow Sands of Rodeo Beach \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/21/2014\n \n Rodeo Beach Soil Horizons \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/21/2014\n \n Rodeo Lagoon Sand Berm \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/16/2014\n \n Why? Why not. \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n North Branch 1916-1936 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n rock the vine \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n Beads on a Green Necklace aka Take Off Your Shoes \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n From a Creek to a Ditch ... \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n Ohlone Greenway Trail - Wildflower Garden Ahead \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n Hanging Around the Dog Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n El Cerrito Urban Forest Demonstration Project \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n Ohlone Greenway Trail - The Dinosaur Forest \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/15/2014\n \n Ohlone Greenway Trail - Creek Overlook \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/11/2014\n \n holiday cache- christmas \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/11/2014\n \n ⚐ A Multilingual Mystery ⚑ \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/09/2014\n \n dead end R#1 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/09/2014\n \n HuberTuber \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/08/2014\n \n Albany o \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/08/2014\n \n Missing Tree \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/08/2014\n \n Where's Waldo? \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/02/2014\n \n Yosemite Steps \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/02/2014\n \n All The World's A Stage \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/02/2014\n \n MetaMoss ❦ \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/02/2014\n \n MetaRock ❦ \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/02/2014\n \n The Grim Grotto \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 03/02/2014\n \n Of Oaks and Redwoods \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/23/2014\n \n Kenna's Albany Beach Chill-out \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/23/2014\n \n Whippet Walk \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/23/2014\n \n Tidal Flat \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/22/2014\n \n One Hundred Years and Counting \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/22/2014\n \n The Gioia Pizza \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/21/2014\n \n Leaving North Berkeley (BART) \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/21/2014\n \n On the Atchison, Topeka and Santa Fe \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/21/2014\n \n Cows? In Berkeley? \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/20/2014\n \n First House in Berkeley \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/17/2014\n \n 🎥 Cerrito 🎞 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/17/2014\n \n Empty Field \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/17/2014\n \n Bart: El Cerrito Plaza Station \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/17/2014\n \n Corkscrew \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 02/16/2014\n \n Happy Hour #3 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 01/20/2014\n \n Near the Taxi Stand \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 01/19/2014\n \n Solano Stroll \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 12/27/2013\n \n Sunday Tradition \n \n Georgia\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 12/14/2013\n \n School's Out for the Summer! \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 12/14/2013\n \n The New Loyalty Cache \n \n Washington\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/27/2013\n \n Parque de Cerrito Vista \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/16/2013\n \n Don't Forget the Doughboys. \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/10/2013\n \n Going Up the Vine \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/08/2013\n \n Castro Adobes \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/07/2013\n \n Ocean View Park \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/07/2013\n \n Bridge to the Bay \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/05/2013\n \n ELECTRIFYING \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/04/2013\n \n Near the Turnoff to the Bay Trail \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/02/2013\n \n Happy Cache \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/02/2013\n \n Swing With A View \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/02/2013\n \n On the Border 2 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/02/2013\n \n Albany Hill \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/02/2013\n \n Bridge over the River Quail \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 11/01/2013\n \n Ohlone Greenway Trail - Waldo Benches \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 10/30/2013\n \n albany library- R#2 \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 10/30/2013\n \n On the Arrow \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 10/30/2013\n \n I've got a complex \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 10/30/2013\n \n BOBF 1K \n \n California\n  \n \n \n Visit log\n \n
\n \"Found\n \n \n \n 10/28/2013\n \n Ollie's Park \n \n California\n  \n \n \n Visit log\n \n
\n \n\n\n\r\n \r\n
\r\n\r\n
\r\n
\r\n\t\r\n \r\n
\r\n\r\n
\r\n\r\n

\r\n \r\n Advertising with Us\r\n

\r\n \r\n
\r\n
\r\n
\r\n
\r\n\r\n \r\n\r\n Return to the Top of the Page\r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n\r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n
\r\n \r\n
\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "254078" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:05 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:06 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/my/logs.aspx?lt=2" + } + }, + { + "recorded_at": "2019-01-17T02:14:07", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=74843166-0705-449d-b45a-ee47830895d5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC7G5J4) Pillar by buzzcut39\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC7G5J4\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Pillar\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n buzzcut39\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 12/17/2017\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 35\u00b0 11.217 W 111\u00b0 37.200\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 12S E 443552 N 3893951\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 44 Found it \"Write 1 Write note \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Nature trail loop behind hotel.\u00a0 Nice walk enjoying the trees. \u00a0Used by hotel guests and joggers.

\r\n

Rocks marking the trail edge.\u00a0\u00a0 Bring your own pen. Happy caching.

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\trock\r\n\t
\r\n\t\tebpx\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"dogs \"available \"available \"parking \"blank\" \"blank\"

What are Attributes?

dogs allowed, available 24-7, available in winter, parking available\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:06\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "24665" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:06 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:06 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=74843166-0705-449d-b45a-ee47830895d5" + } + }, + { + "recorded_at": "2019-01-17T02:14:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=d65ef80c-0d2f-49a9-9810-72cdde90f461" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC3MN49) Mozarts Geburtshaus by lsoeve\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC3MN49\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Mozarts Geburtshaus\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n lsoeve\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 06/01/2012\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 47\u00b0 48.008 E 013\u00b0 02.616\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 33T E 353501 N 5295939\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 1409\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 9029 Found it \"Didn't 158 Didn't find it \"Write 91 Write note \"Temporarily 11 Temporarily Disable Listing \"Enable 11 Enable Listing \"Publish 1 Publish Listing \"Needs 39 Needs Maintenance \"Owner 35 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n

\r\n

\r\n

(c) wikipedia/Philip P\u00f6tsch

\r\n

Mozarts Geburtshaus

\r\n
\r\n
In the house Getreidegasse 9 Joannes Chrysostomus Wolfgangus Theophilus Mozart, known as Wolfgang Amad\u00e9 Mozart was born on the 27th of january 1756. His parents and his older sister Nannerl lived on the third floor in an rent appartment.
\r\n
\r\n1880 the International Mozarteum Foundation opened a Mozart museum in this house. Main attractions are several music instruments that belonged to Wolfgang Mozart.
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\t[E] Rainpipe. Der Maronimann weiß Bescheid.
[D] Regenrinne. The Chestnutmen knows our secret.\r\n\t
\r\n\t\t[E] Envacvcr. Qre Znebavznaa jrvß Orfpurvq.
[D] Ertraevaar. Gur Purfgahgzra xabjf bhe frperg.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"available \"wheelchair \"stealth \"recommended \"blank\" \"blank\"

What are Attributes?

available 24-7, wheelchair accessible, stealth required, recommended for tourists\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \"\" BLB - Projekt Twenty Thirteen Geocoin\r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:07\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "28708" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:06 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:07 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=d65ef80c-0d2f-49a9-9810-72cdde90f461" + } + }, + { + "recorded_at": "2019-01-17T02:14:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=5183b3ad-3fc8-4be6-bef8-90e976924edc" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GCK5ZZ) Sculptured Stairway by CapFantasy\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GCK5ZZ\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Sculptured Stairway\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n CapFantasy\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 08/03/2004\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 17.356 W 082\u00b0 12.945\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 398200 N 4571581\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 9\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 414 Found it \"Didn't 42 Didn't find it \"Write 11 Write note \"Temporarily 2 Temporarily Disable Listing \"Enable 2 Enable Listing \"Needs 2 Needs Maintenance \"Owner 4 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n These steps have been here for a long time you as you can see, but what is the real meaning behind them. Is it a sculpture or just alien stairs to nowhere? I’ve checked with the Oberlin Historical society and they don’t know either but they’re looking into it. Maybe we’ll never know.Container is a film canister.\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tIt’s in the middle of the stairs under one of the 2 middle rocks.\r\n\t
\r\n\t\tVg’f va gur zvqqyr bs gur fgnvef haqre bar bs gur 2 zvqqyr ebpxf.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"kid \"available \"takes \"blank\" \"blank\" \"blank\"

What are Attributes?

kid friendly, available 24-7, takes less than 1 hour\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:07\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "26154" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:06 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:07 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=5183b3ad-3fc8-4be6-bef8-90e976924edc" + } + }, + { + "recorded_at": "2019-01-17T02:14:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=befa1978-27a3-47cb-a8d3-9c6197eead08" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4QVM1) Lorain NCIT #17 by LorainCountyParks\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4QVM1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Lorain NCIT #17\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n LorainCountyParks\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 10/01/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 17.364 W 082\u00b0 12.356\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 399023 N 4571585\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 86 Found it \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Welcome to the

\r\n

North Coast Inland Trail

\r\n

of the Lorain County Metro Parks

\r\n

\u00a0

\r\n

The North Coast Inland Trail is also known as the skinniest park in the Lorain County Metro Parks system. The trail is open to non-motorized traffic of all kinds (except skateboards), including walkers, runners, bicyclers, in-line skaters and cross-country skiers. The trail\u2019s long 13 miles straight-aways pass through a variety of countryside including farm, field and forest, and numerous intersections serve as convenient places to jump on or off the trail. So grab your bike, in-line skates or cross-country skis and check it out and hunt the caches.

\r\n

All the Geocaches along the trail are within about 30\u2019 of the blacktop and should be winter friendly. There is no need to venture past the tree line off the trail or onto private property. Please be considerate.

\r\n

These Geocaches are not intended to be hard and are hidden in a similar manner. The hints and terrain ratings should help you in your hunt. If you have given a good searched and are convinced the cache is not there, you have our permission to place a container and claim the smiley. Also, if the logs are full or wet, please add a piece of paper and note it in your log. We will fix the problem and this will keep the trail fun for the next cachers.

\r\n

Keep in mind there is poison ivy along the trail and though we tried to stay away from it, please use caution if it has grown close to the caches.

\r\n

There are several parking areas along the trail to start you hike or ride your bike. Here are a few:

\r\n

Kipton\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0N41 16.038\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Oberlin\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 17.090

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 18.230\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 13.091

\r\n

Elyria\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 21.829\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Bur Oak\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 24.763

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 07.117\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W082 06.092

\r\n

Days Dam\u00a0\u00a0\u00a0\u00a0\u00a0 N41 26.527\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0Colorado Ave \u00a0\u00a0\u00a0N41 27.593

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W82 06.384\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W082 06.747\u00a0

\r\n

The trail is open from dawn to dusk--No night caching--Please observe all Park rules.

\r\n

North Coast Inland Trail Map

\r\n

Geocaching in\u00a0Lorain County Metro Park District\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tmagnetic--fence\r\n\t
\r\n\t\tzntargvp--srapr\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"bikes \"needs \"blank\" \"blank\" \"blank\"

What are Attributes?

not 24-7, bikes allowed, needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:07\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "34744" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:07 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:07 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=befa1978-27a3-47cb-a8d3-9c6197eead08" + } + }, + { + "recorded_at": "2019-01-17T02:14:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=31cdf4ed-a1d5-4a08-9483-0dd375a51814" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4QKX3) Lorain NCIT #16 by LorainCountyParks\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4QKX3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Lorain NCIT #16\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n LorainCountyParks\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 10/01/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 17.262 W 082\u00b0 12.460\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 398875 N 4571398\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 73 Found it \"Didn't 11 Didn't find it \"Write 1 Write note \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Welcome to the

\r\n

North Coast Inland Trail

\r\n

of the Lorain County Metro Parks

\r\n

\u00a0

\r\n

The North Coast Inland Trail is also known as the skinniest park in the Lorain County Metro Parks system. The trail is open to non-motorized traffic of all kinds (except skateboards), including walkers, runners, bicyclers, in-line skaters and cross-country skiers. The trail\u2019s long 13 miles straight-aways pass through a variety of countryside including farm, field and forest, and numerous intersections serve as convenient places to jump on or off the trail. So grab your bike, in-line skates or cross-country skis and check it out and hunt the caches.

\r\n

All the Geocaches along the trail are within about 30\u2019 of the blacktop and should be winter friendly. There is no need to venture past the tree line off the trail or onto private property. Please be considerate.

\r\n

These Geocaches are not intended to be hard and are hidden in a similar manner. The hints and terrain ratings should help you in your hunt. If you have given a good searched and are convinced the cache is not there, you have our permission to place a container and claim the smiley. Also, if the logs are full or wet, please add a piece of paper and note it in your log. We will fix the problem and this will keep the trail fun for the next cachers.

\r\n

Keep in mind there is poison ivy along the trail and though we tried to stay away from it, please use caution if it has grown close to the caches.

\r\n

There are several parking areas along the trail to start you hike or ride your bike. Here are a few:

\r\n

Kipton\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0N41 16.038\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Oberlin\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 17.090

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 18.230\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 13.091

\r\n

Elyria\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 21.829\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Bur Oak\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 24.763

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 07.117\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W082 06.092

\r\n

Days Dam\u00a0\u00a0\u00a0\u00a0\u00a0 N41 26.527\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0Colorado Ave \u00a0\u00a0\u00a0N41 27.593

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W82 06.384\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W082 06.747\u00a0

\r\n

The trail is open from dawn to dusk--No night caching--Please observe all Park rules.

\r\n

North Coast Inland Trail Map

\r\n

Geocaching in\u00a0Lorain County Metro Park District\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tmagnetic--fence\r\n\t
\r\n\t\tzntargvp--srapr\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"bikes \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

not 24-7, bikes allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:08\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "35364" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:07 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:08 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=31cdf4ed-a1d5-4a08-9483-0dd375a51814" + } + }, + { + "recorded_at": "2019-01-17T02:14:08", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=973b778f-2dc2-4b50-967a-de7dbaa300f2" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4QKT1) Lorain NCIT #15 by LorainCountyParks\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4QKT1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Lorain NCIT #15\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n LorainCountyParks\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 10/01/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 17.173 W 082\u00b0 12.586\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 398697 N 4571236\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 77 Found it \"Didn't 7 Didn't find it \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Welcome to the

\r\n

North Coast Inland Trail

\r\n

of the Lorain County Metro Parks

\r\n

\u00a0

\r\n

The North Coast Inland Trail is also known as the skinniest park in the Lorain County Metro Parks system. The trail is open to non-motorized traffic of all kinds (except skateboards), including walkers, runners, bicyclers, in-line skaters and cross-country skiers. The trail\u2019s long 13 miles straight-aways pass through a variety of countryside including farm, field and forest, and numerous intersections serve as convenient places to jump on or off the trail. So grab your bike, in-line skates or cross-country skis and check it out and hunt the caches.

\r\n

All the Geocaches along the trail are within about 30\u2019 of the blacktop and should be winter friendly. There is no need to venture past the tree line off the trail or onto private property. Please be considerate.

\r\n

These Geocaches are not intended to be hard and are hidden in a similar manner. The hints and terrain ratings should help you in your hunt. If you have given a good searched and are convinced the cache is not there, you have our permission to place a container and claim the smiley. Also, if the logs are full or wet, please add a piece of paper and note it in your log. We will fix the problem and this will keep the trail fun for the next cachers.

\r\n

Keep in mind there is poison ivy along the trail and though we tried to stay away from it, please use caution if it has grown close to the caches.

\r\n

There are several parking areas along the trail to start you hike or ride your bike. Here are a few:

\r\n

Kipton\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0N41 16.038\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Oberlin\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 17.090

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 18.230\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 13.091

\r\n

Elyria\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 21.829\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0Bur Oak\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 N41 24.763

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 W082 07.117\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W082 06.092

\r\n

Days Dam\u00a0\u00a0\u00a0\u00a0\u00a0 N41 26.527\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0Colorado Ave \u00a0\u00a0\u00a0N41 27.593

\r\n

\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W82 06.384\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0W082 06.747\u00a0

\r\n

The trail is open from dawn to dusk--No night caching--Please observe all Park rules.

\r\n

North Coast Inland Trail Map

\r\n

Geocaching in\u00a0Lorain County Metro Park District\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tfilm canister hanging slightly up the hill
\r\n\t
\r\n\t\tsvyz pnavfgre unatvat fyvtugyl hc gur uvyy
\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"bikes \"needs \"blank\" \"blank\" \"blank\"

What are Attributes?

not 24-7, bikes allowed, needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:08\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "35034" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:07 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:08 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=973b778f-2dc2-4b50-967a-de7dbaa300f2" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=def80ce4-1f13-4e9d-990b-70d3e2ac8082" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC5DP73) Lorain Co. BRaB – Follow the Red Brick Road by Visit Lorain County\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC5DP73\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Lorain Co. BRaB – Follow the Red Brick Road \r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Visit Lorain County\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 09/27/2014\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 17.080 W 082\u00b0 13.076\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 398010 N 4571073\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 387 Found it \"Didn't 10 Didn't find it \"Write 6 Write note \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Needs 5 Needs Maintenance \"Owner 2 Owner Maintenance \"Update 1 Update Coordinates \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

The bike trail through Oberlin is like a trip back in time. The city is rich in Underground Railroad history. From this hiding spot, you can see the old train depot and across the street is the historic Gasholder Building structure, which is being restored as the future home of the Underground Railroad Center. The structure will serve as a visitors center and a park and ride facility for cyclists. The brick road you are standing at is part of the bike trail.

\r\n

Cache is placed with permission.

\r\n

\u00a0

\r\n

\r\n

\u00a0This cache is part of the Back Roads and Beaches Geo Trail in Lorain County and will take you\u00a0along rolling, rural roads with beautiful scenery that ranges from farmland and forest to the nautical flavor of the Lake Erie shoreline. Find all 15 caches, complete the passport and return it for a Back Roads and Beaches geocoin. If you find you're having difficulties finding a cache give us a call, 440-984-5282. We always give an A for effort!\u00a0

\r\n

Stay and spend time exploring our area\u2019s finest wineries, museums, galleries, and eateries. Discover cycling, hiking, zipline canopy tours, kayaking, geocaching and more outdoor adventures along the Back Roads and Beaches route.

\r\n

\r\n

\u00a0

\r\n

Download your Passport Here

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\thanging like an ornament about face high\r\n\t
\r\n\t\tunatvat yvxr na beanzrag nobhg snpr uvtu\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"dogs \"available \"recommended \"available \"wheelchair \"parking \"bikes \"needs \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

dogs allowed, available 24-7, recommended at night, available in winter, wheelchair accessible, parking available, bikes allowed, needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:08\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "31008" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:07 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:08 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=def80ce4-1f13-4e9d-990b-70d3e2ac8082" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=8c1afcb3-82e5-428e-baa3-86f93053aa70" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC6D6A9) All that Jazz by Team B.E.O.K.\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC6D6A9\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional All that Jazz\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Team B.E.O.K.\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/12/2016\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 41\u00b0 17.416 W 082\u00b0 13.121\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 397956 N 4571696\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 9\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 75 Found it \"Didn't 14 Didn't find it \"Write 6 Write note \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

This structure, Oberlin College\u2019s Kohl Building, is home to the largest privately held jazz collection in the country.

\r\n

Take in the view, such as it is, and enjoy this great piece of architecture.\u00a0

\r\n

\u201cJazz,\u201d like geocaching, \u201cwashes away the dust of every day life.\u201d
\r\n- a butchered Art Blakey quote

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tMagnetic with a corner view from upstairs.\r\n\t
\r\n\t\tZntargvp jvgu n pbeare ivrj sebz hcfgnvef.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"scenic \"stealth \"available \"blank\" \"blank\" \"blank\"

What are Attributes?

scenic view, stealth required, available in winter\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:08\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "25344" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:07 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:08 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=8c1afcb3-82e5-428e-baa3-86f93053aa70" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=39419110-2124-4e5f-befa-e6ac235baac4" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC6NHPP) Betty Hughes Park by boydfamily\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC6NHPP\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Betty Hughes Park\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n boydfamily\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 07/15/2016\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 39\u00b0 48.311 W 083\u00b0 53.283\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17S E 252758 N 4410125\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 191 Found it \"Didn't 13 Didn't find it \"Write 8 Write note \"Temporarily 1 Temporarily Disable Listing \"Enable 1 Enable Listing \"Publish 1 Publish Listing \"Owner 6 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

Welcome to Yellow Springs

\r\n

Yellow Springs is a small town with a population of about 3,600. The Yellow Springs community is known for its recreational attractions, wonderful downtown shops and unique restaurants.\u00a0The community is culturally diverse and represents a wide range of political and social views with an emphasis on being open and friendly.

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n
\r\n

There is a variety of plentiful leisure activities for all ages. The community is located on the Little Miami Scenic Trail Bike Path, which runs north and south through the community. The total length of the path is 69 miles, extending all the way down to Cincinnati. Spend the afternoon biking, skating or take a hike through Glen Helen nature preserve. Glen Helen is a 1000-acre nature preserve offering miles of trails highlighting springs, waterfalls, limestone cliffs and wooded areas. Close to the community are the Clifton Gorge State Nature Preserve and John Bryan State Park, which offer more opportunities for hiking and camping.

\r\n

Throughout the year, the community has street festivals, craft fairs, art festivals, book fairs and many other community events. The community boasts a community center, seasonal swimming pool, fishing pond, sports fields, tennis courts and other activities for all ages.

\r\n

\u00a0

\r\n

Betty Hughes park is one of several small community parks located within the Village of Yellow Springs. The best parking is down the street near the bike trail. From there it is a short walk to the park. The cache is a micro hidden along the edge of the park.

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tlow along bottom of fence\r\n\t
\r\n\t\tybj nybat obggbz bs srapr\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  \n \n Prefix\n \n Lookup\n \n Name\n \n Coordinate\n
\n \"Visible\"\n \n \"Parking\n \n \n P0\n \n P0\n \n legal parking lot (Parking Area)\n \n N 39\u00b0 48.373 W 083\u00b0 53.273 \n \n
\n  \n \n Note:\n \n \n
\n \n

\n \n

\n\n\n\r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"not \"bikes \"stealth \"picnic \"poison

What are Attributes?

poison plants!, not recommended at night, not 24-7, bikes allowed, stealth required, picnic tables available\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:08\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "32632" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:07 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:08 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=39419110-2124-4e5f-befa-e6ac235baac4" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=47c40fc6-f743-4abf-a6a7-f661afe39016" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC5TZMN) Grandpa's Pasttime by Bashert219\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC5TZMN\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Grandpa's Pasttime \r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Bashert219\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 05/06/2015\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 40\u00b0 21.932 W 082\u00b0 23.483\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 381865 N 4469258\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"3
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Regular)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 2\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 76 Found it \"Didn't 1 Didn't find it \"Write 2 Write note \"Publish 1 Publish Listing \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

This cache is in memory of a great man. These coordinates will take you to his greatest love, second only to his family. This is a site he longed to visit but never got the chance. So, in his honor, we have placed his cache with a great view. This cache isn't easy to visit when the area is busy, but I hope you come back to enjoy a day when it is. I will be here and I know now he will too.

\r\n

Thank you for helping us to honor his love of the game.\u00a0

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

The cache is a large, snap-lid, plastic container wrapped in camouflage tape. The location can be busy at times, especially on weekends in the spring. It is not a cache you'll be able to do when muggles are present without looking suspicious.\u00a0

\r\n

The container is big enough to leave tokens and TBs.

\r\n

Please be respectful of the location and the institution associated with it.\u00a0

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tHint 1: The journey may bring you down, but finding this cache will lift you up.

If Needed

Hint 2: Take a front row seat.\r\n\t
\r\n\t\tUvag 1: Gur wbhearl znl oevat lbh qbja, ohg svaqvat guvf pnpur jvyy yvsg lbh hc.

Vs Arrqrq

Uvag 2: Gnxr n sebag ebj frng.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"no \"no \"no \"not \"not \"not \"no \"not \"bikes \"parking \"available \"takes \"kid \"dogs

What are Attributes?

no camping, no public restrooms, no campfires, not in abandoned structure, not night cache, not recommended at night, no difficult climbing, not in front yard, bikes allowed, parking available, available in winter, takes less than 1 hour, kid friendly, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "28310" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:08 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=47c40fc6-f743-4abf-a6a7-f661afe39016" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=5e787c6b-f586-4a56-9a8a-70c42c8922b9" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC2J411) Kinda Artsy Don't Ya Think by ponyexpress4me & Sis\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC2J411\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Kinda Artsy Don't Ya Think\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n ponyexpress4me & Sis\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 11/11/2010\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 40\u00b0 22.074 W 082\u00b0 23.605\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 381697 N 4469523\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 274 Found it \"Didn't 16 Didn't find it \"Write 1 Write note \"Needs 1 Needs Archived \"Publish 1 Publish Listing \"Needs 2 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \"Understorms\" by Barry Gunderson 1992. What an artisitc feat. Parking is just across the street. Good luck on your quest to find. I'll bet you didn't have this in mind!\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n Black or white or is it white and black.

You are looking for a camo match stick holder.

Replace with care! Muggles may be everywhere!

Bring your own pencil.

Congratulations to Freash for FTF!!\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"available \"parking \"takes \"kid \"dogs

What are Attributes?

not 24-7, available in winter, parking available, takes less than 1 hour, kid friendly, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "25408" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:09 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=5e787c6b-f586-4a56-9a8a-70c42c8922b9" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=64ce8709-141d-47bf-b3a0-b6f1283e4cea" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC49G65) Columbus Rd - Mt Vernon by voiceinthewilderness\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC49G65\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Columbus Rd - Mt Vernon\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n voiceinthewilderness\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 04/09/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 40\u00b0 22.850 W 082\u00b0 29.821\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 372925 N 4471103\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 150 Found it \"Didn't 3 Didn't find it \"Publish 1 Publish Listing \"Needs 3 Needs Maintenance \"Post 1 Post Reviewer Note \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n You are looking for a micro with nothing but a log in it.\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n This cache was placed with permission from the office staff in the building. Congratulations Baack40 on FTF!\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"needs \"blank\" \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

needs maintenance\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "24235" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:09 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=64ce8709-141d-47bf-b3a0-b6f1283e4cea" + } + }, + { + "recorded_at": "2019-01-17T02:14:09", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=904cac84-cc06-4775-ade1-e050d7a9c8c5" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC6WHY6) We're on a bridge, Charlie! by Tandem07\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC6WHY6\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional We're on a bridge, Charlie!\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Tandem07\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 11/04/2016\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 40\u00b0 23.335 W 082\u00b0 29.105\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17T E 373953 N 4471983\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Other)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 1\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 53 Found it \"Didn't 17 Didn't find it \"Write 1 Write note \"Temporarily 2 Temporarily Disable Listing \"Enable 2 Enable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 1 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

This nano cache will bring you to a really cool spot in downtown Mount Vernon, OH that has a nice view and breeze over the Kokosing River. Bring your own pen!

\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Feel free to park on either side of the bridge. Take a stroll over the Kokosing River. This nano cache should be right on the GZ. Be sure to bring your own pen. Enjoy the view!

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tMagnet\r\n\t
\r\n\t\tZntarg\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"dogs \"takes \"scenic \"available \"bikes \"food

What are Attributes?

dogs allowed, takes less than 1 hour, scenic view, available in winter, bikes allowed, food nearby\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "26405" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:09 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=904cac84-cc06-4775-ade1-e050d7a9c8c5" + } + }, + { + "recorded_at": "2019-01-17T02:14:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=44bf6106-ddd1-42cd-aa78-3be8c2e8d74c" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4194A) Grant Park by Fluffy Bunnies\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4194A\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Grant Park\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Fluffy Bunnies\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 11/15/2012\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 36\u00b0 59.128 W 122\u00b0 01.287\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 587085 N 4093707\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 12\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 164 Found it \"Didn't 7 Didn't find it \"Write 6 Write note \"Temporarily 4 Temporarily Disable Listing \"Enable 4 Enable Listing \"Publish 1 Publish Listing \"Owner 4 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n A small park located in a mixed residential area. This means that it can be a family-friendly and fun environment, or it may be populated by some of the detritus of society. Let's hope you visit at a good time! The container is very micro, so BYO writing implement.\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

This small park has lots to offer: diverse playground equipment, several picnic table areas, basketball courts, a softball field, an off-leash dog area, and sometimes some less-than-hygienic loiterers. The cache is in view of most picnickers, so stealth may be necessary.

\r\n

Update May 2015: There is a new fence all the way around the park with lockable gates, so it appears the city may be enforcing the official park hours. December 2018: The park will be open every day from Friday 21 December 2018 through Sunday 6 January 2019. After that, the park is ONLY OPEN SATURDAY\u2013SUNDAY daytime (until further notice).

\r\n

Congratulations to Soquel1930 for braving the rain for another FTF!

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tPlease sign in with your left hand.\r\n\t
\r\n\t\tCyrnfr fvta va jvgu lbhe yrsg unaq.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"stealth \"picnic \"restrooms \"drinking \"takes \"kid \"stroller \"dogs \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

stealth required, picnic tables available, restrooms available, drinking water nearby, takes less than 1 hour, kid friendly, stroller accessible, dogs allowed\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "28522" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:09 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=44bf6106-ddd1-42cd-aa78-3be8c2e8d74c" + } + }, + { + "recorded_at": "2019-01-17T02:14:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=69c59794-2654-48ea-8214-27129233979d" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC70Q4M) Ow, my stump! Zombie first aid=>&lt by Team Io-Honu\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC70Q4M\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Letterbox Ow, my stump! Zombie first aid=>&lt\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Team Io-Honu\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 02/22/2017\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 52.984 W 122\u00b0 17.468\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 562335 N 4193077\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"2
\r\n Terrain:\r\n \"2.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 14\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 44 Found it \"Didn't 2 Didn't find it \"Write 2 Write note \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n \r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n \r\n

All zombies must start at posted coordinates. Since you are wounded, the walk to first aid takes less than 4 minutes.

\r\n
    \r\n
  • Walk north (towards Marin Avenue) until you get to the last red pole. If you find yourself at Dartmouth Avenue, you have gone way too far. Turn around. Go back to starting coords before you lose another limb.
  • \r\n
  • Turn right and walk on path until you see steps going down. Walk down.
  • \r\n
  • Walk along path until you see next set of stairs.
  • \r\n
  • Go up the stairs until you see the big concrete/wood object
  • \r\n
  • Go to west \"stump\" and find first aid kit.
  • \r\n
\r\n

All zombies must mark/sign before dying. Death is no excuse. Blood optional.

\r\n

A letterbox cache is different than your normal cache. For this type of cache, you need to have your own stamp and log book. When you find the cache, stamp the log with your stamp. Then, stamp your personal log book with our stamp in the Cache. If you don\u2019t have a stamp that\u2019s okay too; just sign the log like you would any other cache. PLEASE LEAVE THE STAMP IN THE CACHE!!

\r\n

Thank you, bobf.

\r\n

In remembrance of Pete. You are missed, my friend.

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tUnder\r\n\t
\r\n\t\tHaqre\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"takes \"parking \"stealth \"blank\" \"blank\" \"blank\"

What are Attributes?

takes less than 1 hour, parking available, stealth required\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27593" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:09 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=69c59794-2654-48ea-8214-27129233979d" + } + }, + { + "recorded_at": "2019-01-17T02:14:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=2c59032f-ede5-4c3a-bab1-37895e1b0b9a" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC6GJD4) Team Io-Honu 5K by Cache Party\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC6GJD4\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Team Io-Honu 5K\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Cache Party\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 05/04/2016\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 53.235 W 122\u00b0 17.128\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 562830 N 4193545\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 71 Found it \"Didn't 4 Didn't find it \"Write 1 Write note \"Temporarily 2 Temporarily Disable Listing \"Enable 2 Enable Listing \"Publish 1 Publish Listing \"Needs 1 Needs Maintenance \"Owner 2 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

A Park-n-Grab to commemorate\u00a0Team Io-Honu finding 5,000 caches.

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

Honu of Team Io-Honu is a charter member of the floating caching group called Cache Party which has included Olaf Itoff, Midgie4me, Randy4Fun, Gealabhan, bobf and probably more people that I have forgotten. She is an amazing cacher, often using her geo-sense rather than her GPS to find a cache before the rest of the group has even gotten oriented. It is a pleasure to cache with this talented professional chef.

\r\n

In case you are wondering, \u201cHonu\u201d is the name of the Hawaiian green sea turtle. It symbolizes good luck, endurance and long life. These turtles are excellent navigators, an important asset for cachers! Io refers to Honu's wife and occasional caching partner. \"Io\" is the name of the Hawaiian hawk, and hawk eyes are another important cacher asset.

\r\n

BTW, the cache chosen to be number 5000 was the new letterbox cache, GC6D5ZM, called \"O By The Weigh, Hello my name is...\" which was placed by GeoTabG in honor of the cacher known as ByeTheWay!

\r\n

Congratulations Team Io-Honu for finding 5,000 caches!

\r\n

Team-Io Honu and Olaf Itoff were allowed to sign the log in advance as Pre-publication FTF's. Congratulations to BerkeleyBoomers for the real FTF at 6:22am after a 5:09am publication!

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\thanger\r\n\t
\r\n\t\tunatre\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:09\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27669" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:08 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:09 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=2c59032f-ede5-4c3a-bab1-37895e1b0b9a" + } + }, + { + "recorded_at": "2019-01-17T02:14:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=3fcdb279-8d43-4dab-9c7b-c6835663c621" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC6NZNT) Eureka! You've got it! by susanseeks\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC6NZNT\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Eureka! You've got it!\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n susanseeks\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 07/23/2016\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 37\u00b0 54.636 W 122\u00b0 17.382\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 10S E 562438 N 4196133\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 16 Found it \"Didn't 1 Didn't find it \"Archive\" 1 Archive \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \"Post 1 Post Reviewer Note \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

Small geocache hidden on residential street with a beautiful view.

\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n

This geocache is a small camoflaughed container with a log sheet and enough room for some small trinkets. \u00a0Bring your own pen.

\r\n

The cache is named after the street where it can be found. \u00a0The phrase \"Eureka\" has been attributed to Archimedes,\u00a0the great Greek engineer. It is said that he was working on a problem involving density. He noticed that when something is immersed in water it pushes its own volume of water out of the way. The object he immersed was supposedly his body, and he is reputed to have run naked through the streets shouting, \"Eureka!

\r\n

There is no need to run naked through the street after you've found this cache. \u00a0However, we do recommend enjoying the lovel view of the bay and Golden Gate Bridge in the background.

\r\n

FTF gets a fun monster surprise.

\r\nCongrats FTF BerkeleyBoomers\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tSTOP to enjoy the view.\r\n\t
\r\n\t\tFGBC gb rawbl gur ivrj.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"not \"no \"scenic \"dogs \"kid \"takes \"stroller \"park \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

not 24-7, no parking available, scenic view, dogs allowed, kid friendly, takes less than 1 hour, stroller accessible, park and grab\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:10\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27902" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:09 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:10 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=3fcdb279-8d43-4dab-9c7b-c6835663c621" + } + }, + { + "recorded_at": "2019-01-17T02:14:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=73757b8c-4105-4ed0-808d-f7dc0aa94183" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC3E6ZW) Long Overdue by spacedogs4\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC3E6ZW\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Long Overdue\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n spacedogs4\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 03/09/2012\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 32\u00b0 13.079 W 080\u00b0 42.780\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 17S E 527044 N 3564633\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"2\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 3\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 509 Found it \"Didn't 20 Didn't find it \"Write 10 Write note \"Publish 1 Publish Listing \"Needs 2 Needs Maintenance \"Owner 2 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n This cache is an homage to the long history of fines that papa spacedog has accumulated with this institution. He dreads the day of reckoning when it comes to paying them back and is sure that if he had only looked at the calendar he would be a wealthy man by now. Mama spacedog never gets a fine. Ever.\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n Cache is located deep in a small wooded \"island\" at this location. The container is not too cleverly hidden - but there's a catch: this is an extremely high muggle area at certain times of day and week - you WILL be spotted. In order to keep us from losing the cache to a curious muggle, please mind the clock and calendar and don't get \"fined\". Hours of operation are:\r\n


\r\n

* Monday & Wednesday 10:00 AM - 5:00 PM
\r\n* Tuesday & Thursday 1:00 PM - 8:00 PM
\r\n* Friday 1:00 PM - 5:00 PM
\r\n* Saturday 9:00 AM - 5:00 PM
\r\n* Sunday CLOSED

\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tSeek the Morella cerifera\r\n\t
\r\n\t\tFrrx gur Zberyyn prevsren\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"dogs \"takes \"available \"ticks!\" \"parking \"drinking \"restrooms \"telephone \"bikes \"motorcycles \"stealth \"park

What are Attributes?

ticks!, dogs allowed, takes less than 1 hour, available 24-7, parking available, drinking water nearby, restrooms available, telephone nearby, bikes allowed, motorcycles allowed, stealth required, park and grab\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:10\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "27947" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:09 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:10 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=73757b8c-4105-4ed0-808d-f7dc0aa94183" + } + }, + { + "recorded_at": "2019-01-17T02:14:10", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=04cd6b2c-eee5-477f-83ef-819cefe68dfd" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC65ZPN) Basic LPC by BeachBlondeBlues\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC65ZPN\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional Basic LPC\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n BeachBlondeBlues\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 10/29/2015\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 34\u00b0 16.986 W 118\u00b0 46.848\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 336084 N 3794981\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1.5\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Micro)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n \r\n \r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 53 Found it \"Didn't 4 Didn't find it \"Write 2 Write note \"Archive\" 1 Archive \"Needs 1 Needs Archived \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n

in the area, seemed it needed a cache.   Quick park and grab. 

\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:10\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "23514" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:09 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:10 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=04cd6b2c-eee5-477f-83ef-819cefe68dfd" + } + }, + { + "recorded_at": "2019-01-17T02:14:11", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; Culture=en-US; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=0c2166c3-03ff-4b52-bbfe-b7aaa79e74a9" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GCTTAV) In n Out Urge VII by sloigo\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GCTTAV\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Traditional In n Out Urge VII\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n sloigo\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 10/21/2006\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 35\u00b0 59.138 W 119\u00b0 57.530\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 11S E 233242 N 3986404\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"1.5
\r\n Terrain:\r\n \"1\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Small)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 5\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 1504 Found it \"Didn't 31 Didn't find it \"Write 43 Write note \"Temporarily 7 Temporarily Disable Listing \"Enable 7 Enable Listing \"Publish 2 Publish Listing \"Retract 1 Retract Listing \"Needs 5 Needs Maintenance \"Owner 11 Owner Maintenance \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n I reestablished this cache a seventh time with a small container, chucked full of small trading items. Please use stealth retrieving the cache. It has been there several years, but the container gets muggled if you are not careful. I hope you have fun with it. BYOP\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n A few years ago the Southern California teenagers were taking the bumper stickers from this organization and cutting the \"B\" and \"R\" off their bumper stickers pasting in some replacement red pieces from another sticker and a new sticker with a totally new meaning appeared on the rear of every teen car in Southern California. For the longest time all Bumper stickers were eliminated, but now they are back and available at the counter.\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n\t\tAn Enlightening experience for all.\r\n\t
\r\n\t\tNa Rayvtugravat rkcrevrapr sbe nyy.\r\n\t
\r\n
\r\n \r\n Decryption Key [Decrypt]
\r\n
\r\n A|B|C|D|E|F|G|H|I|J|K|L|M
\r\n -------------------------
\r\n N|O|P|Q|R|S|T|U|V|W|X|Y|Z
\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"wheelchair \"parking \"drinking \"restrooms \"telephone \"picnic \"bikes \"motorcycles \"stroller \"blank\" \"blank\" \"blank\"

What are Attributes?

wheelchair accessible, parking available, drinking water nearby, restrooms available, telephone nearby, picnic tables available, bikes allowed, motorcycles allowed, stroller accessible\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \"\" Giraffe - Indlulamithi, \"\" Holiday all the day\r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 01/16/2019 18:14:10\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "28591" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 02:14:09 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 02:14:10 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=0c2166c3-03ff-4b52-bbfe-b7aaa79e74a9" + } + } + ], + "recorded_with": "betamax/0.8.1" +} \ No newline at end of file diff --git a/test/cassettes/geocaching_shortcut_getcache__by_guid.json b/test/cassettes/geocaching_shortcut_getcache__by_guid.json new file mode 100644 index 0000000..9580667 --- /dev/null +++ b/test/cassettes/geocaching_shortcut_getcache__by_guid.json @@ -0,0 +1,74 @@ +{ + "http_interactions": [ + { + "recorded_at": "2019-01-17T01:44:23", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "gspkauth=; __RequestVerificationToken=" + ], + "User-Agent": [ + "python-requests/2.18.4" + ] + }, + "method": "GET", + "uri": "https://www.geocaching.com/seek/cdpf.aspx?guid=15ad3a3d-92c1-4f7c-b273-60937bcc2072" + }, + "response": { + "body": { + "encoding": "utf-8", + "string": "\r\n\r\n\r\n\r\n (GC4808G) Nekonecne ticho by Bifurka\u010dn\u00ed t\u00fdm\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\r\n
\r\n
\r\n\t\r\n
\r\n \r\n
\r\n \r\n

\r\n \"Geocaching.com\"\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n GC4808G\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \"Unknown Nekonecne ticho\r\n

\r\n
\r\n \r\n

\r\n Placed by: \r\n Bifurka\u010dn\u00ed t\u00fdm\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Placed Date: 3/16/2013\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n N 49\u00b0 43.850 E 013\u00b0 22.905\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n UTM: 33U E 383381 N 5509960\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n \r\n

\r\n Difficulty: \r\n \"4
\r\n Terrain:\r\n \"4\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Size:\r\n \"Size: (Regular)\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n \r\n Favorites: \r\n 23\r\n

\r\n \r\n
\r\n \r\n
\r\n
\r\n

\r\n Log Counts:\r\n \"Found 60 Found it \"Write 13 Write note \"Archive\" 1 Archive \"Needs 1 Needs Archived \"Temporarily 1 Temporarily Disable Listing \"Publish 1 Publish Listing \r\n

\r\n
\r\n \r\n

\r\n \"Alert!\"\r\n \r\n Please note: To use the services of geocaching.com, you must agree to the terms and conditions in our disclaimer. \r\n \r\n

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n

Cache Note

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Short Description

\r\n
\r\n
\r\n
Del\u0161\u00ed proch\u00e1zka pro ty, co maj\u00ed r\u00e1di podzem\u00ed, vlhko a smrad... zkr\u00e1tka pro kan\u00e1ln\u00edky!
\r\n\r\n\r\n
\r\n
\r\n
\r\n
\r\n

Long Description

\r\n
\r\n
\r\n
Tuhle zpr\u00e1vu ti nep\u00ed\u0161u proto, abych ti \u0159ekl, \u017ee jsem v po\u0159\u00e1dku. Ur\u010dit\u011b jsi sly\u0161el o tom, co se stalo. P\u0159e\u017eil jsem, ale v po\u0159\u00e1dku, v po\u0159\u00e1dku u\u017e nebudu. Pot\u0159ebuju ti jen p\u0159edat jednu v\u011bc. Celou dobu jsem p\u0159e\u017e\u00edval ve sklep\u011b. M\u016fj d\u011bde\u010dek ho za v\u00e1lky p\u0159estav\u011bl, aby fungoval jako kryt v p\u0159\u00edpad\u011b n\u00e1let\u016f. Tam jsem si ve tm\u011b, chladu a samot\u011b pro\u017eil \u010das, o kter\u00e9m se ned\u00e1 vypr\u00e1v\u011bt. Ned\u00e1 se popsat stav, ve kter\u00e9m je milosrdn\u00fdm \u010dinem, kdy\u017e sv\u00e9ho psa zabije\u0161 a sn\u00ed\u0161, proto\u017ee nechce\u0161, aby vedle tebe zvolna um\u00edral hlady. Na to, jak to v\u0161echno za\u010dalo, m\u00e1m jen mlhav\u00e9 vzpom\u00ednky pln\u00e9 hr\u016fzy, na kterou se boj\u00edm myslet. Co ti ale vypr\u00e1v\u011bt m\u016f\u017eu, je, jak\u00fd byl konec.
\r\n
\r\nNakonec jsem vy\u0161el ven. Ne proto, \u017ee by se ke mn\u011b dostala zpr\u00e1va o tom, \u017ee u\u017e je to bezpe\u010dn\u00e9. Ne proto, \u017ee bych s\u00e1m bezpe\u010dn\u00fd \u010das dok\u00e1zal odhadnout. Ale mo\u017enost \u017e\u00edt d\u00e1l v tom sklep\u011b a zvolna vyhladov\u011bt a mo\u017enost um\u0159\u00edt venku se u\u017e n\u011bjakou chv\u00edli pohupovaly na vah\u00e1ch l\u00e1kavosti na stejn\u00e9 hladin\u011b. A pak p\u0159i\u0161ly ty zvuky. V\u00ed\u0161, tenkr\u00e1t hned po t\u00e9 nehod\u011b nastal hrozn\u00fd hluk. K\u0159ik, pl\u00e1\u010d, r\u00e1ny, sk\u0159\u00edp\u011bn\u00ed. A postupn\u011b to s\u00edlilo, i pod zem\u00ed jsem sly\u0161el dost. \u0158ev, st\u0159elba, stovky r\u016fzn\u00fdch zvuk\u016f v jednom velk\u00e9m panick\u00e9m orchestru. Po n\u011bjak\u00e9 dob\u011b jsem to p\u0159estal poslouchat a stal se z toho \u0161um, kter\u00fd mi v hlav\u011b postupn\u011b utichal. Proto mi n\u011bjakou dobu trvalo, ne\u017e jsem si uv\u011bdomil, \u017ee se m\u011bsto uti\u0161ilo i doopravdy. A to ticho pak trvalo snad nekone\u010dn\u011b dlouho. Ale p\u0159ed n\u011bjakou dobou jsem zvenku poprv\u00e9 n\u011bco zaslechl - zvuk n\u011bjak\u00e9ho stroje a n\u00e1znak n\u011b\u010deho, co mohl, ale taky nemusel, b\u00fdt lidsk\u00fd hlas. Fantazie ve tm\u011b s\u00edl\u00ed. \u010cekal jsem, jestli neusly\u0161\u00edm n\u011bco dal\u0161\u00edho. \u010cekal jsem mo\u017en\u00e1 p\u00e1r hodin, mo\u017en\u00e1 cel\u00e9 dny. \u010cas \u010dasem zmiz\u00ed. \u010cas je jako prostor. Jako se \u010dlov\u011bk bez mapy ztrat\u00ed v hlubok\u00fdch les\u00edch, ztrat\u00ed se mu bez hodin i \u010das. M\u016f\u017ee b\u00fdt kdykoli. Dal\u0161\u00ed zvuk nep\u0159i\u0161el. Ale b\u011bhem toho \u010dek\u00e1n\u00ed se ve mn\u011b v\u0161echno rozhodlo a varianta riskovat smrt vyhr\u00e1la. Myslel jsem na to, \u017ee ten, kdo se tam pohyboval, t\u0159eba u\u017e v\u011bd\u011bl, \u017ee je bezpe\u010dn\u00e9 vyj\u00edt. \u017de by se tam venku nikdo nepohyboval a nemluvil bezd\u016fvodn\u011b.
\r\n
\r\nVenku to vypadalo na prvn\u00ed pohled mnohem oby\u010dejn\u011bji, ne\u017e jsem \u010dekal. V\u0161echno st\u00e1lo na sv\u00e9m m\u00edst\u011b, v\u0161echny domy v na\u0161\u00ed ulici byly nepo\u0161kozen\u00e9, vypadaly jenom jako by v\u0161ichni majitel\u00e9 odjeli na dlouhou dovolenou a ani za sebou nezav\u0159eli dve\u0159e. Zahrady byly zarostl\u00e9 plevelem. Sousedovy ope\u010dov\u00e1van\u00e9 tulip\u00e1ny se topily v mo\u0159i kop\u0159iv. Moje \u017eena ty jeho tulip\u00e1ny prost\u011b zbo\u017e\u0148ovala. Onen den dom\u016f nep\u0159i\u0161la. Neust\u00e1le jsem si v hlav\u011b udr\u017eoval p\u0159edstavu, \u017ee se t\u0159eba nemohla dostat dom\u016f, tak se ukryla jinde. Proch\u00e1zel jsem pr\u00e1zdnou ulic\u00ed, ob\u010das se na n\u00ed v\u00e1lely kusy plechu nebo st\u0159epy. Na prvn\u00ed mrtv\u00e9 jsem narazil a\u017e na k\u0159i\u017eovatce. Byli c\u00edtit zd\u00e1lky. Nikdy p\u0159edt\u00edm jsem mrtvolu nec\u00edtil, ale kdy\u017e \u010dlov\u011bk vid\u00ed auto rozml\u00e1cen\u00e9 o betonov\u00fd sloup a ve vzduchu je nasl\u00e1dl\u00fd z\u00e1pach, tak mu to tak n\u011bjak dojde. Nem\u011bl jsem chu\u0165 si je prohl\u00ed\u017eet. I dal\u0161\u00edm m\u00edst\u016fm, kde jsem cestou tu\u0161il ob\u011bti, jsem se vyh\u00fdbal pohledem. Stezkou, kterou jsem chod\u00edval \u010dasto, jsem do\u0161el a\u017e k \u0159ece.
\r\n
\r\nTa kr\u00e1tk\u00e1 proch\u00e1zka m\u011b vy\u010derpala natolik, \u017ee jsem si u vody musel sednout na zem. Zul jsem si boty a smo\u010dil nohy ve vod\u011b. Kdy\u017e jsem se nad n\u00ed sklonil, uvid\u011bl jsem odraz ve vod\u011b. Chv\u00edli jsem se musel soust\u0159edit, abych v n\u011bm na\u0161el \u010dlov\u011bka, kter\u00e9ho jsem l\u00e9ta v\u00edd\u00e1val v zrcadle. Oz\u00e1\u0159en\u00ed, kter\u00e9 m\u011b muselo zas\u00e1hnout p\u0159ed ukryt\u00edm, m\u011b zbavilo vlas\u016f i vous\u016f, to jsem v\u011bd\u011bl, ale netu\u0161il jsem, kolik m\u00e1m vr\u00e1sek, jak sta\u0159e a se\u0161le vypad\u00e1m. Sp\u00ed\u0161e mrtv\u011b ne\u017e \u017eiv\u011b. Sed\u011bl jsem u vody dlouho a sledoval, jak se houpe lahev zachycen\u00e1 v ko\u0159enech stromu rostouc\u00edho u vody. V\u0161iml jsem si, \u017ee je to oby\u010dejn\u00e1 plastov\u00e1 lahev od Coca-Coly. Pousm\u00e1l jsem se. Bylo tak zvl\u00e1\u0161tn\u00ed, \u017ee tu byla ta lahev, ale nikde kolem nebyl ten bezstarostn\u00fd sv\u011bt, do kter\u00e9ho pat\u0159\u00ed pop\u00edjen\u00ed studen\u00e9 limon\u00e1dy. Nat\u00e1hnul jsem se pro ni s my\u0161lenkou, jestli v lahvi nez\u016fstala aspo\u0148 trocha t\u00e9 sladk\u00e9 v\u016fn\u011b. V lahvi byl sto\u010den\u00fd n\u011bjak\u00fd pap\u00edrek, co\u017e m\u011b nejd\u0159\u00edv nep\u0159ekvapilo. S\u00e1m jsem m\u011bl ve zvyku do pr\u00e1zdn\u00e9 lahve str\u010dit igelit od sva\u010diny \u010di obal od su\u0161enky a vyhodit pak v\u0161echno najednou. P\u0159i bli\u017e\u0161\u00edm pohledu to ale jako obal nevypadalo. Zd\u00e1lo se, \u017ee je tam n\u011bco naps\u00e1no rukou. Otev\u0159el jsem lahev, v\u016fn\u011b v n\u00ed je\u0161t\u011b byla, ale zast\u0159en\u00e1 zka\u017een\u00fdm pachem. Pap\u00edr ne\u0161el vyklepat ven. Proto jsem vyt\u00e1hnul n\u016f\u017e, kter\u00fd jsem nosil v kapse, abych ho ve tm\u011b sklepa m\u011bl st\u00e1le po ruce, a roz\u0159\u00edznul jsem lahev. Vyndal jsem a rozvinul pap\u00edr.
\r\n
\r\nNeb\u00fdt nete\u010dnosti, kter\u00e1 v t\u00e9 dob\u011b tlumila v\u0161echny moje pocity a dojmy, musel bych b\u00fdt v naprost\u00e9m \u0161oku, kdy\u017e jsem zjistil, \u017ee je to vzkaz. Nev\u00edm, jak byl star\u00fd, ale byl od lid\u00ed, co m\u011bli \u0161t\u011bst\u00ed a stihli se z\u0159ejm\u011b schovat v\u010das do bezpe\u010d\u00ed. Te\u010f ale jsou v nouzi a proto t\u00edmhle zoufal\u00fdm zp\u016fsobem pros\u00ed o pomoc. J\u00e1 po nich p\u00e1trat nep\u016fjdu. Jsem vy\u010derpan\u00fd. Mus\u00ed to b\u00fdt v jin\u00e9 \u010d\u00e1sti m\u011bsta, svoji \u017eenu bych tam ur\u010dit\u011b nena\u0161el. Z\u016fstanu v na\u0161em dom\u011b. Pokud p\u0159e\u017eila, tak m\u011b ur\u010dit\u011b p\u0159ijde hledat sem. A i kdyby ne, jak\u00fd smysl by m\u011blo to cel\u00e9 protahovat? Odjet do jin\u00e9ho m\u011bsta, roky tr\u00e1vit v nemocnic\u00edch, ka\u0161lat krev a sledovat l\u00e9ka\u0159e, jak se marn\u011b sna\u017e\u00ed m\u011b zbavit nov\u00fdch a nov\u00fdch n\u00e1dor\u016f? V\u00edm, jak to chod\u00ed a nen\u00ed to nic pro m\u011b. Pat\u0159\u00edm sem, u\u017e te\u010f se c\u00edt\u00edm skoro tak mrtv\u00fd jako tohle m\u011bsto. Proto ti to v\u0161echno p\u00ed\u0161u a pos\u00edl\u00e1m ten dopis z lahve. M\u00e1\u0161 zku\u0161enosti a m\u016f\u017ee\u0161 si sehnat dobr\u00e9 ochrann\u00e9 vybaven\u00ed. \u0160ance nen\u00ed velk\u00e1, ale t\u0159eba je\u0161t\u011b nen\u00ed pozd\u011b. Jednou jsi mi \u0159\u00edkal, \u017ee se zab\u00fdv\u00e1\u0161 hled\u00e1n\u00edm poklad\u016f a te\u010f m\u016f\u017ee\u0161 naj\u00edt a zachr\u00e1nit jeden s cenou mnoha lidsk\u00fdch \u017eivot\u016f.
\r\n\"postapo\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Snad tenhle vzkaz n\u011bkdo najde. Je to na\u0161e posledn\u00ed nad\u011bje. U\u017e jsme tady dlouho a bez pomoci se odsud nedostaneme. Vlastn\u011b ani nev\u00edme, jestli v\u016fbec je kam se dost\u00e1vat. O sv\u011bt\u011b naho\u0159e nem\u00e1me \u017e\u00e1dn\u00e9 zpr\u00e1vy. Mo\u017en\u00e1 \u0161iroko daleko nen\u00ed nikdo, kdo by m\u011bl \u0161anci n\u00e1\u0161 vzkaz naj\u00edt. Ale t\u0159eba ano, t\u0159eba je\u0161t\u011b nejsme ztraceni.
\r\n
\r\nKdy\u017e se TO stalo, vracel jsem se zrovna na kolej. Panika se mezi lidmi \u0161\u00ed\u0159ila rychle. S\u00e1m jsem najednou nev\u011bd\u011bl, co d\u011blat. Nikomu jsem se nemohl dovolat. Samoz\u0159ejm\u011b. Byl bych te\u010f nejsp\u00ed\u0161 d\u00e1vno mrtv\u00fd, kdybych nepotkal Davida, spolu\u017e\u00e1ka z\u00a0fakulty. Zd\u00e1lo se, \u017ee n\u011bkam vede skupinku kamar\u00e1d\u016f.
\r\n\u201ePoj\u010f s n\u00e1mi,\u201c zavolal na m\u011b. \u201eA posp\u011b\u0161 si.\u201c
\r\n
\r\nNenechal jsem se pob\u00edzet dvakr\u00e1t. Vyrazili jsme tam, odkud jsem p\u0159i\u0161el \u2013 m\u00ed\u0159ili jsme zp\u00e1tky k\u00a0tramvaji. Cestou jsem se od Davida dozv\u011bd\u011bl, \u017ee pr\u00fd v\u00ed o n\u011bjak\u00e9m m\u00edst\u011b, kde bychom mohli p\u0159e\u010dkat.
\r\n
\"strana1\"
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
M\u011bsto bylo vzh\u016fru nohama. V\u0161ichni n\u011bkam sp\u011bchali, lid\u00e9 si navz\u00e1jem p\u0159ek\u00e1\u017eeli a strkali do sebe. Oz\u00fdvalo se trouben\u00ed aut ob\u010das n\u00e1sledovan\u00e9 zvuky sk\u0159\u00edp\u011bn\u00ed kol \u010di n\u00e1razu. A byla tma. Jedin\u00fdm zdrojem sv\u011btla byla pr\u00e1v\u011b auta, jen ob\u010das m\u011bl n\u011bkdo ru\u010dn\u00ed sv\u00edtilnu. V\u00edckr\u00e1t jsme vid\u011bli n\u011bkoho ut\u00edkat, ale David \u0159\u00edkal, \u017ee nem\u00e1 cenu b\u011bhat, \u017ee je to dost daleko. Pak se zastavil, za\u010dal p\u0159em\u00fd\u0161let, a za chv\u00edli z\u00a0n\u011bj vypadlo, \u017ee tam nem\u016f\u017eeme doj\u00edt v\u010das. Pak ud\u011blal n\u011bco, \u010demu jsem necht\u011bl v\u011b\u0159it. Za\u010dal zastavovat okolo jedouc\u00ed auta t\u00edm, \u017ee jim vstoupil p\u0159\u00edmo do cesty. N\u011bkolikr\u00e1t ho n\u011bkdo m\u00e1lem p\u0159ejel, ale v\u017edycky v\u010das usko\u010dil. A\u017e jedna sle\u010dna zastavila. Zd\u00e1la se b\u00fdt vyd\u011b\u0161en\u00e1 a p\u0159i zastaven\u00ed j\u00ed chc\u00edpnul motor. Vypadala velmi mlad\u011b, vsadil bych se, \u017ee je\u0161t\u011b chodila na st\u0159edn\u00ed. David nev\u00e1hal, sko\u010dil ke dve\u0159\u00edm auta, otev\u0159el a vyt\u00e1hnul j\u00ed ven. Prudce s\u00a0n\u00ed mr\u0161til na ulici a zak\u0159i\u010del: \u201eNastupte!\u201c
\r\n
\r\nS\u00e1m sedl na m\u00edsto \u0159idi\u010de, nastartoval, a ne\u017e jsme za sebou v\u0161ichni zav\u0159eli dve\u0159e, u\u017e se rozj\u00ed\u017ed\u011bl. Sed\u011bl jsem za n\u00edm a pomalu se vzpamatov\u00e1val z\u00a0pr\u00e1v\u011b pro\u017eit\u00e9ho \u0161oku. P\u0159ejeli jsme tramvajov\u00e9 koleje a kli\u010dkovali mezi stoj\u00edc\u00edmi auty. V\u00a0aut\u011b nejd\u0159\u00edv vl\u00e1dlo ticho, ale pak n\u011bkdo prolomil ledy. Dozv\u011bd\u011bl jsem se, \u017ee David se sv\u00fdmi kamar\u00e1dy zrovna m\u00ed\u0159il do hospody, i pro n\u011b to tedy byla \u0161\u0165astn\u00e1 n\u00e1hoda, jinak by pr\u00fd nikdo z\u00a0nich nev\u011bd\u011bl, kam j\u00edt.
\r\n
\r\nKdy\u017e jsme proj\u00ed\u017ed\u011bli kolem nemocnice, \u0160\u00e1rku napadlo, \u017ee bychom m\u011bli sehnat n\u011bjak\u00e9 j\u00eddlo.
\r\n\u201eS t\u00edm se po\u010d\u00edt\u00e1,\u201c ozval se David zep\u0159edu. \u201eKousek odsud je Penny market, tam zastav\u00edme.\u201c
\r\n
\"strana2\"
\r\n\"stalhovnaty\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Chv\u00edli nato jsme p\u0159ijeli ke k\u0159i\u017eovatce. Uprost\u0159ed byla dv\u011b do sebe zakl\u00edn\u011bn\u00e1 auta. Tato nehoda v\u0161ak nep\u0159edstavovala \u017e\u00e1dn\u00fd probl\u00e9m, auta se dala bez probl\u00e9m\u016f objet. Tvo\u0159ila st\u0159ed pomysln\u00e9ho kruhov\u00e9ho objezdu. A \u0159idi\u010di p\u0159ij\u00ed\u017ed\u011bj\u00edc\u00ed z\u00a0r\u016fzn\u00fdch stran to tak v\u00edcem\u00e9n\u011b brali. Ka\u017ed\u00fd asi intuitivn\u011b zpomalil, kdy\u017e vid\u011bl boura\u010dku. Projeli jsme kolem a pokra\u010dovali st\u00e1le stejn\u00fdm sm\u011brem. P\u0159i tom jsem si v\u0161imnul, \u017ee v\u00a0jednom z\u00a0nabouran\u00fdch aut st\u00e1le sed\u00ed zakl\u00edn\u011bn\u00fd \u0159idi\u010d. M\u00e1val rukama, ale nikdo nezastavil, aby mu pomohl.
\r\n
\r\nProjeli jsme kolem \u010derpa\u010dky a u\u017e byl vid\u011bt sl\u00edben\u00fd supermarket. David k\u00a0n\u011bmu zajel a zastavil hned u vjezdu. A dob\u0159e ud\u011blal. Stejn\u00fd n\u00e1pad jako my m\u011blo o\u010dividn\u011b v\u00edc lid\u00ed a parkovi\u0161t\u011b se chaoticky plnilo. Tom\u00e1\u0161 a \u0160\u00e1rka z\u016fstali v\u00a0aut\u011b, aby mohli odjet a po\u010dkat na domluven\u00e9m m\u00edst\u011b, kdyby se n\u011bco semlelo. My ostatn\u00ed jsme se vydali \u201enakupovat\u201c.
\r\n
\r\nVr\u00e1tili jsme se se dv\u011bma pln\u00fdmi voz\u00edky j\u00eddla a jali se jejich obsah skl\u00e1dat do auta. P\u0159i odchodu z\u00a0kr\u00e1mu m\u011b napadlo, \u017ee by se mohly hodit n\u011bjak\u00e9 ta\u0161ky. Vzal jsem jich spoustu, co\u017e se pozd\u011bji uk\u00e1zalo jako rozumn\u00e9. S\u00a0nalo\u017een\u00fdm autem jsme vyrazili z\u00a0parkovi\u0161t\u011b a cht\u011bli pokra\u010dovat v\u00a0cest\u011b. Jen\u017ee to prost\u011b ne\u0161lo. Cel\u00e1 ulice t\u00edm sm\u011brem byla ucpan\u00e1, pln\u00e9 aut byly i okoln\u00ed chodn\u00edky a tr\u00e1vn\u00edky. Nezb\u00fdvalo ne\u017e se vr\u00e1tit, odkud jsme p\u0159ijeli. Na k\u0159i\u017eovatce s\u00a0boura\u010dkou jsme znovu projeli kolem zakl\u00edn\u011bn\u00e9ho \u0159idi\u010de, kter\u00fd st\u00e1le m\u00e1val, a pokra\u010dovali vpravo. David byl z\u0159ejm\u011b nerv\u00f3zn\u00ed ze zdr\u017een\u00ed a po\u0159\u00e1dn\u011b na to \u0161l\u00e1pnul. \u0158\u00edtili jsme se z\u00a0kopce, a\u017e jsem se za\u010dal b\u00e1t. Po\u0159\u00e1d m\u00e1m v\u00a0\u017eiv\u00e9 pam\u011bti ten n\u00e1raz na \u017eelezni\u010dn\u00edm p\u0159ejezdu; myslel jsem, \u017ee se auto rozpadne. Jeli jsme ale d\u00e1l, po\u0159\u00e1d v\u00edcem\u00e9n\u011b rovn\u011b. Chv\u00edli byly nad ulic\u00ed troleje, pak pokra\u010dovaly vlevo, zat\u00edmco my jeli d\u00e1l rovn\u011b, a za n\u011bjakou dobu se p\u0159ipojily jin\u00e9 zprava. Chv\u00edli potom jsme p\u0159ijeli na dal\u0161\u00ed k\u0159i\u017eovatku s\u00a0nehodou, op\u011bt se v\u0161ak dala objet. Ani jsem se nekoukal, jestli v\u00a0havarovan\u00fdch autech n\u011bkdo nez\u016fstal. Stejn\u011b na tom nez\u00e1le\u017e\u00ed \u2013 kdo se nem\u00e1 kam ukr\u00fdt, je odsouzen k\u00a0smrti. T\u011b\u017eko \u0159\u00edct, kam a\u017e sah\u00e1 z\u00f3na zamo\u0159en\u00ed, ale zkou\u0161et tomu ujet asi nem\u00e1 smysl.
\r\n
\"strana3\"
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Pokra\u010dovali jsme doleva p\u0159es most. Jak jsme opustili m\u011bsto, silnice byla \u010d\u00edm d\u00e1l voln\u011bj\u0161\u00ed. Hlavn\u011b nikdo nejel proti n\u00e1m. V\u0161ichni se pokou\u0161eli m\u011bsto opustit. Zaj\u00edmav\u00e9.
\r\n
\r\nProjeli jsme kolem h\u0159bitova a pokra\u010dovali zahr\u00e1dk\u00e1\u0159skou koloni\u00ed, a\u017e jsme se dostali do pol\u00ed. \u0158\u00edtili jsme se no\u010dn\u00ed krajinou nev\u00edm jak dlouho a po\u0159\u00e1d se vzdalovali od Plzn\u011b. V\u00a0nejbli\u017e\u0161\u00ed vesnici jsme ale zabo\u010dili doleva. Vzpom\u00edn\u00e1m si, \u017ee na t\u00e9 ulici byly ze za\u010d\u00e1tku dla\u017eebn\u00ed kostky m\u00edsto asfaltu. Pokra\u010dovali jsme st\u00e1le d\u00e1l a \u0159ezali zat\u00e1\u010dky mezi domy. P\u0159ejeli jsme most p\u0159es n\u011bjakou \u0159eku, za kter\u00fdm n\u00e1sledovala t\u00e1hl\u00e1 zat\u00e1\u010dka doleva. Tam David za\u010dal zpomalovat. Na rovn\u00e9m \u00faseku pak po\u0159\u00e1d koukal doleva. A\u017e t\u011bsn\u011b pod kopcem na\u0161el to, co hledal. Ze silnice tam odbo\u010dovala nen\u00e1padn\u00e1 cesta dol\u016f.
\r\n
\r\nVystoupili jsme, ka\u017ed\u00fd popadl, kolik ta\u0161ek unesl a posp\u00edchali jsme stezkou do k\u0159ov\u00ed. Za chvilku jsme ve svitu baterek spat\u0159ili asi metr vysokou betonovou stavbu. Kdy\u017e jsme p\u0159i\u0161li bl\u00ed\u017e, v\u0161iml jsem si, \u017ee naho\u0159e je n\u011bjak\u00fd poklop. Pr\u00e1v\u011b tam David zam\u00ed\u0159il. Odsunul ho stranou a odhalil tak \u0161achtu, ze kter\u00e9 \u0161el chlad. Na st\u011bn\u011b byl \u017eeb\u0159\u00edk, tak\u017ee jsme v\u0161ichni postupn\u011b slezli dol\u016f a dopravili tam i na\u0161e z\u00e1soby j\u00eddla. Posledn\u00ed \u0161el David, kter\u00fd za n\u00e1mi d\u016fkladn\u011b zav\u0159el poklop. Od t\u00e9 doby u\u017e jsem nevid\u011bl denn\u00ed sv\u011btlo. Ani no\u010dn\u00ed. Celou dobu jsme sice jeli v\u00a0noci, ale a\u017e tady byla skute\u010dn\u00e1 tma.
\"strana4\"
\r\n\"vlez\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Dole jsem se za\u010dal rozhl\u00ed\u017eet. Okam\u017eit\u011b m\u011b zaujalo zur\u010den\u00ed podzemn\u00edho pot\u016f\u010dku. Nebyli jsme ale v\u00a0\u017e\u00e1dn\u00e9 jeskyni, bylo to um\u011bl\u00e9. St\u00e1li jsme v\u00a0jak\u00e9si m\u00edstnosti, kter\u00e1 m\u011bla v\u00a0rohu otvor v\u00a0podlaze. Odtud byly sly\u0161et ty zvuky. Na st\u011bn\u011b byla stup\u00e1tka, po kter\u00fdch jsme slezli dol\u016f. Voda p\u0159it\u00e9kala z\u00a0velik\u00e9 roury a mizela v\u00a0d\u00e1lce v\u00a0tunelu. Zd\u00e1la se b\u00fdt k\u0159i\u0161\u0165\u00e1lov\u011b \u010dist\u00e1. Jeden za druh\u00fdm jsme se vydali do tunelu. \u0160li jsme lehce shrbeni a vedle n\u00e1s st\u00e1le \u0161plouchala voda. Nec\u00edtil jsem se tam p\u0159\u00edjemn\u011b a jen d\u00edky p\u0159\u00edtomnosti ostatn\u00edch jsem se neb\u00e1l. Na st\u011bn\u00e1ch byl n\u00e1t\u011br, kter\u00fd se m\u00edsty olupoval, a ze stropu ob\u010das n\u011bco viselo. Tunel u\u017e asi m\u011bl svoje nejlep\u0161\u00ed l\u00e9ta za sebou.
\r\n
\r\nZanedlouho jsme dorazili k\u00a0vyv\u00fd\u0161en\u00e9mu m\u00edstu. Bylo p\u0159\u00edjemn\u00e9 se po\u0159\u00e1dn\u011b narovnat. Nad n\u00e1mi \u00fastila velk\u00e1 roura vedouc\u00ed vzh\u016fru nezn\u00e1mo kam. Kousek vedle byla stup\u00e1tka, po kter\u00fdch se dalo vyl\u00e9zt nahoru do mal\u00e9 m\u00edstnosti podobn\u00e9 t\u00e9, skrz kterou jsme se do podzem\u00ed dostali. Zd\u00e1lo se n\u00e1m to jako dobr\u00e9 m\u00edsto pro \u00fakryt, lep\u0161\u00ed ne\u017e v\u00a0tunelu u vody. Vytahali jsme tedy v\u0161echny na\u0161e v\u011bci nahoru a rozhodli se z\u016fstat. Bylo to tam mal\u00e9, ale je\u0161t\u011b v\u00fd\u0161 byla dal\u0161\u00ed patra, do kter\u00fdch vedly \u017eeb\u0159\u00edky, tak jsme se tam v\u0161ichni pohodln\u011b ve\u0161li.
\r\n
\r\nN\u011bjakou dobu jsme tam str\u00e1vili, ale bylo t\u011b\u017ek\u00e9 vydr\u017eet \u00famorn\u00e9 nicned\u011bl\u00e1n\u00ed. V\u011bd\u011bli jsme, \u017ee nem\u016f\u017eeme vyl\u00e9zt a \u017ee v\u00a0podzem\u00ed pravd\u011bpodobn\u011b str\u00e1v\u00edme dlouh\u00fd \u010das, ale co takhle dole d\u011blat? Na\u0161t\u011bst\u00ed n\u011bkoho p\u0159i \u201en\u00e1kupu\u201c napadlo vz\u00edt spoustu bateri\u00ed, tak\u017ee jsme si mohli sv\u00edtit.
\"strana5\"
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
Stejn\u011b jsme se ale brzy rozhodli vyrazit na pr\u016fzkum d\u00e1l do hloubi tunelu. V\u0161echny v\u011bci jsme nechali na m\u00edst\u011b. Necht\u011bli jsme se s\u00a0nimi tahat, kdy\u017e jsme nev\u011bd\u011bli, jestli najdeme n\u011bjak\u00e9 lep\u0161\u00ed m\u00edsto.
\r\n
\r\nMoc dlouho jsme ne\u0161li a narazili jsme na men\u0161\u00ed tunel vpravo. Pokra\u010dovali jsme d\u00e1le po proudu a za chv\u00edli narazili na dal\u0161\u00ed men\u0161\u00ed p\u0159\u00edtok, tentokr\u00e1t zleva. Nikde v\u0161ak nebylo \u017e\u00e1dn\u00e9 vhodn\u00e9 m\u00edsto pro p\u0159e\u010dk\u00e1n\u00ed del\u0161\u00edho \u010dasu. Pokra\u010dovali jsme st\u00e1le d\u00e1l, a\u017e jsme p\u0159i\u0161li k\u00a0m\u00edstu podobn\u00e9mu tomu, kde jsme nechali na\u0161e v\u011bci. Tentokr\u00e1t v\u0161ak jen s\u00a0jedn\u00edm patrem. Nel\u00edbilo se n\u00e1m tam, a tak jsme se vydali na dal\u0161\u00ed pr\u016fzkum st\u00e1le po proudu.
\r\n
\r\nMinuli jsme dal\u0161\u00ed chodbu, kterou tekla trocha vody, a po n\u011bjak\u00e9 dob\u011b jsme dorazili k\u00a0dal\u0161\u00edmu vyv\u00fd\u0161en\u00e9mu m\u00edstu, kde bylo mo\u017en\u00e9 po stupa\u010dk\u00e1ch vyl\u00e9zt do prostor nad tunelem. Vypadalo to tam v\u0161ak stejn\u011b jako v\u00a0t\u011bch p\u0159edchoz\u00edch, tak\u017ee jsme rad\u0161i pokra\u010dovali je\u0161t\u011b d\u00e1l tunelem. Ze st\u011bn sem tam na n\u011bkolika m\u00edstech tr\u010dely roury s\u00a0p\u00e1kov\u00fdmi ventily. Narazili jsme i na jak\u00fdsi tlakom\u011br; nikoho ale nenapadalo, k\u00a0\u010demu by mohl slou\u017eit. U\u017e jsme si \u0159\u00edkali, \u017ee se rad\u0161i vr\u00e1t\u00edme, \u017ee u\u017e na \u017e\u00e1dn\u00e9 lep\u0161\u00ed m\u00edsto nenaraz\u00edme, kdy\u017e se p\u0159ed n\u00e1mi vyno\u0159ilo dal\u0161\u00ed vyv\u00fd\u0161en\u00e9 m\u00edsto. Tentokr\u00e1t to tam vypadalo trochu jinak, \u0161achta vedouc\u00ed vzh\u016fru m\u011bla kruhov\u00fd profil. Jinak se ale zd\u00e1lo b\u00fdt v\u0161e p\u0159i star\u00e9m. A\u017e v\u00a0posledn\u00edm pat\u0159e n\u00e1s zaujala kr\u00e1tk\u00e1 chodba.
\"strana6\"
\r\n\"postava\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\u201eTady si m\u016f\u017eeme lehnout v\u0161ichni k\u00a0sob\u011b,\u201c \u0159ekla Jana nahlas to, co asi napadlo i ostatn\u00ed. V\u00a0na\u0161em p\u016fvodn\u00edm \u00fakrytu jsme toti\u017e museli sp\u00e1t ve v\u00edce patrech, do jednoho jsme se neve\u0161li.
\r\nNikdo nic nenam\u00edtal, tak\u017ee jsme se vr\u00e1tili pro na\u0161e v\u011bci a p\u0159inesli si je do nov\u00e9ho \u00fakrytu. Kdy\u017e jsme v\u0161echno vytahali a\u017e nahoru, byli jsme dost unaven\u00ed. Najedli jsme se, vypili 2 v\u00edna (kdy\u017e u\u017e je s\u00a0sebou tah\u00e1me, tak pro\u010d je neotev\u0159\u00edt?) a \u0161li celkem spokojen\u011b sp\u00e1t. Nikoho p\u0159itom nenapadlo, jak\u00e1 hr\u016fza n\u00e1s \u010dek\u00e1.
\r\n
\r\nProbudil n\u00e1s hluk vody. Zn\u011blo to najednou jinak, ne\u017e jsme byli zvykl\u00ed. Dal\u0161\u00ed zm\u011bnou byl smrad. Nem\u016f\u017eu \u0159\u00edct, \u017ee by to tu p\u0159edt\u00edm n\u011bjak von\u011blo, to ne. P\u0159eci jen jsou to vlhk\u00e9 nev\u011btran\u00e9 podzemn\u00ed prostory. Tohle ale bylo jin\u00e9. Lezli jsme dol\u016f k\u00a0pot\u016f\u010dku a okam\u017eit\u011b odhalili p\u0159\u00ed\u010dinu. Vody v\u00fdrazn\u011b p\u0159ibylo a nebyla u\u017e to voda, ale odporn\u011b p\u00e1chnouc\u00ed b\u0159e\u010dka. Zvedal se mi z\u00a0toho \u017ealudek.
\r\n
\r\nTo byl za\u010d\u00e1tek konce. Hladina sice pozd\u011bji op\u011bt klesla, ale to, co tam teklo, bylo po\u0159\u00e1d stejn\u011b odporn\u00e9. V\u010detn\u011b nesnesiteln\u00e9ho z\u00e1pachu, kter\u00fd se roz\u0161\u00ed\u0159il a\u017e k\u00a0na\u0161emu do\u010dasn\u00e9mu p\u0159\u00edbytku. Od t\u00e9 doby se vzestup a pokles hladiny n\u011bkolikr\u00e1t opakoval. Neodva\u017eovali jsme se znovu vydat tunelem, nikdo z\u00a0n\u00e1s si nep\u0159\u00e1l smrt utopen\u00edm v\u00a0tom, co tam teklo. Te\u010f u\u017e nem\u00e1me dost sil se odsud v\u016fbec dostat. Pomozte. Kdy\u017e u\u017e to neud\u011bl\u00e1te kv\u016fli n\u00e1m, tak v\u011bzte, \u017ee jsme sem nep\u0159i\u0161li s\u00a0pr\u00e1zdnou. M\u00e1me n\u011bco, po \u010dem ka\u017ed\u00fd dobrodruh jako vy ur\u010dit\u011b ba\u017e\u00ed.
\"strana7\"
\r\n\"strana8\" \"meric\" \"strana9\" \"strana10\" \"odlehcovacka\" \"strana11\" \"chodba\"\r\n
\r\n

Bezpe\u010dnostn\u00ed pokyny

\r\n

P\u0159ed v\u00fdpravou

\r\n
    \r\n
  • P\u0159e\u010dt\u011bte Z\u00e1klady bezpe\u010dnosti v podzem\u00ed a t\u0159eba tak\u00e9 Kan\u00e1lov\u00e9 ke\u0161ky: Bezpe\u010dnost p\u0159edev\u0161\u00edm
  • \r\n
  • Po\u010d\u00edtejte p\u0159i pl\u00e1nov\u00e1n\u00ed s t\u00edm, \u017ee v\u00e1s \u010dekaj\u00ed p\u0159ibli\u017en\u011b 3 hodiny v podzem\u00ed.
  • \r\n
  • Pokud pr\u0161\u00ed, nechte to na jindy. Pokud m\u00e1 pr\u0161et, nechte to na jindy. Pokud podle p\u0159edpov\u011bdi pr\u0161et nem\u00e1, ale p\u0159esto to na d\u00e9\u0161\u0165 vypad\u00e1, nechte to tak\u00e9 na jindy.
  • \r\n
  • Vezm\u011bte si oble\u010den\u00ed, kter\u00e9 v\u00e1m zakryje cel\u00e9 t\u011blo, v\u010detn\u011b hlavy. Nebudete nikde l\u00e9zt po \u010dty\u0159ech ani se plazit, ale zakryt\u00ed t\u011bla ocen\u00edte. Dobr\u00e9 je m\u00edt kvalitn\u00ed rukavice.
  • \r\n
  • Obujte si gumovky. Sta\u010d\u00ed n\u00edzk\u00e9. N\u011bjak\u00e9 v\u011bt\u0161\u00ed brod\u011bn\u00ed v\u00e1s ne\u010dek\u00e1, p\u0159esto to chce boty, co nic nepropust\u00ed a nevs\u00e1kne se do nich z\u00e1pach.
  • \r\n
  • Jako v\u0161ude v\u00a0podzem\u00ed si vezm\u011bte dva nez\u00e1visl\u00e9 zdroje sv\u011btla.
  • \r\n
  • Necho\u010fte na ke\u0161 nikdy sami.
  • \r\n
  • V\u017edy je lep\u0161\u00ed, kdy\u017e n\u011bkdo, kdo nejde s\u00a0v\u00e1mi, v\u00ed, kam jste \u0161li.
  • \r\n
  • V souvislosti s kan\u00e1lov\u00fdmi ke\u0161emi se \u010dasto zmi\u0148uje nebezpe\u010d\u00ed potkan\u016f. V t\u011bchto m\u00edstech jsme ale nikdy \u017e\u00e1dn\u00e9ho nepotkali a tak mysl\u00edme, \u017ee se jich zde nen\u00ed t\u0159eba b\u00e1t.
  • \r\n
  • Dobr\u00e9 je m\u00edt antibakteri\u00e1ln\u00ed ubrousky nebo gel. Ocen\u00edte je, jakmile vylezete ven a budete \u017e\u00edzniv\u00ed a vyhl\u00e1dl\u00ed.
  • \r\n
  • Na tuto ke\u0161 se m\u016f\u017eete vypravit zcela bez GPS navigace, pokud budete m\u00edt s sebou (nap\u0159. vytisknut\u00fd) dopis z lahve. (N\u00e1\u0161 t\u00fdm za\u010d\u00ednal s hled\u00e1n\u00edm ke\u0161\u00ed podle vyti\u0161t\u011bn\u00e9 fotomapy, tak\u017ee jsme usoudili, \u017ee se tato informace m\u016f\u017ee hodit.)
  • \r\n
\r\n

B\u011bhem v\u00fdpravy

\r\n
    \r\n
  • Pokud jste dodr\u017eeli pokyny, co se t\u00fd\u010de po\u010das\u00ed, nem\u011blo by v\u00e1s dole nic p\u0159ekvapit. P\u0159esto si d\u00e1vejte pozor a p\u0159edev\u0161\u00edm zpozorn\u011bte, pokud by za\u010dala, by\u0165 jen m\u00edrn\u011b, stoupat hladina.
  • \r\n
  • Nemus\u00ed to nic znamenat, ale pokud by stoup\u00e1n\u00ed pokra\u010dovalo, vylezte do jednoho z\u00a0v\u00edcepatrov\u00fdch v\u00fdlez\u016f (podobn\u00e9, jak\u00fdm jste se dostali dovnit\u0159, jsou celou cestu). Zde by v\u00e1m nem\u011blo nic hrozit.
  • \r\n
  • V\u00a0n\u011bkter\u00fdch v\u00fdlezech se lze v\u011btrac\u00ed m\u0159\u00ed\u017ekou pod\u00edvat ven. M\u016f\u017eete tak poznat, zda venku pr\u0161\u00ed nebo zda voda stoup\u00e1 z\u00a0jin\u00e9ho d\u016fvodu, nap\u0159. n\u011bkdo za\u010dal n\u011bco vypou\u0161t\u011bt. Tak\u00e9 si v\u00a0p\u0159\u00edpad\u011b jak\u00e9koli nouze m\u016f\u017eete p\u0159ivolat pomoc, mobiln\u00ed sign\u00e1l pod poklopem b\u00fdv\u00e1.
  • \r\n
\r\n

K listingu

\r\n
    \r\n
  • Pod obr\u00e1zky s dopisem se schov\u00e1v\u00e1 text shodn\u00fd s ru\u010dn\u011b psan\u00fdm textem na obr\u00e1zc\u00edch. \u017d\u00e1dn\u00e1 \u0161ifra v tom nen\u00ed. Slou\u017e\u00ed k tomu, aby byl dopis v listingu z\u00e1rove\u0148 v textov\u00e9 podob\u011b. Na p\u0159\u00edstroj\u00edch, kter\u00e9 nezobrazuj\u00ed obr\u00e1zky (navigace, telefon), bude tedy tak\u00e9 mo\u017en\u00e9 dopis \u010d\u00edst.
  • \r\n
  • Dopis z lahve se opravdu hod\u00ed m\u00edt s sebou, proto jsme p\u0159ipravili je\u0161t\u011b \u010dernob\u00edlou verzi dopisu vhodn\u011bj\u0161\u00ed k vytisknut\u00ed.
  • \r\n
\r\n
\r\n\"kyticka\"
\r\n
\r\n
\r\n
\r\n
\r\n

Additional Hints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Additional Waypoints

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Cache Attributes

\r\n
\r\n
\r\n \"flashlight \"available \"available \"may \"difficult \"dangerous \"hike \"blank\" \"blank\" \"blank\" \"blank\" \"blank\"

What are Attributes?

dangerous area, flashlight required, available in winter, available 24-7, may require wading, difficult climbing, hike between 1km-10km\r\n
\r\n
\r\n
\r\n
\r\n

Trackable Items

\r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Logs

\r\n
\r\n
\r\n \r\n
\r\n \r\n
\r\n \r\n
\r\n
\r\n
\r\n
\r\n

Overview Map

\r\n \r\n [\r\n 640x480 | \r\n 320x240\r\n ]\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n
\r\n

\r\n Page Generated On\r\n 1/16/2019 5:44:24 PM\r\n

\r\n \r\n
\r\n \r\n
\r\n \r\n

\r\n Copyright © 2000-2019 \r\n Groundspeak Inc. All Rights Reserved.
\r\n Designated trademarks and brands are the property of their respective owners.
\r\n Use of this Web site constitutes acceptance of the Groundspeak Terms of Use. \r\n

\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \n\n\n\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n" + }, + "headers": { + "Cache-Control": [ + "private" + ], + "Content-Length": [ + "83809" + ], + "Content-Type": [ + "text/html; charset=utf-8" + ], + "Date": [ + "Thu, 17 Jan 2019 01:44:23 GMT" + ], + "Request-Context": [ + "appId=cid-v1:019d82c2-5dd7-44cb-aa94-01e052f0d40c" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Set-Cookie": [ + "gspkauth=; domain=.geocaching.com; expires=Sun, 17-Feb-2019 01:44:23 GMT; path=/; secure; HttpOnly", + "Culture=en-US; path=/" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.geocaching.com/seek/cdpf.aspx?guid=15ad3a3d-92c1-4f7c-b273-60937bcc2072" + } + } + ], + "recorded_with": "betamax/0.8.1" +} \ No newline at end of file diff --git a/test/test_geo.py b/test/test_geo.py index aea680f..657cb70 100644 --- a/test/test_geo.py +++ b/test/test_geo.py @@ -182,6 +182,7 @@ class TestTile(NetworkedTest): POSITION_ACCURANCY = 3 # = up to 110 meters def setUp(self): + super().setUp() self.tile = Tile(self.gc, 8800, 5574, 14) def test_download_utfgrid(self): diff --git a/test/test_geocaching.py b/test/test_geocaching.py index 10cbf4c..18013f8 100644 --- a/test/test_geocaching.py +++ b/test/test_geocaching.py @@ -11,12 +11,28 @@ from geopy.distance import great_circle import pycaching -from pycaching import Geocaching, Point, Rectangle +from pycaching import Cache, Geocaching, Point, Rectangle from pycaching.errors import NotLoggedInException, LoginFailedException, PMOnlyException from . import username as _username, password as _password, recorder, session, NetworkedTest class TestMethods(NetworkedTest): + def test_my_finds(self): + with recorder.use_cassette('geocaching_my_finds'): + finds = list(self.gc.my_finds(20)) + self.assertEqual(20, len(finds)) + for cache in finds: + self.assertTrue(cache.name) + self.assertTrue(isinstance(cache, Cache)) + + def test_my_dnfs(self): + with self.recorder.use_cassette('geocaching_my_dnfs'): + dnfs = list(self.gc.my_dnfs(20)) + self.assertEqual(20, len(dnfs)) + for cache in dnfs: + self.assertTrue(cache.name) + self.assertTrue(isinstance(cache, Cache)) + def test_search(self): with self.subTest("normal"): tolerance = 2 @@ -83,6 +99,7 @@ def test_search_quick_match_load(self): class TestLoginOperations(NetworkedTest): def setUp(self): + super().setUp() self.gc = Geocaching(session=session) def test_request(self): @@ -279,6 +296,11 @@ def test_get_cache(self): c = self.gc.get_cache("GC4808G") self.assertEqual("Nekonecne ticho", c.name) + def test_get_cache__by_guid(self): + with recorder.use_cassette('geocaching_shortcut_getcache__by_guid'): + cache = self.gc.get_cache(guid='15ad3a3d-92c1-4f7c-b273-60937bcc2072') + self.assertEqual("Nekonecne ticho", cache.name) + def test_get_trackable(self): with recorder.use_cassette('geocaching_shortcut_gettrackable'): t = self.gc.get_trackable("TB1KEZ9") From e8f70969c9f5fd1a8f4a1a93690dd8e553f8a3c9 Mon Sep 17 00:00:00 2001 From: jarhill0 Date: Sun, 27 Jan 2019 23:05:19 -0800 Subject: [PATCH 3/4] Expose and document my_logs() --- README.rst | 17 +++++++++++++++++ pycaching/geocaching.py | 29 ++++++++++++++++++++++------- 2 files changed, 39 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 0449360..4c783c0 100644 --- a/README.rst +++ b/README.rst @@ -219,6 +219,23 @@ Post a log for trackable tracking_code = "ABCDEF" trackable.post_log(log, tracking_code) +Get geocaches by log type +--------------------------------------------------------------------------------------------------- + +.. code-block:: python + + from pycaching.log import Type as LogType + + for find in geocaching.my_finds(limit=5): + print(find.name) + + for dnf in geocaching.my_dnfs(limit=2): + print(dnf.name) + + for note in geocaching.my_logs(LogType.note.value, limit=6): + print(note.name) + + Testing =================================================================================================== diff --git a/pycaching/geocaching.py b/pycaching/geocaching.py index 48d651e..e026c86 100644 --- a/pycaching/geocaching.py +++ b/pycaching/geocaching.py @@ -28,7 +28,7 @@ class Geocaching(object): "login_page": "account/signin", "search": "play/search", "search_more": "play/search/more-results", - 'my_logs': 'my/logs.aspx?lt={lt}', + 'my_logs': 'my/logs.aspx', } _credentials_file = ".gc_credentials" @@ -382,9 +382,18 @@ def _cache_from_guid(self, guid): print_page = self._request(Cache._urls["print_page"], params={"guid": guid}) return Cache._from_print_page(self, guid, print_page) - def _my_logs(self, log_type, limit): + def my_logs(self, log_type=None, limit=float('inf')): + """Get an iterable of the logged-in user's logs. + + :param log_type: The log type to search for. Use the ``.value`` attribute of a :class:`~.log.Type` value. + If set to ``None``, all logs will be returned (default: ``None``). + :param limit: The maximum number of results to return (default: infinity). + """ logging.info("Getting {} of my logs of type {}".format(limit, log_type)) - cache_table = self._request(self._urls['my_logs'].format(lt=log_type)).find(class_='Table') + url = self._urls['my_logs'] + if log_type is not None: + url += '?lt={lt}'.format(lt=log_type) + cache_table = self._request(url).find(class_='Table') if cache_table is None: # no finds on the account return cache_table = cache_table.tbody @@ -401,9 +410,15 @@ def _my_logs(self, log_type, limit): yielded += 1 def my_finds(self, limit=float('inf')): - """Get an iterable of the logged-in user's finds.""" - return self._my_logs(LogType.found_it.value, limit) + """Get an iterable of the logged-in user's finds. + + :param limit: The maximum number of results to return (default: infinity). + """ + return self.my_logs(LogType.found_it.value, limit) def my_dnfs(self, limit=float('inf')): - """Get an iterable of the logged-in user's DNFs.""" - return self._my_logs(LogType.didnt_find_it.value, limit) + """Get an iterable of the logged-in user's DNFs. + + :param limit: The maximum number of results to return (default: infinity). + """ + return self.my_logs(LogType.didnt_find_it.value, limit) From 60f7509e0a8063722d59bf667eb0c21e9d7eb8c0 Mon Sep 17 00:00:00 2001 From: jarhill0 Date: Mon, 28 Jan 2019 11:24:15 -0800 Subject: [PATCH 4/4] Resolve LogType.value within the my_logs method --- README.rst | 2 +- pycaching/geocaching.py | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 4c783c0..afe17b7 100644 --- a/README.rst +++ b/README.rst @@ -232,7 +232,7 @@ Get geocaches by log type for dnf in geocaching.my_dnfs(limit=2): print(dnf.name) - for note in geocaching.my_logs(LogType.note.value, limit=6): + for note in geocaching.my_logs(LogType.note, limit=6): print(note.name) diff --git a/pycaching/geocaching.py b/pycaching/geocaching.py index e026c86..2bfa67b 100644 --- a/pycaching/geocaching.py +++ b/pycaching/geocaching.py @@ -385,13 +385,15 @@ def _cache_from_guid(self, guid): def my_logs(self, log_type=None, limit=float('inf')): """Get an iterable of the logged-in user's logs. - :param log_type: The log type to search for. Use the ``.value`` attribute of a :class:`~.log.Type` value. + :param log_type: The log type to search for. Use a :class:`~.log.Type` value. If set to ``None``, all logs will be returned (default: ``None``). :param limit: The maximum number of results to return (default: infinity). """ logging.info("Getting {} of my logs of type {}".format(limit, log_type)) url = self._urls['my_logs'] if log_type is not None: + if isinstance(log_type, LogType): + log_type = log_type.value url += '?lt={lt}'.format(lt=log_type) cache_table = self._request(url).find(class_='Table') if cache_table is None: # no finds on the account @@ -414,11 +416,11 @@ def my_finds(self, limit=float('inf')): :param limit: The maximum number of results to return (default: infinity). """ - return self.my_logs(LogType.found_it.value, limit) + return self.my_logs(LogType.found_it, limit) def my_dnfs(self, limit=float('inf')): """Get an iterable of the logged-in user's DNFs. :param limit: The maximum number of results to return (default: infinity). """ - return self.my_logs(LogType.didnt_find_it.value, limit) + return self.my_logs(LogType.didnt_find_it, limit)