summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/migrations/0001_initial.py15
-rw-r--r--core/models_caves.py2
-rw-r--r--core/models_survex.py23
-rw-r--r--flatpages/migrations/0001_initial.py2
-rw-r--r--lines-of-python.txt16
-rw-r--r--lines-of-templates.txt4
-rw-r--r--loadlogbk.log31
-rw-r--r--mem-0.log13399
-rw-r--r--mem-1.log13399
-rw-r--r--mem-3.log13399
-rw-r--r--svxblks.log10971
-rw-r--r--svxlinear.log6806
-rw-r--r--troggle-inspectdb.py11
13 files changed, 58032 insertions, 46 deletions
diff --git a/core/migrations/0001_initial.py b/core/migrations/0001_initial.py
index d2b09f2..080ef64 100644
--- a/core/migrations/0001_initial.py
+++ b/core/migrations/0001_initial.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Generated by Django 1.11.29 on 2020-06-23 22:48
+# Generated by Django 1.11.29 on 2020-06-26 23:53
from __future__ import unicode_literals
from django.conf import settings
@@ -352,13 +352,6 @@ class Migration(migrations.Migration):
},
),
migrations.CreateModel(
- name='SurvexEquate',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('cave', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='core.Cave')),
- ],
- ),
- migrations.CreateModel(
name='SurvexFile',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
@@ -392,7 +385,6 @@ class Migration(migrations.Migration):
('y', models.FloatField(blank=True, null=True)),
('z', models.FloatField(blank=True, null=True)),
('block', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.SurvexBlock')),
- ('equate', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='core.SurvexEquate')),
],
),
migrations.CreateModel(
@@ -414,9 +406,8 @@ class Migration(migrations.Migration):
('filesize', models.IntegerField(default=0)),
('npaths', models.IntegerField(default=0)),
('manyscansfolders', models.ManyToManyField(to='core.ScansFolder')),
- ('survexblocks', models.ManyToManyField(to='core.SurvexBlock')),
- ('survexscans', models.ManyToManyField(to='core.SingleScan')),
- ('survextitles', models.ManyToManyField(to='core.SurvexTitle')),
+ ('scans', models.ManyToManyField(to='core.SingleScan')),
+ ('survexfiles', models.ManyToManyField(to='core.SurvexFile')),
('tunnelcontains', models.ManyToManyField(to='core.TunnelFile')),
],
options={
diff --git a/core/models_caves.py b/core/models_caves.py
index a6b44c7..0338a62 100644
--- a/core/models_caves.py
+++ b/core/models_caves.py
@@ -484,7 +484,7 @@ class LogbookEntry(TroggleModel):
class QM(TroggleModel):
- #based on qm.csv in trunk/expoweb/1623/204 which has the fields:
+ # based on qm.csv in trunk/expoweb/1623/204 which has the fields:
#"Number","Grade","Area","Description","Page reference","Nearest station","Completion description","Comment"
found_by = models.ForeignKey(LogbookEntry, related_name='QMs_found',blank=True, null=True,on_delete=models.CASCADE )
ticked_off_by = models.ForeignKey(LogbookEntry, related_name='QMs_ticked_off',blank=True, null=True,on_delete=models.CASCADE)
diff --git a/core/models_survex.py b/core/models_survex.py
index b71c27a..808010b 100644
--- a/core/models_survex.py
+++ b/core/models_survex.py
@@ -7,13 +7,6 @@ from django.conf import settings
from django.urls import reverse
-###########################################################
-# These will allow browsing and editing of the survex data
-###########################################################
-# Needs to add:
-# Equates
-# reloading
-
class SurvexDirectory(models.Model):
path = models.CharField(max_length=200)
cave = models.ForeignKey('Cave', blank=True, null=True,on_delete=models.CASCADE)
@@ -52,9 +45,6 @@ class SurvexFile(models.Model):
self.save()
-#class SurvexEquate(models.Model):
-# cave = models.ForeignKey('Cave', blank=True, null=True,on_delete=models.CASCADE)
-
class SurvexStationLookUpManager(models.Manager):
def lookup(self, name):
blocknames, sep, stationname = name.rpartition(".")
@@ -132,16 +122,7 @@ class SurvexBlock(models.Model):
else:
res.append({'person':personrole.personexpedition.person, 'expeditionyear':personrole.personexpedition.expedition.year, 'roles':str(personrole.role)})
return res
-
- # def MakeSurvexStation(self, name):
- # ssl = self.survexstation_set.filter(name=name)
- # if ssl:
- # assert len(ssl) == 1
- # return ssl[0]
- # ss = SurvexStation(name=name, block=self)
- # #ss.save()
- # return ss
-
+
def DayIndex(self):
return list(self.expeditionday.survexblock_set.all()).index(self)
@@ -211,11 +192,9 @@ class TunnelFile(models.Model):
bfontcolours = models.BooleanField(default=False)
manyscansfolders = models.ManyToManyField("ScansFolder") # implicitly links to SVX files
scans = models.ManyToManyField("SingleScan") # implicitly links to SVX files
-# survexblocks = models.ManyToManyField("SurvexBlock")
tunnelcontains = models.ManyToManyField("TunnelFile") # case when its a frame type
filesize = models.IntegerField(default=0)
npaths = models.IntegerField(default=0)
-# survextitles = models.ManyToManyField("SurvexTitle")
survexfiles = models.ManyToManyField("SurvexFile") # direct link to SVX files
class Meta:
diff --git a/flatpages/migrations/0001_initial.py b/flatpages/migrations/0001_initial.py
index 6252c37..f487926 100644
--- a/flatpages/migrations/0001_initial.py
+++ b/flatpages/migrations/0001_initial.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Generated by Django 1.11.29 on 2020-06-23 22:48
+# Generated by Django 1.11.29 on 2020-06-26 23:53
from __future__ import unicode_literals
from django.db import migrations, models
diff --git a/lines-of-python.txt b/lines-of-python.txt
index d8104bb..edd5d66 100644
--- a/lines-of-python.txt
+++ b/lines-of-python.txt
@@ -33,23 +33,23 @@
97 ./core/forms.py
97 ./core/view_surveys.py
98 ./core/admin.py
-98 ./parsers/QMs.py
+99 ./parsers/QMs.py
102 ./parsers/people.py
124 ./core/templatetags/wiki_markup.py
135 ./utils.py
-147 ./parsers/surveys.py
-160 ./core/models_survex.py
+141 ./core/models_survex.py
+146 ./parsers/surveys.py
164 ./flatpages/views.py
164 ./modelviz.py
-167 ./core/models.py
+171 ./core/models.py
175 ./core/views_other.py
198 ./parsers/caves.py
216 ./core/views_logbooks.py
-256 ./core/views_survex.py
+255 ./core/views_survex.py
276 ./profiles/views.py
280 ./databaseReset.py
387 ./core/views_caves.py
-444 ./parsers/survex.py
-450 ./core/models_caves.py
+449 ./core/models_caves.py
515 ./parsers/logbooks.py
-5954
+556 ./parsers/survex.py
+6049
diff --git a/lines-of-templates.txt b/lines-of-templates.txt
index 761520b..c5e7fc7 100644
--- a/lines-of-templates.txt
+++ b/lines-of-templates.txt
@@ -34,9 +34,9 @@
23 ./templates/statistics.html
24 ./README/index.html
24 ./templates/dataformat/logbookentry.html
+25 ./templates/manyscansfolders.html
25 ./templates/profiles/select_profile.html
-25 ./templates/survexscansfolders.html
-27 ./templates/survexscansfolder.html
+27 ./templates/scansfolder.html
31 ./templates/caveindex.html
33 ./templates/tunnelfiles.html
35 ./templates/person.html
diff --git a/loadlogbk.log b/loadlogbk.log
new file mode 100644
index 0000000..22d86a1
--- /dev/null
+++ b/loadlogbk.log
@@ -0,0 +1,31 @@
+2020 0 should be 0
+2019 20 should be 20
+2018 74 should be 74
+2017 60 should be 60
+2016 81 should be 81
+2015 79 should be 79
+2014 65 should be 65
+2013 51 should be 51
+2012 75 should be 75
+2011 68 should be 68
+2010 22 should be 22
+2009 52 should be 52
+2008 49 should be 49
+2007 111 should be 111
+2006 24 should be 24
+2005 55 should be 55
+2004 76 should be 76
+2003 40 should be 40
+2002 31 should be 31
+2001 48 should be 48
+2000 54 should be 54
+1999 79 should be 79
+1998 43 should be 43
+1997 53 should be 53
+1996 94 should be 94
+1995 41 should be 41
+1994 32 should be 32
+1993 41 should be 41
+1992 61 should be 61
+1991 38 should be 38
+1982 0 should be 0
diff --git a/mem-0.log b/mem-0.log
new file mode 100644
index 0000000..27a6688
--- /dev/null
+++ b/mem-0.log
@@ -0,0 +1,13399 @@
+ - MEM:41.50390625 Reading. parent:1623 <> 1623
+ - Include path found, including - kataster/1623
+ - NO Match in DB (i) for a cave for kataster/1623
+> - MEM:41.51171875 Reading. parent:1623 <> kataster/1623
+> - No match (b) for kataster/1623
+> - Begin found for: 1623
+> > - MEM:41.51171875 Reading. parent:kataster/1623 <> kataster/1623
+> - Include path found, including - fixedpts/allfixedpts
+> - NO Match in DB (i) for a cave for fixedpts/allfixedpts
+> > - MEM:41.51171875 Reading. parent:kataster/1623 <> fixedpts/allfixedpts
+> > - Include path found, including - fixedpts/gps/allgps
+> > - NO Match in DB (i) for a cave for fixedpts/gps/allgps
+> > > - MEM:41.51171875 Reading. parent:kataster/1623 <> fixedpts/gps/allgps
+> > > - Include path found, including - fixedpts/gps/gps96
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps96
+> > > > - MEM:41.51171875 Reading. parent:kataster/1623 <> fixedpts/gps/gps96
+> > > > - No match (b) for fixedpts/gps/GPS96
+> > > > - Begin found for: gps96
+> > > > > - MEM:41.51171875 Reading. parent:fixedpts/gps/gps96 <> fixedpts/gps/gps96
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps98
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps98
+> > > > - MEM:41.51953125 Reading. parent:kataster/1623 <> fixedpts/gps/gps98
+> > > > - No match (b) for fixedpts/gps/GPS98
+> > > > - Begin found for: gps98
+> > > > > - MEM:41.51953125 Reading. parent:fixedpts/gps/gps98 <> fixedpts/gps/gps98
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps00
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps00
+> > > > - MEM:41.51953125 Reading. parent:kataster/1623 <> fixedpts/gps/gps00
+> > > > - No match (b) for fixedpts/gps/gps00
+> > > > - Begin found for: gps00
+> > > > > - MEM:41.51953125 Reading. parent:fixedpts/gps/gps00 <> fixedpts/gps/gps00
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps01
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps01
+> > > > - MEM:41.51953125 Reading. parent:kataster/1623 <> fixedpts/gps/gps01
+> > > > - No match (b) for fixedpts/gps/gps01
+> > > > - Begin found for: gps01
+> > > > > - MEM:41.51953125 Reading. parent:fixedpts/gps/gps01 <> fixedpts/gps/gps01
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps02
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02
+> > > > - MEM:41.51953125 Reading. parent:kataster/1623 <> fixedpts/gps/gps02
+> > > > - No match (b) for fixedpts/gps/gps02
+> > > > - Begin found for: gps02
+> > > > > - MEM:41.51953125 Reading. parent:fixedpts/gps/gps02 <> fixedpts/gps/gps02
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps02olly
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02olly
+> > > > - MEM:41.578125 Reading. parent:kataster/1623 <> fixedpts/gps/gps02olly
+> > > > - No match (b) for fixedpts/gps/gps02olly
+> > > > - Begin found for: gps02olly
+> > > > > - MEM:41.578125 Reading. parent:fixedpts/gps/gps02olly <> fixedpts/gps/gps02olly
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps03
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03
+> > > > - MEM:41.578125 Reading. parent:kataster/1623 <> fixedpts/gps/gps03
+> > > > - No match (b) for fixedpts/gps/gps03
+> > > > - Begin found for: gps03
+> > > > > - MEM:41.578125 Reading. parent:fixedpts/gps/gps03 <> fixedpts/gps/gps03
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps03_bis
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03_bis
+> > > > - MEM:41.578125 Reading. parent:kataster/1623 <> fixedpts/gps/gps03_bis
+> > > > - No match (b) for fixedpts/gps/gps03_bis
+> > > > - Begin found for: gps03_bis
+> > > > > - MEM:41.578125 Reading. parent:fixedpts/gps/gps03_bis <> fixedpts/gps/gps03_bis
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps04
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps04
+> > > > - MEM:41.69921875 Reading. parent:kataster/1623 <> fixedpts/gps/gps04
+> > > > - No match (b) for fixedpts/gps/gps04
+> > > > - Begin found for: gps04
+> > > > > - MEM:41.703125 Reading. parent:fixedpts/gps/gps04 <> fixedpts/gps/gps04
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps05dave
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05dave
+> > > > - MEM:41.703125 Reading. parent:kataster/1623 <> fixedpts/gps/gps05dave
+> > > - Include path found, including - fixedpts/gps/gps05
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05
+> > > > - MEM:41.703125 Reading. parent:kataster/1623 <> fixedpts/gps/gps05
+> > > - Include path found, including - fixedpts/gps/gps06
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps06
+> > > > - MEM:41.703125 Reading. parent:kataster/1623 <> fixedpts/gps/gps06
+> > > > - No match (b) for fixedpts/gps/gps06
+> > > > - Begin found for: gps06
+> > > > > - MEM:41.703125 Reading. parent:fixedpts/gps/gps06 <> fixedpts/gps/gps06
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps07
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps07
+> > > > - MEM:41.70703125 Reading. parent:kataster/1623 <> fixedpts/gps/gps07
+> > > > - No match (b) for fixedpts/gps/gps07
+> > > > - Begin found for: gps07
+> > > > > - MEM:41.70703125 Reading. parent:fixedpts/gps/gps07 <> fixedpts/gps/gps07
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps09
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps09
+> > > > - MEM:41.7734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps09
+> > > - Include path found, including - fixedpts/gps/gps10
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps10
+> > > > - MEM:41.7734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps10
+> > > - Include path found, including - fixedpts/gps/gps11
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps11
+> > > > - MEM:41.7734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps11
+> > > - Include path found, including - fixedpts/gps/gps12
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps12
+> > > > - MEM:41.7734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps12
+> > > - Include path found, including - fixedpts/gps/gps14
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps14
+> > > > - MEM:41.77734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps14
+> > > - Include path found, including - fixedpts/gps/gps15
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps15
+> > > > - MEM:41.77734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps15
+> > > - Include path found, including - fixedpts/gps/gps16
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps16
+> > > > - MEM:41.77734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps16
+> > > - Include path found, including - fixedpts/gps/gps17
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps17
+> > > > - MEM:41.77734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps17
+> > > - Include path found, including - fixedpts/gps/gps18
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps18
+> > > > - MEM:41.77734375 Reading. parent:kataster/1623 <> fixedpts/gps/gps18
+> > - Include path found, including - fixedpts/nils2000
+> > - NO Match in DB (i) for a cave for fixedpts/nils2000
+> > > - MEM:41.77734375 Reading. parent:kataster/1623 <> fixedpts/nils2000
+> > - Include path found, including - fixedpts/laser
+> > - NO Match in DB (i) for a cave for fixedpts/laser
+> > > - MEM:41.79296875 Reading. parent:kataster/1623 <> fixedpts/laser
+> > > - No match (b) for fixedpts/Laser
+> > > - Begin found for: laser
+> > > > - MEM:41.80859375 Reading. parent:fixedpts/laser <> fixedpts/laser
+> > > LEGS: 0 (previous: 0, now:0)
+> > - Include path found, including - fixedpts/fb-map
+> > - NO Match in DB (i) for a cave for fixedpts/fb-map
+> > > - MEM:41.80859375 Reading. parent:kataster/1623 <> fixedpts/fb-map
+> > - Include path found, including - fixedpts/misc
+> > - NO Match in DB (i) for a cave for fixedpts/misc
+> > > - MEM:41.80859375 Reading. parent:kataster/1623 <> fixedpts/misc
+> - Include path found, including - caves-1623/caves
+> - NO Match in DB (i) for a cave for caves-1623/caves
+> > - MEM:41.80859375 Reading. parent:kataster/1623 <> caves-1623/caves
+> > - Include path found, including - caves-1623/links
+> > - NO Match in DB (i) for a cave for caves-1623/links
+> > > - MEM:41.80859375 Reading. parent:kataster/1623 <> caves-1623/links
+> > - Include path found, including - caves-1623/18/18
+> > - Match in DB (i) for cave 1623-18.
+[<Cave: 1623-18>]
+> > > - MEM:42.1640625 Reading. parent:kataster/1623 <> caves-1623/18/18
+[<Cave: 1623-18>]
+> > > - Begin found for: 18
+> > > > - MEM:42.1640625 Reading. parent:caves-1623/18/18 <> caves-1623/18/18
+[<Cave: 1623-18>]
+> > > LEGS: 33 (previous: 0, now:33)
+> > - Include path found, including - caves-1623/31/31
+> > - Match in DB (i) for cave 1623-31.
+[<Cave: 1623-31>]
+> > > - MEM:42.1953125 Reading. parent:kataster/1623 <> caves-1623/31/31
+[<Cave: 1623-31>]
+> > > - Begin found for: 31
+> > > > - MEM:42.1953125 Reading. parent:caves-1623/31/31 <> caves-1623/31/31
+[<Cave: 1623-31>]
+> > > - Include path found, including - caves-1623/31/elchalt
+> > > - Match in DB (i) for cave 1623-31.
+[<Cave: 1623-31>]
+> > > > - MEM:42.20703125 Reading. parent:caves-1623/31/31 <> caves-1623/31/elchalt
+[<Cave: 1623-31>]
+[<Cave: 1623-31>]
+> > > > - Begin found for: elchalt
+> > > > > - MEM:42.21875 Reading. parent:caves-1623/31/elchalt <> caves-1623/31/elchalt
+[<Cave: 1623-31>]
+> > > > LEGS: 30 (previous: 33, now:63)
+> > > LEGS: 30 (previous: 33, now:63)
+> > - Include path found, including - caves-1623/76/76
+> > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > - MEM:42.2265625 Reading. parent:kataster/1623 <> caves-1623/76/76
+[<Cave: 1623-76>]
+> > > - Begin found for: 76
+> > > > - MEM:42.234375 Reading. parent:caves-1623/76/76 <> caves-1623/76/76
+[<Cave: 1623-76>]
+> > > - Include path found, including - caves-1623/76/entrance
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.2421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/entrance
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: entrance
+> > > > > - MEM:42.25 Reading. parent:caves-1623/76/entrance <> caves-1623/76/entrance
+[<Cave: 1623-76>]
+> > > > LEGS: 7 (previous: 63, now:70)
+> > > - Include path found, including - caves-1623/76/bitter
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.28125 Reading. parent:caves-1623/76/76 <> caves-1623/76/bitter
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: bitter
+> > > > > - MEM:42.28515625 Reading. parent:caves-1623/76/bitter <> caves-1623/76/bitter
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 70, now:79)
+> > > - Include path found, including - caves-1623/76/bent
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.2890625 Reading. parent:caves-1623/76/76 <> caves-1623/76/bent
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: bent
+> > > > > - MEM:42.296875 Reading. parent:caves-1623/76/bent <> caves-1623/76/bent
+[<Cave: 1623-76>]
+> > > > LEGS: 7 (previous: 79, now:86)
+> > > - Include path found, including - caves-1623/76/brave
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.30078125 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave
+> > > > > - MEM:42.3046875 Reading. parent:caves-1623/76/brave <> caves-1623/76/brave
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 86, now:121)
+> > > - Include path found, including - caves-1623/76/lovers
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.3125 Reading. parent:caves-1623/76/76 <> caves-1623/76/lovers
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: lovers
+> > > > > - MEM:42.31640625 Reading. parent:caves-1623/76/lovers <> caves-1623/76/lovers
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 121, now:130)
+> > > - Include path found, including - caves-1623/76/saved
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.3203125 Reading. parent:caves-1623/76/76 <> caves-1623/76/saved
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: saved
+> > > > > - MEM:42.32421875 Reading. parent:caves-1623/76/saved <> caves-1623/76/saved
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 130, now:151)
+> > > - Include path found, including - caves-1623/76/brave2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave2
+> > > > > - MEM:42.33203125 Reading. parent:caves-1623/76/brave2 <> caves-1623/76/brave2
+[<Cave: 1623-76>]
+> > > > LEGS: 19 (previous: 151, now:170)
+> > > - Include path found, including - caves-1623/76/brave3
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.3359375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave3
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave3
+> > > > > - MEM:42.33984375 Reading. parent:caves-1623/76/brave3 <> caves-1623/76/brave3
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 170, now:176)
+> > > - Include path found, including - caves-1623/76/brave4
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.34375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave4
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave4
+> > > > > - MEM:42.3515625 Reading. parent:caves-1623/76/brave4 <> caves-1623/76/brave4
+[<Cave: 1623-76>]
+> > > > LEGS: 13 (previous: 176, now:189)
+> > > - Include path found, including - caves-1623/76/brave5
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.35546875 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave5
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave5
+> > > > > - MEM:42.35546875 Reading. parent:caves-1623/76/brave5 <> caves-1623/76/brave5
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 189, now:197)
+> > > - Include path found, including - caves-1623/76/brave6
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.36328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave6
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave6
+> > > > > - MEM:42.3671875 Reading. parent:caves-1623/76/brave6 <> caves-1623/76/brave6
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 197, now:201)
+> > > - Include path found, including - caves-1623/76/brave7
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.37109375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave7
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave7
+> > > > > - MEM:42.375 Reading. parent:caves-1623/76/brave7 <> caves-1623/76/brave7
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 201, now:211)
+> > > - Include path found, including - caves-1623/76/brave8
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.37890625 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave8
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave8
+> > > > > - MEM:42.3828125 Reading. parent:caves-1623/76/brave8 <> caves-1623/76/brave8
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 211, now:217)
+> > > - Include path found, including - caves-1623/76/keg
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/keg
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: keg
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/keg <> caves-1623/76/keg
+[<Cave: 1623-76>]
+> > > > LEGS: 18 (previous: 217, now:235)
+> > > - Include path found, including - caves-1623/76/tap
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: tap
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/tap <> caves-1623/76/tap
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 235, now:256)
+> > > - Include path found, including - caves-1623/76/rift
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/rift
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: rift
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/rift <> caves-1623/76/rift
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 256, now:271)
+> > > - Include path found, including - caves-1623/76/noways
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/noways
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: noways
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/noways <> caves-1623/76/noways
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 271, now:286)
+> > > - Include path found, including - caves-1623/76/pitch
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/pitch
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: pitch
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/pitch <> caves-1623/76/pitch
+[<Cave: 1623-76>]
+> > > > LEGS: 12 (previous: 286, now:298)
+> > > - Include path found, including - caves-1623/76/boiling
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/boiling
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: boiling
+> > > > > - MEM:42.42578125 Reading. parent:caves-1623/76/boiling <> caves-1623/76/boiling
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 298, now:313)
+> > > - Include path found, including - caves-1623/76/99
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.4296875 Reading. parent:caves-1623/76/76 <> caves-1623/76/99
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: 99
+> > > > > - MEM:42.4375 Reading. parent:caves-1623/76/99 <> caves-1623/76/99
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 313, now:319)
+> > > - Include path found, including - caves-1623/76/tap2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.47265625 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: tap2
+> > > > > - MEM:42.4765625 Reading. parent:caves-1623/76/tap2 <> caves-1623/76/tap2
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 319, now:325)
+> > > - Include path found, including - caves-1623/76/taprift
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.484375 Reading. parent:caves-1623/76/76 <> caves-1623/76/taprift
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: taprift
+> > > > > - MEM:42.48828125 Reading. parent:caves-1623/76/taprift <> caves-1623/76/taprift
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 325, now:335)
+> > > - Include path found, including - caves-1623/76/pleasant
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.48828125 Reading. parent:caves-1623/76/76 <> caves-1623/76/pleasant
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: pleasant
+> > > > > - MEM:42.4921875 Reading. parent:caves-1623/76/pleasant <> caves-1623/76/pleasant
+[<Cave: 1623-76>]
+> > > > LEGS: 11 (previous: 335, now:346)
+> > > - Include path found, including - caves-1623/76/batman
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.5 Reading. parent:caves-1623/76/76 <> caves-1623/76/batman
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: batman
+> > > > > - MEM:42.50390625 Reading. parent:caves-1623/76/batman <> caves-1623/76/batman
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 346, now:350)
+> > > - Include path found, including - caves-1623/76/pancake
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.5078125 Reading. parent:caves-1623/76/76 <> caves-1623/76/pancake
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: pancake
+> > > > > - MEM:42.51171875 Reading. parent:caves-1623/76/pancake <> caves-1623/76/pancake
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 350, now:360)
+> > > - Include path found, including - caves-1623/76/loopy
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.515625 Reading. parent:caves-1623/76/76 <> caves-1623/76/loopy
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: loopy
+> > > > > - MEM:42.51953125 Reading. parent:caves-1623/76/loopy <> caves-1623/76/loopy
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 360, now:395)
+> > > - Include path found, including - caves-1623/76/spent
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.5234375 Reading. parent:caves-1623/76/76 <> caves-1623/76/spent
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: spent
+> > > > > - MEM:42.52734375 Reading. parent:caves-1623/76/spent <> caves-1623/76/spent
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 395, now:405)
+> > > - Include path found, including - caves-1623/76/strange
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.5390625 Reading. parent:caves-1623/76/76 <> caves-1623/76/strange
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: strange
+> > > > > - MEM:42.55078125 Reading. parent:caves-1623/76/strange <> caves-1623/76/strange
+[<Cave: 1623-76>]
+> > > > LEGS: 24 (previous: 405, now:429)
+> > > - Include path found, including - caves-1623/76/stranger
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.6171875 Reading. parent:caves-1623/76/76 <> caves-1623/76/stranger
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: stranger
+> > > > > - MEM:42.62109375 Reading. parent:caves-1623/76/stranger <> caves-1623/76/stranger
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 429, now:435)
+> > > - Include path found, including - caves-1623/76/waste
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.6328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/waste
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: waste
+> > > > > - MEM:42.6484375 Reading. parent:caves-1623/76/waste <> caves-1623/76/waste
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 435, now:444)
+> > > - Include path found, including - caves-1623/76/hotgkpitch
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.66796875 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgkpitch
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: hotgkpitch
+> > > > > - MEM:42.6796875 Reading. parent:caves-1623/76/hotgkpitch <> caves-1623/76/hotgkpitch
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 444, now:452)
+> > > - Include path found, including - caves-1623/76/hotgk
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.703125 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgk
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: hotgk
+> > > > > - MEM:42.72265625 Reading. parent:caves-1623/76/hotgk <> caves-1623/76/hotgk
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 452, now:473)
+> > > - Include path found, including - caves-1623/76/fiesta
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.76953125 Reading. parent:caves-1623/76/76 <> caves-1623/76/fiesta
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: fiesta
+> > > > > - MEM:42.76953125 Reading. parent:caves-1623/76/fiesta <> caves-1623/76/fiesta
+[<Cave: 1623-76>]
+> > > > LEGS: 31 (previous: 473, now:504)
+> > > - Include path found, including - caves-1623/76/holes
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.78125 Reading. parent:caves-1623/76/76 <> caves-1623/76/holes
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: holes
+> > > > > - MEM:42.79296875 Reading. parent:caves-1623/76/holes <> caves-1623/76/holes
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 504, now:512)
+> > > - Include path found, including - caves-1623/76/boil2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.83984375 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: boil2
+> > > > > - MEM:42.83984375 Reading. parent:caves-1623/76/boil2 <> caves-1623/76/boil2
+[<Cave: 1623-76>]
+> > > > LEGS: 3 (previous: 512, now:515)
+> > > - Include path found, including - caves-1623/76/boil3
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.84375 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil3
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: boil3
+> > > > > - MEM:42.84765625 Reading. parent:caves-1623/76/boil3 <> caves-1623/76/boil3
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 515, now:519)
+> > > - Include path found, including - caves-1623/76/choss
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.85546875 Reading. parent:caves-1623/76/76 <> caves-1623/76/choss
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: choss
+> > > > > - MEM:42.859375 Reading. parent:caves-1623/76/choss <> caves-1623/76/choss
+[<Cave: 1623-76>]
+> > > > LEGS: 5 (previous: 519, now:524)
+> > > - Include path found, including - caves-1623/76/brave9
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.86328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave9
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: brave9
+> > > > > - MEM:42.8671875 Reading. parent:caves-1623/76/brave9 <> caves-1623/76/brave9
+[<Cave: 1623-76>]
+> > > > LEGS: 12 (previous: 524, now:536)
+> > > - Include path found, including - caves-1623/76/electric_upper
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.87109375 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_upper
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: electric_upper
+> > > > > - MEM:42.875 Reading. parent:caves-1623/76/electric_upper <> caves-1623/76/electric_upper
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 536, now:571)
+> > > - Include path found, including - caves-1623/76/electric_lower
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.88671875 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_lower
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: electric_lower
+> > > > > - MEM:42.89453125 Reading. parent:caves-1623/76/electric_lower <> caves-1623/76/electric_lower
+[<Cave: 1623-76>]
+> > > > LEGS: 249 (previous: 571, now:820)
+> > > - Include path found, including - caves-1623/76/atomic
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8984375 Reading. parent:caves-1623/76/76 <> caves-1623/76/atomic
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for: atomic
+> > > > > - MEM:42.8984375 Reading. parent:caves-1623/76/atomic <> caves-1623/76/atomic
+[<Cave: 1623-76>]
+> > > > LEGS: 65 (previous: 820, now:885)
+> > > LEGS: 822 (previous: 63, now:885)
+> > - Include path found, including - caves-1623/81/81
+> > - Match in DB (i) for cave 1623-81.
+[<Cave: 1623-81>]
+> > > - MEM:42.90234375 Reading. parent:kataster/1623 <> caves-1623/81/81
+[<Cave: 1623-81>]
+> > > - Begin found for: 81
+> > > > - MEM:42.90234375 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+[<Cave: 1623-81>]
+[<Cave: 1623-81>]
+> > > - Begin found for: oldcave
+> > > > - MEM:42.90234375 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+[<Cave: 1623-81>]
+> > > LEGS: 10 (previous: 885, now:895)
+> > - Include path found, including - caves-1623/90/90
+> > - Match in DB (i) for cave 1623-90.
+[<Cave: 1623-90>]
+> > > - MEM:42.90234375 Reading. parent:kataster/1623 <> caves-1623/90/90
+[<Cave: 1623-90>]
+> > > - Begin found for: 90
+> > > > - MEM:42.90625 Reading. parent:caves-1623/90/90 <> caves-1623/90/90
+[<Cave: 1623-90>]
+> > > LEGS: 1 (previous: 895, now:896)
+> > - Include path found, including - caves-1623/91/91
+> > - Match in DB (i) for cave 1623-91.
+[<Cave: 1623-91>]
+> > > - MEM:42.90625 Reading. parent:kataster/1623 <> caves-1623/91/91
+[<Cave: 1623-91>]
+> > > - Begin found for: 91
+> > > > - MEM:42.91015625 Reading. parent:caves-1623/91/91 <> caves-1623/91/91
+[<Cave: 1623-91>]
+> > > LEGS: 1 (previous: 896, now:897)
+> > - Include path found, including - caves-1623/96/96
+> > - Match in DB (i) for cave 1623-96.
+[<Cave: 1623-96>]
+> > > - MEM:42.9140625 Reading. parent:kataster/1623 <> caves-1623/96/96
+[<Cave: 1623-96>]
+> > > - Begin found for: 96
+> > > > - MEM:42.91796875 Reading. parent:caves-1623/96/96 <> caves-1623/96/96
+[<Cave: 1623-96>]
+> > > LEGS: 8 (previous: 897, now:905)
+> > - Include path found, including - caves-1623/97/97
+> > - Match in DB (i) for cave 1623-97.
+[<Cave: 1623-97>]
+> > > - MEM:42.9296875 Reading. parent:kataster/1623 <> caves-1623/97/97
+[<Cave: 1623-97>]
+> > > - Begin found for: 97
+> > > > - MEM:42.93359375 Reading. parent:caves-1623/97/97 <> caves-1623/97/97
+[<Cave: 1623-97>]
+> > > LEGS: 47 (previous: 905, now:952)
+> > - Include path found, including - caves-1623/101/101
+> > - Match in DB (i) for cave 1623-101.
+[<Cave: 1623-101>]
+> > > - MEM:42.9375 Reading. parent:kataster/1623 <> caves-1623/101/101
+[<Cave: 1623-101>]
+> > > - Begin found for: 101
+> > > > - MEM:42.9375 Reading. parent:caves-1623/101/101 <> caves-1623/101/101
+[<Cave: 1623-101>]
+> > > LEGS: 142 (previous: 952, now:1094)
+> > - Include path found, including - caves-1623/103/103
+> > - Match in DB (i) for cave 1623-103.
+[<Cave: 1623-103>]
+> > > - MEM:42.953125 Reading. parent:kataster/1623 <> caves-1623/103/103
+[<Cave: 1623-103>]
+> > > - Begin found for: 103
+> > > > - MEM:42.953125 Reading. parent:caves-1623/103/103 <> caves-1623/103/103
+[<Cave: 1623-103>]
+> > > LEGS: 1 (previous: 1094, now:1095)
+> > - Include path found, including - caves-1623/105/105
+> > - Match in DB (i) for cave 1623-105.
+[<Cave: 1623-105>]
+> > > - MEM:42.95703125 Reading. parent:kataster/1623 <> caves-1623/105/105
+[<Cave: 1623-105>]
+> > > - Begin found for: 105
+> > > > - MEM:42.9609375 Reading. parent:caves-1623/105/105 <> caves-1623/105/105
+[<Cave: 1623-105>]
+> > > LEGS: 2 (previous: 1095, now:1097)
+> > - Include path found, including - caves-1623/108/108
+> > - Match in DB (i) for cave 1623-108.
+[<Cave: 1623-108>]
+> > > - MEM:42.96875 Reading. parent:kataster/1623 <> caves-1623/108/108
+[<Cave: 1623-108>]
+> > > - Begin found for: 108
+> > > > - MEM:42.96875 Reading. parent:caves-1623/108/108 <> caves-1623/108/108
+[<Cave: 1623-108>]
+> > > LEGS: 1 (previous: 1097, now:1098)
+> > - Include path found, including - caves-1623/113/113
+> > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > - MEM:43.01171875 Reading. parent:kataster/1623 <> caves-1623/113/113
+[<Cave: 1623-113>]
+> > > - Begin found for: 113
+> > > > - MEM:43.01953125 Reading. parent:caves-1623/113/113 <> caves-1623/113/113
+[<Cave: 1623-113>]
+> > > - Include path found, including - caves-1623/113/haupt
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.03125 Reading. parent:caves-1623/113/113 <> caves-1623/113/haupt
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for: haupt
+> > > > > - MEM:43.05859375 Reading. parent:caves-1623/113/haupt <> caves-1623/113/haupt
+[<Cave: 1623-113>]
+> > > > LEGS: 98 (previous: 1098, now:1196)
+> > > - Include path found, including - caves-1623/113/oper
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.05859375 Reading. parent:caves-1623/113/113 <> caves-1623/113/oper
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for: oper
+> > > > > - MEM:43.0625 Reading. parent:caves-1623/113/oper <> caves-1623/113/oper
+[<Cave: 1623-113>]
+> > > > LEGS: 21 (previous: 1196, now:1217)
+> > > - Include path found, including - caves-1623/113/sumpf
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.07421875 Reading. parent:caves-1623/113/113 <> caves-1623/113/sumpf
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for: sumpf
+> > > > > - MEM:43.07421875 Reading. parent:caves-1623/113/sumpf <> caves-1623/113/sumpf
+[<Cave: 1623-113>]
+> > > > LEGS: 38 (previous: 1217, now:1255)
+> > > LEGS: 157 (previous: 1098, now:1255)
+> > - Include path found, including - caves-1623/116/116
+> > - Match in DB (i) for cave 1623-116.
+[<Cave: 1623-116>]
+> > > - MEM:43.078125 Reading. parent:kataster/1623 <> caves-1623/116/116
+[<Cave: 1623-116>]
+> > > - Begin found for: 116
+> > > > - MEM:43.078125 Reading. parent:caves-1623/116/116 <> caves-1623/116/116
+[<Cave: 1623-116>]
+> > > LEGS: 41 (previous: 1255, now:1296)
+> > - Include path found, including - caves-1623/131/131
+> > - Match in DB (i) for cave 1623-131.
+[<Cave: 1623-131>]
+> > > - MEM:43.08203125 Reading. parent:kataster/1623 <> caves-1623/131/131
+[<Cave: 1623-131>]
+> > > - Begin found for: 131
+> > > > - MEM:43.08203125 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+[<Cave: 1623-131>]
+[<Cave: 1623-131>]
+> > > - Begin found for: part1
+> > > > - MEM:43.08203125 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+[<Cave: 1623-131>]
+> > > LEGS: 32 (previous: 1296, now:1328)
+> > - Include path found, including - caves-1623/135/135
+> > - Match in DB (i) for cave 1623-135.
+[<Cave: 1623-135>]
+> > > - MEM:43.08203125 Reading. parent:kataster/1623 <> caves-1623/135/135
+[<Cave: 1623-135>]
+> > > - Begin found for: 135
+> > > > - MEM:43.08203125 Reading. parent:caves-1623/135/135 <> caves-1623/135/135
+[<Cave: 1623-135>]
+> > > LEGS: 2 (previous: 1328, now:1330)
+> > - Include path found, including - caves-1623/138/138
+> > - Match in DB (i) for cave 1623-138.
+[<Cave: 1623-138>]
+> > > - MEM:43.08203125 Reading. parent:kataster/1623 <> caves-1623/138/138
+[<Cave: 1623-138>]
+> > > - Begin found for: 138
+> > > > - MEM:43.08203125 Reading. parent:caves-1623/138/138 <> caves-1623/138/138
+[<Cave: 1623-138>]
+> > > LEGS: 2 (previous: 1330, now:1332)
+> > - Include path found, including - caves-1623/139/139
+> > - Match in DB (i) for cave 1623-139.
+[<Cave: 1623-139>]
+> > > - MEM:43.08203125 Reading. parent:kataster/1623 <> caves-1623/139/139
+[<Cave: 1623-139>]
+> > > - Begin found for: 139
+> > > > - MEM:43.08203125 Reading. parent:caves-1623/139/139 <> caves-1623/139/139
+[<Cave: 1623-139>]
+> > > LEGS: 2 (previous: 1332, now:1334)
+> > - Include path found, including - caves-1623/140/140
+> > - Match in DB (i) for cave 1623-140.
+[<Cave: 1623-140>]
+> > > - MEM:43.08203125 Reading. parent:kataster/1623 <> caves-1623/140/140
+[<Cave: 1623-140>]
+> > > - Begin found for: 140
+> > > > - MEM:43.08203125 Reading. parent:caves-1623/140/140 <> caves-1623/140/140
+[<Cave: 1623-140>]
+> > > LEGS: 1 (previous: 1334, now:1335)
+> > - Include path found, including - caves-1623/145/145
+> > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > - MEM:43.1328125 Reading. parent:kataster/1623 <> caves-1623/145/145
+[<Cave: 1623-145>]
+> > > - Begin found for: 145
+> > > > - MEM:43.13671875 Reading. parent:caves-1623/145/145 <> caves-1623/145/145
+[<Cave: 1623-145>]
+> > > - Include path found, including - caves-1623/145/resurvey2005/145-2005
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.1484375 Reading. parent:caves-1623/145/145 <> caves-1623/145/resurvey2005/145-2005
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for: 145-2005
+> > > > > - MEM:43.16796875 Reading. parent:caves-1623/145/resurvey2005/145-2005 <> caves-1623/145/resurvey2005/145-2005
+[<Cave: 1623-145>]
+> > > > LEGS: 100 (previous: 1335, now:1435)
+> > > - Include path found, including - caves-1623/145/145cucc/part3
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.171875 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for: part3
+> > > > > - MEM:43.18359375 Reading. parent:caves-1623/145/145cucc/part3 <> caves-1623/145/145cucc/part3
+[<Cave: 1623-145>]
+> > > > LEGS: 29 (previous: 1435, now:1464)
+> > > - Include path found, including - caves-1623/145/145cucc/part3to4
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.1875 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3to4
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for: part3to4
+> > > > > - MEM:43.1953125 Reading. parent:caves-1623/145/145cucc/part3to4 <> caves-1623/145/145cucc/part3to4
+[<Cave: 1623-145>]
+> > > > LEGS: 1 (previous: 1464, now:1465)
+> > > - Include path found, including - caves-1623/145/145cucc/part4
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.1953125 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part4
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for: part4
+> > > > > - MEM:43.20703125 Reading. parent:caves-1623/145/145cucc/part4 <> caves-1623/145/145cucc/part4
+[<Cave: 1623-145>]
+> > > > LEGS: 49 (previous: 1465, now:1514)
+> > > - Include path found, including - caves-1623/145/145cucc/part5
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part5
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for: part5
+> > > > > - MEM:43.21484375 Reading. parent:caves-1623/145/145cucc/part5 <> caves-1623/145/145cucc/part5
+[<Cave: 1623-145>]
+> > > > LEGS: 9 (previous: 1514, now:1523)
+> > > LEGS: 188 (previous: 1335, now:1523)
+> > - Include path found, including - caves-1623/147/147
+> > - Match in DB (i) for cave 1623-147.
+[<Cave: 1623-147>]
+> > > - MEM:43.21484375 Reading. parent:kataster/1623 <> caves-1623/147/147
+[<Cave: 1623-147>]
+> > > - Begin found for: sflink
+> > > > - MEM:43.21484375 Reading. parent:caves-1623/147/147 <> caves-1623/147/147
+[<Cave: 1623-147>]
+> > > LEGS: 1 (previous: 1523, now:1524)
+> > - Include path found, including - caves-1623/148/148-2007
+> > - Match in DB (i) for cave 1623-148.
+[<Cave: 1623-148>]
+> > > - MEM:43.21484375 Reading. parent:kataster/1623 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+> > > - Begin found for: 148
+> > > > - MEM:43.21484375 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+[<Cave: 1623-148>]
+> > > - Begin found for: ent
+> > > > - MEM:43.22265625 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+> > > LEGS: 12 (previous: 1524, now:1536)
+> > - Include path found, including - caves-1623/152/152
+> > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > - MEM:43.22265625 Reading. parent:kataster/1623 <> caves-1623/152/152
+[<Cave: 1623-152>]
+> > > - Begin found for: 152
+> > > > - MEM:43.22265625 Reading. parent:caves-1623/152/152 <> caves-1623/152/152
+[<Cave: 1623-152>]
+> > > - Include path found, including - caves-1623/152/bananamain
+> > > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > > - MEM:43.234375 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananamain
+[<Cave: 1623-152>]
+[<Cave: 1623-152>]
+> > > > - Begin found for: bananamain
+> > > > > - MEM:43.2890625 Reading. parent:caves-1623/152/bananamain <> caves-1623/152/bananamain
+[<Cave: 1623-152>]
+> > > > LEGS: 43 (previous: 1536, now:1579)
+> > > - Include path found, including - caves-1623/152/bananacon
+> > > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > > - MEM:43.296875 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananacon
+[<Cave: 1623-152>]
+[<Cave: 1623-152>]
+> > > > - Begin found for: bananacon
+> > > > > - MEM:43.30078125 Reading. parent:caves-1623/152/bananacon <> caves-1623/152/bananacon
+[<Cave: 1623-152>]
+> > > > LEGS: 13 (previous: 1579, now:1592)
+> > > LEGS: 56 (previous: 1536, now:1592)
+> > - Include path found, including - caves-1623/157/157
+> > - Match in DB (i) for cave 1623-157.
+[<Cave: 1623-157>]
+> > > - MEM:43.30078125 Reading. parent:kataster/1623 <> caves-1623/157/157
+[<Cave: 1623-157>]
+> > > - Begin found for: 157
+> > > > - MEM:43.30078125 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+[<Cave: 1623-157>]
+[<Cave: 1623-157>]
+> > > - Begin found for: pt2
+> > > > - MEM:43.328125 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+[<Cave: 1623-157>]
+> > > LEGS: 0 (previous: 1605, now:1605)
+> > - Include path found, including - caves-1623/162/162
+> > - Match in DB (i) for cave 1623-162.
+[<Cave: 1623-162>]
+> > > - MEM:43.33203125 Reading. parent:kataster/1623 <> caves-1623/162/162
+[<Cave: 1623-162>]
+> > > - Begin found for: 162
+> > > > - MEM:43.3359375 Reading. parent:caves-1623/162/162 <> caves-1623/162/162
+[<Cave: 1623-162>]
+> > > LEGS: 20 (previous: 1605, now:1625)
+> > - Include path found, including - caves-1623/163/163
+> > - Match in DB (i) for cave 1623-163.
+[<Cave: 1623-163>]
+> > > - MEM:43.44140625 Reading. parent:kataster/1623 <> caves-1623/163/163
+[<Cave: 1623-163>]
+> > > - Begin found for: 163
+> > > > - MEM:43.44140625 Reading. parent:caves-1623/163/163 <> caves-1623/163/163
+[<Cave: 1623-163>]
+> > > LEGS: 5 (previous: 1625, now:1630)
+> > - Include path found, including - caves-1623/171/171
+> > - Match in DB (i) for cave 1623-171.
+[<Cave: 1623-171>]
+> > > - MEM:43.453125 Reading. parent:kataster/1623 <> caves-1623/171/171
+[<Cave: 1623-171>]
+> > > - Begin found for: 171
+> > > > - MEM:43.484375 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+[<Cave: 1623-171>]
+[<Cave: 1623-171>]
+> > > - Begin found for: main
+> > > > - MEM:43.4921875 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+[<Cave: 1623-171>]
+> > > LEGS: 209 (previous: 1630, now:1839)
+> > - Include path found, including - caves-1623/172/172
+> > - Match in DB (i) for cave 1623-172.
+[<Cave: 1623-172>]
+> > > - MEM:43.49609375 Reading. parent:kataster/1623 <> caves-1623/172/172
+[<Cave: 1623-172>]
+> > > - Begin found for: 172
+> > > > - MEM:43.49609375 Reading. parent:caves-1623/172/172 <> caves-1623/172/172
+[<Cave: 1623-172>]
+> > > LEGS: 2 (previous: 1839, now:1841)
+> > - Include path found, including - caves-1623/174/174
+> > - Match in DB (i) for cave 1623-174.
+[<Cave: 1623-174>]
+> > > - MEM:43.60546875 Reading. parent:kataster/1623 <> caves-1623/174/174
+[<Cave: 1623-174>]
+> > > - Begin found for: 174
+> > > > - MEM:43.61328125 Reading. parent:caves-1623/174/174 <> caves-1623/174/174
+[<Cave: 1623-174>]
+> > > LEGS: 1 (previous: 1841, now:1842)
+> > - Include path found, including - caves-1623/175/175
+> > - Match in DB (i) for cave 1623-175.
+[<Cave: 1623-175>]
+> > > - MEM:43.62890625 Reading. parent:kataster/1623 <> caves-1623/175/175
+[<Cave: 1623-175>]
+> > > - Begin found for: 175
+> > > > - MEM:43.6328125 Reading. parent:caves-1623/175/175 <> caves-1623/175/175
+[<Cave: 1623-175>]
+> > > LEGS: 1 (previous: 1842, now:1843)
+> > - Include path found, including - caves-1623/176/176
+> > - Match in DB (i) for cave 1623-176.
+[<Cave: 1623-176>]
+> > > - MEM:43.64453125 Reading. parent:kataster/1623 <> caves-1623/176/176
+[<Cave: 1623-176>]
+> > > - Begin found for: 176
+> > > > - MEM:43.65234375 Reading. parent:caves-1623/176/176 <> caves-1623/176/176
+[<Cave: 1623-176>]
+> > > LEGS: 1 (previous: 1843, now:1844)
+> > - Include path found, including - caves-1623/182/182
+> > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > - MEM:43.70703125 Reading. parent:kataster/1623 <> caves-1623/182/182
+[<Cave: 1623-182>]
+> > > - Begin found for: 182
+> > > > - MEM:43.73828125 Reading. parent:caves-1623/182/182 <> caves-1623/182/182
+[<Cave: 1623-182>]
+> > > - Include path found, including - caves-1623/182/entrance
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.76171875 Reading. parent:caves-1623/182/182 <> caves-1623/182/entrance
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: entrance
+> > > > > - MEM:43.8125 Reading. parent:caves-1623/182/entrance <> caves-1623/182/entrance
+[<Cave: 1623-182>]
+> > > > LEGS: 31 (previous: 1844, now:1875)
+> > > - Include path found, including - caves-1623/182/yorkrip
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.828125 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorkrip
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: yorkrip
+> > > > > - MEM:43.84375 Reading. parent:caves-1623/182/yorkrip <> caves-1623/182/yorkrip
+[<Cave: 1623-182>]
+> > > > LEGS: 31 (previous: 1875, now:1906)
+> > > - Include path found, including - caves-1623/182/dottodot
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.86328125 Reading. parent:caves-1623/182/182 <> caves-1623/182/dottodot
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: dottodot
+> > > > > - MEM:43.8671875 Reading. parent:caves-1623/182/dottodot <> caves-1623/182/dottodot
+[<Cave: 1623-182>]
+> > > > LEGS: 26 (previous: 1906, now:1932)
+> > > - Include path found, including - caves-1623/182/quark
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.8828125 Reading. parent:caves-1623/182/182 <> caves-1623/182/quark
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: quark
+> > > > > - MEM:43.89453125 Reading. parent:caves-1623/182/quark <> caves-1623/182/quark
+[<Cave: 1623-182>]
+> > > > LEGS: 23 (previous: 1932, now:1955)
+> > > - Include path found, including - caves-1623/182/amnesia
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.99609375 Reading. parent:caves-1623/182/182 <> caves-1623/182/amnesia
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: amnesia
+> > > > > - MEM:44.00390625 Reading. parent:caves-1623/182/amnesia <> caves-1623/182/amnesia
+[<Cave: 1623-182>]
+> > > > LEGS: 24 (previous: 1955, now:1979)
+> > > - Include path found, including - caves-1623/182/piezo
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.01953125 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: piezo
+> > > > > - MEM:44.03125 Reading. parent:caves-1623/182/piezo <> caves-1623/182/piezo
+[<Cave: 1623-182>]
+> > > > LEGS: 10 (previous: 1979, now:1989)
+> > > - Include path found, including - caves-1623/182/strike2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.0390625 Reading. parent:caves-1623/182/182 <> caves-1623/182/strike2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: strike2
+> > > > > - MEM:44.05859375 Reading. parent:caves-1623/182/strike2 <> caves-1623/182/strike2
+[<Cave: 1623-182>]
+> > > > LEGS: 4 (previous: 1989, now:1993)
+> > > - Include path found, including - caves-1623/182/piezo2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.07421875 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: piezo2
+> > > > > - MEM:44.08984375 Reading. parent:caves-1623/182/piezo2 <> caves-1623/182/piezo2
+[<Cave: 1623-182>]
+> > > > LEGS: 10 (previous: 1993, now:2003)
+> > > - Include path found, including - caves-1623/182/ent2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.13671875 Reading. parent:caves-1623/182/182 <> caves-1623/182/ent2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: ent2
+> > > > > - MEM:44.13671875 Reading. parent:caves-1623/182/ent2 <> caves-1623/182/ent2
+[<Cave: 1623-182>]
+> > > > LEGS: 9 (previous: 2003, now:2012)
+> > > - Include path found, including - caves-1623/182/yorktop
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.234375 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorktop
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: yorktop
+> > > > > - MEM:44.2421875 Reading. parent:caves-1623/182/yorktop <> caves-1623/182/yorktop
+[<Cave: 1623-182>]
+> > > > LEGS: 26 (previous: 2012, now:2038)
+> > > - Include path found, including - caves-1623/182/sump
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.25 Reading. parent:caves-1623/182/182 <> caves-1623/182/sump
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: sump
+> > > > > - MEM:44.25 Reading. parent:caves-1623/182/sump <> caves-1623/182/sump
+[<Cave: 1623-182>]
+> > > > LEGS: 8 (previous: 2038, now:2046)
+> > > - Include path found, including - caves-1623/182/overshel
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.265625 Reading. parent:caves-1623/182/182 <> caves-1623/182/overshel
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: ott
+> > > > > - MEM:44.28515625 Reading. parent:caves-1623/182/overshel <> caves-1623/182/overshel
+[<Cave: 1623-182>]
+> > > > LEGS: 16 (previous: 2046, now:2062)
+> > > - Include path found, including - caves-1623/182/claustro
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.30078125 Reading. parent:caves-1623/182/182 <> caves-1623/182/claustro
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: claustrolink
+> > > > > - MEM:44.31640625 Reading. parent:caves-1623/182/claustro <> caves-1623/182/claustro
+[<Cave: 1623-182>]
+> > > > LEGS: 1 (previous: 2062, now:2063)
+> > > - Include path found, including - caves-1623/182/brutefor
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.33203125 Reading. parent:caves-1623/182/182 <> caves-1623/182/brutefor
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for: brute
+> > > > > - MEM:44.34375 Reading. parent:caves-1623/182/brutefor <> caves-1623/182/brutefor
+[<Cave: 1623-182>]
+> > > > LEGS: 16 (previous: 2063, now:2079)
+> > > LEGS: 235 (previous: 1844, now:2079)
+> > - Include path found, including - caves-1623/183/183
+> > - Match in DB (i) for cave 1623-183.
+[<Cave: 1623-183>]
+> > > - MEM:44.3515625 Reading. parent:kataster/1623 <> caves-1623/183/183
+[<Cave: 1623-183>]
+> > > - Begin found for: 183
+> > > > - MEM:44.359375 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+[<Cave: 1623-183>]
+[<Cave: 1623-183>]
+> > > - Begin found for: upper
+> > > > - MEM:44.37890625 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+[<Cave: 1623-183>]
+> > > LEGS: 21 (previous: 2079, now:2100)
+> > - Include path found, including - caves-1623/185/185
+> > - Match in DB (i) for cave 1623-185.
+[<Cave: 1623-185>]
+> > > - MEM:44.3828125 Reading. parent:kataster/1623 <> caves-1623/185/185
+[<Cave: 1623-185>]
+> > > - Begin found for: 185
+> > > > - MEM:44.39453125 Reading. parent:caves-1623/185/185 <> caves-1623/185/185
+[<Cave: 1623-185>]
+> > > LEGS: 20 (previous: 2100, now:2120)
+> > - Include path found, including - caves-1623/193/193
+> > - Match in DB (i) for cave 1623-193.
+[<Cave: 1623-193>]
+> > > - MEM:44.41015625 Reading. parent:kataster/1623 <> caves-1623/193/193
+[<Cave: 1623-193>]
+> > > - Begin found for: 193
+> > > > - MEM:44.41015625 Reading. parent:caves-1623/193/193 <> caves-1623/193/193
+[<Cave: 1623-193>]
+> > > LEGS: 5 (previous: 2120, now:2125)
+> > - Include path found, including - caves-1623/195/195
+> > - Match in DB (i) for cave 1623-195.
+[<Cave: 1623-195>]
+> > > - MEM:44.4296875 Reading. parent:kataster/1623 <> caves-1623/195/195
+[<Cave: 1623-195>]
+> > > - Begin found for: 195
+> > > > - MEM:44.4375 Reading. parent:caves-1623/195/195 <> caves-1623/195/195
+[<Cave: 1623-195>]
+> > > LEGS: 4 (previous: 2125, now:2129)
+> > - Include path found, including - caves-1623/196/196
+> > - Match in DB (i) for cave 1623-196.
+[<Cave: 1623-196>]
+> > > - MEM:44.453125 Reading. parent:kataster/1623 <> caves-1623/196/196
+[<Cave: 1623-196>]
+> > > - Begin found for: 196
+> > > > - MEM:44.45703125 Reading. parent:caves-1623/196/196 <> caves-1623/196/196
+[<Cave: 1623-196>]
+> > > LEGS: 3 (previous: 2129, now:2132)
+> > - Include path found, including - caves-1623/199/199
+> > - Match in DB (i) for cave 1623-199.
+[<Cave: 1623-199>]
+> > > - MEM:44.47265625 Reading. parent:kataster/1623 <> caves-1623/199/199
+[<Cave: 1623-199>]
+> > > - Begin found for: 199
+> > > > - MEM:44.484375 Reading. parent:caves-1623/199/199 <> caves-1623/199/199
+[<Cave: 1623-199>]
+> > > LEGS: 5 (previous: 2132, now:2137)
+> > - Include path found, including - caves-1623/200/200
+> > - Match in DB (i) for cave 1623-200.
+[<Cave: 1623-200>]
+> > > - MEM:44.48828125 Reading. parent:kataster/1623 <> caves-1623/200/200
+[<Cave: 1623-200>]
+> > > - Begin found for: 200
+> > > > - MEM:44.4921875 Reading. parent:caves-1623/200/200 <> caves-1623/200/200
+[<Cave: 1623-200>]
+> > > LEGS: 4 (previous: 2137, now:2141)
+> > - Include path found, including - caves-1623/201/201
+> > - Match in DB (i) for cave 1623-201.
+[<Cave: 1623-201>]
+> > > - MEM:44.5 Reading. parent:kataster/1623 <> caves-1623/201/201
+[<Cave: 1623-201>]
+> > > - Begin found for: 201
+> > > > - MEM:44.5078125 Reading. parent:caves-1623/201/201 <> caves-1623/201/201
+[<Cave: 1623-201>]
+> > > LEGS: 2 (previous: 2141, now:2143)
+> > - Include path found, including - caves-1623/202/202
+> > - Match in DB (i) for cave 1623-202.
+[<Cave: 1623-202>]
+> > > - MEM:44.5234375 Reading. parent:kataster/1623 <> caves-1623/202/202
+[<Cave: 1623-202>]
+> > > - Begin found for: 202
+> > > > - MEM:44.53125 Reading. parent:caves-1623/202/202 <> caves-1623/202/202
+[<Cave: 1623-202>]
+> > > LEGS: 14 (previous: 2143, now:2157)
+> > - Include path found, including - caves-1623/203/203
+> > - Match in DB (i) for cave 1623-203.
+[<Cave: 1623-203>]
+> > > - MEM:44.546875 Reading. parent:kataster/1623 <> caves-1623/203/203
+[<Cave: 1623-203>]
+> > > - Begin found for: 203
+> > > > - MEM:44.55078125 Reading. parent:caves-1623/203/203 <> caves-1623/203/203
+[<Cave: 1623-203>]
+> > > LEGS: 7 (previous: 2157, now:2164)
+> > - Include path found, including - caves-1623/205/205
+> > - Match in DB (i) for cave 1623-205.
+[<Cave: 1623-205>]
+> > > - MEM:44.56640625 Reading. parent:kataster/1623 <> caves-1623/205/205
+[<Cave: 1623-205>]
+> > > - Begin found for: 205
+> > > > - MEM:44.58203125 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+[<Cave: 1623-205>]
+[<Cave: 1623-205>]
+> > > - Begin found for: 1
+> > > > - MEM:44.59765625 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+[<Cave: 1623-205>]
+> > > LEGS: 13 (previous: 2164, now:2177)
+> > - Include path found, including - caves-1623/206/206
+> > - Match in DB (i) for cave 1623-206.
+[<Cave: 1623-206>]
+> > > - MEM:44.62109375 Reading. parent:kataster/1623 <> caves-1623/206/206
+[<Cave: 1623-206>]
+> > > - Begin found for: 206
+> > > > - MEM:44.62890625 Reading. parent:caves-1623/206/206 <> caves-1623/206/206
+[<Cave: 1623-206>]
+> > > LEGS: 4 (previous: 2177, now:2181)
+> > - Include path found, including - caves-1623/207/207
+> > - Match in DB (i) for cave 1623-207.
+[<Cave: 1623-207>]
+> > > - MEM:44.640625 Reading. parent:kataster/1623 <> caves-1623/207/207
+[<Cave: 1623-207>]
+> > > - Begin found for: 207
+> > > > - MEM:44.6484375 Reading. parent:caves-1623/207/207 <> caves-1623/207/207
+[<Cave: 1623-207>]
+> > > LEGS: 3 (previous: 2181, now:2184)
+> > - Include path found, including - caves-1623/208/208
+> > - Match in DB (i) for cave 1623-208.
+[<Cave: 1623-208>]
+> > > - MEM:44.6953125 Reading. parent:kataster/1623 <> caves-1623/208/208
+[<Cave: 1623-208>]
+> > > - Begin found for: 208
+> > > > - MEM:44.69921875 Reading. parent:caves-1623/208/208 <> caves-1623/208/208
+[<Cave: 1623-208>]
+> > > LEGS: 3 (previous: 2184, now:2187)
+> > - Include path found, including - caves-1623/209/209
+> > - Match in DB (i) for cave 1623-209.
+[<Cave: 1623-209>]
+> > > - MEM:44.7109375 Reading. parent:kataster/1623 <> caves-1623/209/209
+[<Cave: 1623-209>]
+> > > - Begin found for: 209
+> > > > - MEM:44.71875 Reading. parent:caves-1623/209/209 <> caves-1623/209/209
+[<Cave: 1623-209>]
+> > > LEGS: 1 (previous: 2187, now:2188)
+> > - Include path found, including - caves-1623/215/215
+> > - Match in DB (i) for cave 1623-215.
+[<Cave: 1623-215>]
+> > > - MEM:44.734375 Reading. parent:kataster/1623 <> caves-1623/215/215
+[<Cave: 1623-215>]
+> > > - Begin found for: 215
+> > > > - MEM:44.7421875 Reading. parent:caves-1623/215/215 <> caves-1623/215/215
+[<Cave: 1623-215>]
+> > > LEGS: 5 (previous: 2188, now:2193)
+> > - Include path found, including - caves-1623/220/220
+> > - Match in DB (i) for cave 1623-220.
+[<Cave: 1623-220>]
+> > > - MEM:44.75 Reading. parent:kataster/1623 <> caves-1623/220/220
+[<Cave: 1623-220>]
+> > > - Begin found for: 220
+> > > > - MEM:44.7578125 Reading. parent:caves-1623/220/220 <> caves-1623/220/220
+[<Cave: 1623-220>]
+> > > LEGS: 1 (previous: 2193, now:2194)
+> > - Include path found, including - caves-1623/225/225
+> > - Match in DB (i) for cave 1623-225.
+[<Cave: 1623-225>]
+> > > - MEM:44.765625 Reading. parent:kataster/1623 <> caves-1623/225/225
+[<Cave: 1623-225>]
+> > > - Begin found for: 225
+> > > > - MEM:44.76953125 Reading. parent:caves-1623/225/225 <> caves-1623/225/225
+[<Cave: 1623-225>]
+> > > LEGS: 1 (previous: 2194, now:2195)
+> > - Include path found, including - caves-1623/228/228
+> > - Match in DB (i) for cave 1623-228.
+[<Cave: 1623-228>]
+> > > - MEM:44.78515625 Reading. parent:kataster/1623 <> caves-1623/228/228
+[<Cave: 1623-228>]
+> > > - Begin found for: 228
+> > > > - MEM:44.79296875 Reading. parent:caves-1623/228/228 <> caves-1623/228/228
+[<Cave: 1623-228>]
+> > > LEGS: 5 (previous: 2195, now:2200)
+> > - Include path found, including - caves-1623/229/229
+> > - Match in DB (i) for cave 1623-229.
+[<Cave: 1623-229>]
+> > > - MEM:44.80859375 Reading. parent:kataster/1623 <> caves-1623/229/229
+[<Cave: 1623-229>]
+> > > - Begin found for: 229
+> > > > - MEM:44.81640625 Reading. parent:caves-1623/229/229 <> caves-1623/229/229
+[<Cave: 1623-229>]
+> > > LEGS: 7 (previous: 2200, now:2207)
+> > - Include path found, including - caves-1623/231/231
+> > - Match in DB (i) for cave 1623-231.
+[<Cave: 1623-231>]
+> > > - MEM:44.83203125 Reading. parent:kataster/1623 <> caves-1623/231/231
+[<Cave: 1623-231>]
+> > > - Begin found for: 231
+> > > > - MEM:44.86328125 Reading. parent:caves-1623/231/231 <> caves-1623/231/231
+[<Cave: 1623-231>]
+> > > - Include path found, including - caves-1623/231/traun
+> > > - Match in DB (i) for cave 1623-231.
+[<Cave: 1623-231>]
+> > > > - MEM:44.8828125 Reading. parent:caves-1623/231/231 <> caves-1623/231/traun
+[<Cave: 1623-231>]
+[<Cave: 1623-231>]
+> > > > - Begin found for: traun
+> > > > > - MEM:44.921875 Reading. parent:caves-1623/231/traun <> caves-1623/231/traun
+[<Cave: 1623-231>]
+> > > > LEGS: 21 (previous: 2207, now:2228)
+> > > LEGS: 21 (previous: 2207, now:2228)
+> > - Include path found, including - caves-1623/232/232
+> > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > - MEM:44.94140625 Reading. parent:kataster/1623 <> caves-1623/232/232
+[<Cave: 1623-232>]
+> > > - Begin found for: 232
+> > > > - MEM:44.9453125 Reading. parent:caves-1623/232/232 <> caves-1623/232/232
+[<Cave: 1623-232>]
+> > > - Include path found, including - caves-1623/232/griess
+> > > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > > - MEM:44.953125 Reading. parent:caves-1623/232/232 <> caves-1623/232/griess
+[<Cave: 1623-232>]
+[<Cave: 1623-232>]
+> > > > - Begin found for: griess
+> > > > > - MEM:44.96484375 Reading. parent:caves-1623/232/griess <> caves-1623/232/griess
+[<Cave: 1623-232>]
+> > > > LEGS: 48 (previous: 2228, now:2276)
+> > > - Include path found, including - caves-1623/232/pille
+> > > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > > - MEM:44.9921875 Reading. parent:caves-1623/232/232 <> caves-1623/232/pille
+[<Cave: 1623-232>]
+[<Cave: 1623-232>]
+> > > > - Begin found for: pille
+> > > > > - MEM:44.9921875 Reading. parent:caves-1623/232/pille <> caves-1623/232/pille
+[<Cave: 1623-232>]
+> > > > LEGS: 35 (previous: 2276, now:2311)
+> > > LEGS: 83 (previous: 2228, now:2311)
+> > - Include path found, including - caves-1623/233/233
+> > - Match in DB (i) for cave 1623-233.
+[<Cave: 1623-233>]
+> > > - MEM:45.0 Reading. parent:kataster/1623 <> caves-1623/233/233
+[<Cave: 1623-233>]
+> > > - Begin found for: 233
+> > > > - MEM:45.01171875 Reading. parent:caves-1623/233/233 <> caves-1623/233/233
+[<Cave: 1623-233>]
+> > > LEGS: 11 (previous: 2311, now:2322)
+> > - Include path found, including - caves-1623/234/234
+> > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > - MEM:45.02734375 Reading. parent:kataster/1623 <> caves-1623/234/234
+[<Cave: 1623-234>]
+> > > - Begin found for: 234
+> > > > - MEM:45.03125 Reading. parent:caves-1623/234/234 <> caves-1623/234/234
+[<Cave: 1623-234>]
+> > > - Include path found, including - caves-1623/234/lefthand
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.05078125 Reading. parent:caves-1623/234/234 <> caves-1623/234/lefthand
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: lefthand
+> > > > > - MEM:45.07421875 Reading. parent:caves-1623/234/lefthand <> caves-1623/234/lefthand
+[<Cave: 1623-234>]
+> > > > LEGS: 17 (previous: 2322, now:2339)
+> > > - Include path found, including - caves-1623/234/trunk
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.16796875 Reading. parent:caves-1623/234/234 <> caves-1623/234/trunk
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: trunk
+> > > > > - MEM:45.17578125 Reading. parent:caves-1623/234/trunk <> caves-1623/234/trunk
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2339, now:2349)
+> > > - Include path found, including - caves-1623/234/flatulence
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.19140625 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: flatulence
+> > > > > - MEM:45.21484375 Reading. parent:caves-1623/234/flatulence <> caves-1623/234/flatulence
+[<Cave: 1623-234>]
+> > > > LEGS: 58 (previous: 2349, now:2407)
+> > > - Include path found, including - caves-1623/234/flatulence2
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.23828125 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence2
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: flatulence2
+> > > > > - MEM:45.25 Reading. parent:caves-1623/234/flatulence2 <> caves-1623/234/flatulence2
+[<Cave: 1623-234>]
+> > > > LEGS: 27 (previous: 2407, now:2434)
+> > > - Include path found, including - caves-1623/234/sourtaste
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.26953125 Reading. parent:caves-1623/234/234 <> caves-1623/234/sourtaste
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: sourtaste
+> > > > > - MEM:45.28125 Reading. parent:caves-1623/234/sourtaste <> caves-1623/234/sourtaste
+[<Cave: 1623-234>]
+> > > > LEGS: 8 (previous: 2434, now:2442)
+> > > - Include path found, including - caves-1623/234/pie
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.32421875 Reading. parent:caves-1623/234/234 <> caves-1623/234/pie
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: pie
+> > > > > - MEM:45.328125 Reading. parent:caves-1623/234/pie <> caves-1623/234/pie
+[<Cave: 1623-234>]
+> > > > LEGS: 13 (previous: 2442, now:2455)
+> > > - Include path found, including - caves-1623/234/underhand
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.34375 Reading. parent:caves-1623/234/234 <> caves-1623/234/underhand
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: underhand
+> > > > > - MEM:45.34375 Reading. parent:caves-1623/234/underhand <> caves-1623/234/underhand
+[<Cave: 1623-234>]
+> > > > LEGS: 7 (previous: 2455, now:2462)
+> > > - Include path found, including - caves-1623/234/flashgun
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.3671875 Reading. parent:caves-1623/234/234 <> caves-1623/234/flashgun
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: flashgun
+> > > > > - MEM:45.37109375 Reading. parent:caves-1623/234/flashgun <> caves-1623/234/flashgun
+[<Cave: 1623-234>]
+> > > > LEGS: 4 (previous: 2462, now:2466)
+> > > - Include path found, including - caves-1623/234/piersquared
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.38671875 Reading. parent:caves-1623/234/234 <> caves-1623/234/piersquared
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: piersquared
+> > > > > - MEM:45.40234375 Reading. parent:caves-1623/234/piersquared <> caves-1623/234/piersquared
+[<Cave: 1623-234>]
+> > > > LEGS: 37 (previous: 2466, now:2503)
+> > > - Include path found, including - caves-1623/234/weeweeland
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.421875 Reading. parent:caves-1623/234/234 <> caves-1623/234/weeweeland
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: weeweeland
+> > > > > - MEM:45.4296875 Reading. parent:caves-1623/234/weeweeland <> caves-1623/234/weeweeland
+[<Cave: 1623-234>]
+> > > > LEGS: 12 (previous: 2503, now:2515)
+> > > - Include path found, including - caves-1623/234/wowoland
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.44921875 Reading. parent:caves-1623/234/234 <> caves-1623/234/wowoland
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: wowoland
+> > > > > - MEM:45.4609375 Reading. parent:caves-1623/234/wowoland <> caves-1623/234/wowoland
+[<Cave: 1623-234>]
+> > > > LEGS: 7 (previous: 2515, now:2522)
+> > > - Include path found, including - caves-1623/234/monster
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.4765625 Reading. parent:caves-1623/234/234 <> caves-1623/234/monster
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: monster
+> > > > > - MEM:45.48828125 Reading. parent:caves-1623/234/monster <> caves-1623/234/monster
+[<Cave: 1623-234>]
+> > > > LEGS: 5 (previous: 2522, now:2527)
+> > > - Include path found, including - caves-1623/234/spitswallow
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.5078125 Reading. parent:caves-1623/234/234 <> caves-1623/234/spitswallow
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: spitswallow
+> > > > > - MEM:45.5234375 Reading. parent:caves-1623/234/spitswallow <> caves-1623/234/spitswallow
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2527, now:2537)
+> > > - Include path found, including - caves-1623/234/monstermunch
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.5390625 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: monstermunch
+> > > > > - MEM:45.54296875 Reading. parent:caves-1623/234/monstermunch <> caves-1623/234/monstermunch
+[<Cave: 1623-234>]
+> > > > LEGS: 11 (previous: 2537, now:2548)
+> > > - Include path found, including - caves-1623/234/qm05-05c
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.56640625 Reading. parent:caves-1623/234/234 <> caves-1623/234/qm05-05c
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: qm05-05c
+> > > > > - MEM:45.58203125 Reading. parent:caves-1623/234/qm05-05c <> caves-1623/234/qm05-05c
+[<Cave: 1623-234>]
+> > > > LEGS: 2 (previous: 2548, now:2550)
+> > > - Include path found, including - caves-1623/234/rubella
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.6015625 Reading. parent:caves-1623/234/234 <> caves-1623/234/rubella
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: rubella
+> > > > > - MEM:45.61328125 Reading. parent:caves-1623/234/rubella <> caves-1623/234/rubella
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2550, now:2560)
+> > > - Include path found, including - caves-1623/234/monstermunch2
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.71875 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch2
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: monstermunch2
+> > > > > - MEM:45.72265625 Reading. parent:caves-1623/234/monstermunch2 <> caves-1623/234/monstermunch2
+[<Cave: 1623-234>]
+> > > > LEGS: 5 (previous: 2560, now:2565)
+> > > - Include path found, including - caves-1623/234/limopit
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.73828125 Reading. parent:caves-1623/234/234 <> caves-1623/234/limopit
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: limopit
+> > > > > - MEM:45.75390625 Reading. parent:caves-1623/234/limopit <> caves-1623/234/limopit
+[<Cave: 1623-234>]
+> > > > LEGS: 6 (previous: 2565, now:2571)
+> > > - Include path found, including - caves-1623/234/passage
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.7734375 Reading. parent:caves-1623/234/234 <> caves-1623/234/passage
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: passage
+> > > > > - MEM:45.7890625 Reading. parent:caves-1623/234/passage <> caves-1623/234/passage
+[<Cave: 1623-234>]
+> > > > LEGS: 13 (previous: 2571, now:2584)
+> > > - Include path found, including - caves-1623/234/lastchancesaloon
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.80859375 Reading. parent:caves-1623/234/234 <> caves-1623/234/lastchancesaloon
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: lastchancesaloon
+> > > > > - MEM:45.82421875 Reading. parent:caves-1623/234/lastchancesaloon <> caves-1623/234/lastchancesaloon
+[<Cave: 1623-234>]
+> > > > LEGS: 29 (previous: 2584, now:2613)
+> > > - Include path found, including - caves-1623/234/slapperpinkpot
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.84375 Reading. parent:caves-1623/234/234 <> caves-1623/234/slapperpinkpot
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: slapperpinkpot
+> > > > > - MEM:45.84375 Reading. parent:caves-1623/234/slapperpinkpot <> caves-1623/234/slapperpinkpot
+[<Cave: 1623-234>]
+> > > > LEGS: 11 (previous: 2613, now:2624)
+> > > - Include path found, including - caves-1623/234/youshouldhaveneverletmebegin
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:46.01171875 Reading. parent:caves-1623/234/234 <> caves-1623/234/youshouldhaveneverletmebegin
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: youshouldhaveneverletmebegin
+> > > > > - MEM:46.015625 Reading. parent:caves-1623/234/youshouldhaveneverletmebegin <> caves-1623/234/youshouldhaveneverletmebegin
+[<Cave: 1623-234>]
+> > > > LEGS: 14 (previous: 2624, now:2638)
+> > > - Include path found, including - caves-1623/234/mercurialsuppository
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:46.0390625 Reading. parent:caves-1623/234/234 <> caves-1623/234/mercurialsuppository
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for: mercurialsuppository
+> > > > > - MEM:46.07421875 Reading. parent:caves-1623/234/mercurialsuppository <> caves-1623/234/mercurialsuppository
+[<Cave: 1623-234>]
+> > > > LEGS: 9 (previous: 2638, now:2647)
+> > > LEGS: 325 (previous: 2322, now:2647)
+> > - Include path found, including - caves-1623/238/238
+> > - Match in DB (i) for cave 1623-238.
+[<Cave: 1623-238>]
+> > > - MEM:46.08203125 Reading. parent:kataster/1623 <> caves-1623/238/238
+[<Cave: 1623-238>]
+> > > - Begin found for: 238
+> > > > - MEM:46.0859375 Reading. parent:caves-1623/238/238 <> caves-1623/238/238
+[<Cave: 1623-238>]
+> > > LEGS: 11 (previous: 2647, now:2658)
+> > - Include path found, including - caves-1623/239/239
+> > - Match in DB (i) for cave 1623-239.
+[<Cave: 1623-239>]
+> > > - MEM:46.09765625 Reading. parent:kataster/1623 <> caves-1623/239/239
+[<Cave: 1623-239>]
+> > > - Begin found for: 239
+> > > > - MEM:46.125 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+[<Cave: 1623-239>]
+[<Cave: 1623-239>]
+> > > - Begin found for: rocknroll1
+> > > > - MEM:46.13671875 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+[<Cave: 1623-239>]
+> > > LEGS: 32 (previous: 2658, now:2690)
+> > - Include path found, including - caves-1623/240/240
+> > - Match in DB (i) for cave 1623-240.
+[<Cave: 1623-240>]
+> > > - MEM:46.21875 Reading. parent:kataster/1623 <> caves-1623/240/240
+[<Cave: 1623-240>]
+> > > - Begin found for: 240
+> > > > - MEM:46.21875 Reading. parent:caves-1623/240/240 <> caves-1623/240/240
+[<Cave: 1623-240>]
+> > > LEGS: 7 (previous: 2690, now:2697)
+> > - Include path found, including - caves-1623/241/241
+> > - Match in DB (i) for cave 1623-241.
+[<Cave: 1623-241>]
+> > > - MEM:46.22265625 Reading. parent:kataster/1623 <> caves-1623/241/241
+[<Cave: 1623-241>]
+> > > - Begin found for: 241
+> > > > - MEM:46.23046875 Reading. parent:caves-1623/241/241 <> caves-1623/241/241
+[<Cave: 1623-241>]
+> > > LEGS: 8 (previous: 2697, now:2705)
+> > - Include path found, including - caves-1623/242/242
+> > - Match in DB (i) for cave 1623-242.
+[<Cave: 1623-242>]
+> > > - MEM:46.25390625 Reading. parent:kataster/1623 <> caves-1623/242/242
+[<Cave: 1623-242>]
+> > > - Begin found for: 242
+> > > > - MEM:46.2578125 Reading. parent:caves-1623/242/242 <> caves-1623/242/242
+[<Cave: 1623-242>]
+> > > LEGS: 6 (previous: 2705, now:2711)
+> > - Include path found, including - caves-1623/243/243
+> > - Match in DB (i) for cave 1623-243.
+[<Cave: 1623-243>]
+> > > - MEM:46.27734375 Reading. parent:kataster/1623 <> caves-1623/243/243
+[<Cave: 1623-243>]
+> > > - Begin found for: 243
+> > > > - MEM:46.29296875 Reading. parent:caves-1623/243/243 <> caves-1623/243/243
+[<Cave: 1623-243>]
+> > > LEGS: 14 (previous: 2711, now:2725)
+> > - Include path found, including - caves-1623/244/244
+> > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > - MEM:46.32421875 Reading. parent:kataster/1623 <> caves-1623/244/244
+[<Cave: 1623-244>]
+> > > - Begin found for: 244
+> > > > - MEM:46.33984375 Reading. parent:caves-1623/244/244 <> caves-1623/244/244
+[<Cave: 1623-244>]
+> > > - Include path found, including - caves-1623/244/skinny
+> > > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > > - MEM:46.3515625 Reading. parent:caves-1623/244/244 <> caves-1623/244/skinny
+[<Cave: 1623-244>]
+[<Cave: 1623-244>]
+> > > > - Begin found for: skinny
+> > > > > - MEM:46.38671875 Reading. parent:caves-1623/244/skinny <> caves-1623/244/skinny
+[<Cave: 1623-244>]
+> > > > LEGS: 25 (previous: 2725, now:2750)
+> > > - Include path found, including - caves-1623/244/gravity
+> > > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > > - MEM:46.3984375 Reading. parent:caves-1623/244/244 <> caves-1623/244/gravity
+[<Cave: 1623-244>]
+[<Cave: 1623-244>]
+> > > > - Begin found for: gravity
+> > > > > - MEM:46.40625 Reading. parent:caves-1623/244/gravity <> caves-1623/244/gravity
+[<Cave: 1623-244>]
+> > > > LEGS: 7 (previous: 2750, now:2757)
+> > > LEGS: 32 (previous: 2725, now:2757)
+> > - Include path found, including - caves-1623/245/245
+> > - Match in DB (i) for cave 1623-245.
+[<Cave: 1623-245>]
+> > > - MEM:46.42578125 Reading. parent:kataster/1623 <> caves-1623/245/245
+[<Cave: 1623-245>]
+> > > - Begin found for: 245
+> > > > - MEM:46.4375 Reading. parent:caves-1623/245/245 <> caves-1623/245/245
+[<Cave: 1623-245>]
+> > > LEGS: 24 (previous: 2757, now:2781)
+> > - Include path found, including - caves-1623/246/246
+> > - Match in DB (i) for cave 1623-246.
+[<Cave: 1623-246>]
+> > > - MEM:46.453125 Reading. parent:kataster/1623 <> caves-1623/246/246
+[<Cave: 1623-246>]
+> > > - Begin found for: 246
+> > > > - MEM:46.4609375 Reading. parent:caves-1623/246/246 <> caves-1623/246/246
+[<Cave: 1623-246>]
+> > > LEGS: 7 (previous: 2781, now:2788)
+> > - Include path found, including - caves-1623/247/247
+> > - Match in DB (i) for cave 1623-247.
+[<Cave: 1623-247>]
+> > > - MEM:46.47265625 Reading. parent:kataster/1623 <> caves-1623/247/247
+[<Cave: 1623-247>]
+> > > - Begin found for: 247
+> > > > - MEM:46.484375 Reading. parent:caves-1623/247/247 <> caves-1623/247/247
+[<Cave: 1623-247>]
+> > > LEGS: 2 (previous: 2788, now:2790)
+> > - Include path found, including - caves-1623/248/248
+> > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > - MEM:46.48828125 Reading. parent:kataster/1623 <> caves-1623/248/248
+[<Cave: 1623-248>]
+> > > - Begin found for: 248
+> > > > - MEM:46.50390625 Reading. parent:caves-1623/248/248 <> caves-1623/248/248
+[<Cave: 1623-248>]
+> > > - Include path found, including - caves-1623/248/248-1
+> > > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > > - MEM:46.51953125 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-1
+[<Cave: 1623-248>]
+[<Cave: 1623-248>]
+> > > > - Begin found for: 248-1
+> > > > > - MEM:46.53125 Reading. parent:caves-1623/248/248-1 <> caves-1623/248/248-1
+[<Cave: 1623-248>]
+> > > > LEGS: 7 (previous: 2790, now:2797)
+> > > - Include path found, including - caves-1623/248/248-2
+> > > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > > - MEM:46.546875 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-2
+[<Cave: 1623-248>]
+[<Cave: 1623-248>]
+> > > > - Begin found for: 248-2
+> > > > > - MEM:46.55859375 Reading. parent:caves-1623/248/248-2 <> caves-1623/248/248-2
+[<Cave: 1623-248>]
+> > > > LEGS: 6 (previous: 2797, now:2803)
+> > > LEGS: 13 (previous: 2790, now:2803)
+> > - Include path found, including - caves-1623/249/249
+> > - Match in DB (i) for cave 1623-249.
+[<Cave: 1623-249>]
+> > > - MEM:46.578125 Reading. parent:kataster/1623 <> caves-1623/249/249
+[<Cave: 1623-249>]
+> > > - Begin found for: 249
+> > > > - MEM:46.58203125 Reading. parent:caves-1623/249/249 <> caves-1623/249/249
+[<Cave: 1623-249>]
+> > > LEGS: 7 (previous: 2803, now:2810)
+> > - Include path found, including - caves-1623/250/250
+> > - Match in DB (i) for cave 1623-250.
+[<Cave: 1623-250>]
+> > > - MEM:46.59765625 Reading. parent:kataster/1623 <> caves-1623/250/250
+[<Cave: 1623-250>]
+> > > - Begin found for: 250
+> > > > - MEM:46.60546875 Reading. parent:caves-1623/250/250 <> caves-1623/250/250
+[<Cave: 1623-250>]
+> > > LEGS: 1 (previous: 2810, now:2811)
+> > - Include path found, including - caves-1623/251/251
+> > - Match in DB (i) for cave 1623-251.
+[<Cave: 1623-251>]
+> > > - MEM:46.63671875 Reading. parent:kataster/1623 <> caves-1623/251/251
+[<Cave: 1623-251>]
+> > > - Begin found for: 251
+> > > > - MEM:46.65234375 Reading. parent:caves-1623/251/251 <> caves-1623/251/251
+[<Cave: 1623-251>]
+> > > LEGS: 22 (previous: 2811, now:2833)
+> > - Include path found, including - caves-1623/252/252
+> > - Match in DB (i) for cave 1623-252.
+[<Cave: 1623-252>]
+> > > - MEM:46.66796875 Reading. parent:kataster/1623 <> caves-1623/252/252
+[<Cave: 1623-252>]
+> > > - Begin found for: 252
+> > > > - MEM:46.6796875 Reading. parent:caves-1623/252/252 <> caves-1623/252/252
+[<Cave: 1623-252>]
+> > > LEGS: 30 (previous: 2833, now:2863)
+> > - Include path found, including - caves-1623/254/254
+> > - Match in DB (i) for cave 1623-254.
+[<Cave: 1623-254>]
+> > > - MEM:46.72265625 Reading. parent:kataster/1623 <> caves-1623/254/254
+[<Cave: 1623-254>]
+> > > - Begin found for: 254
+> > > > - MEM:46.734375 Reading. parent:caves-1623/254/254 <> caves-1623/254/254
+[<Cave: 1623-254>]
+> > > LEGS: 19 (previous: 2863, now:2882)
+> > - Include path found, including - caves-1623/261/261
+> > - Match in DB (i) for cave 1623-261.
+[<Cave: 1623-261>]
+> > > - MEM:46.75390625 Reading. parent:kataster/1623 <> caves-1623/261/261
+[<Cave: 1623-261>]
+> > > - Begin found for: 261
+> > > > - MEM:46.765625 Reading. parent:caves-1623/261/261 <> caves-1623/261/261
+[<Cave: 1623-261>]
+> > > LEGS: 6 (previous: 2882, now:2888)
+> > - Include path found, including - caves-1623/262/262
+> > - Match in DB (i) for cave 1623-262.
+[<Cave: 1623-262>]
+> > > - MEM:46.7734375 Reading. parent:kataster/1623 <> caves-1623/262/262
+[<Cave: 1623-262>]
+> > > - Begin found for: 262
+> > > > - MEM:46.78515625 Reading. parent:caves-1623/262/262 <> caves-1623/262/262
+[<Cave: 1623-262>]
+> > > LEGS: 7 (previous: 2888, now:2895)
+> > - Include path found, including - caves-1623/263/263
+> > - Match in DB (i) for cave 1623-263.
+[<Cave: 1623-263>]
+> > > - MEM:46.80078125 Reading. parent:kataster/1623 <> caves-1623/263/263
+[<Cave: 1623-263>]
+> > > - Begin found for: 263
+> > > > - MEM:46.80859375 Reading. parent:caves-1623/263/263 <> caves-1623/263/263
+[<Cave: 1623-263>]
+> > > LEGS: 2 (previous: 2895, now:2897)
+> > - Include path found, including - caves-1623/267/267
+> > - Match in DB (i) for cave 1623-267.
+[<Cave: 1623-267>]
+> > > - MEM:46.8515625 Reading. parent:kataster/1623 <> caves-1623/267/267
+[<Cave: 1623-267>]
+> > > - Begin found for: 267
+> > > > - MEM:46.859375 Reading. parent:caves-1623/267/267 <> caves-1623/267/267
+[<Cave: 1623-267>]
+> > > LEGS: 34 (previous: 2897, now:2931)
+> > - Include path found, including - caves-1623/271/271
+> > - Match in DB (i) for cave 1623-271.
+[<Cave: 1623-271>]
+> > > - MEM:46.859375 Reading. parent:kataster/1623 <> caves-1623/271/271
+[<Cave: 1623-271>]
+> > > - Begin found for: 271
+> > > > - MEM:46.8671875 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+[<Cave: 1623-271>]
+[<Cave: 1623-271>]
+> > > - Begin found for: 1
+> > > > - MEM:46.87890625 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+[<Cave: 1623-271>]
+> > > LEGS: 11 (previous: 2931, now:2942)
+> > - Include path found, including - caves-1623/273/273
+> > - Match in DB (i) for cave 1623-273.
+[<Cave: 1623-273>]
+> > > - MEM:46.890625 Reading. parent:kataster/1623 <> caves-1623/273/273
+[<Cave: 1623-273>]
+> > > - Begin found for: 273
+> > > > - MEM:46.8984375 Reading. parent:caves-1623/273/273 <> caves-1623/273/273
+[<Cave: 1623-273>]
+> > > LEGS: 5 (previous: 2942, now:2947)
+> > - Include path found, including - caves-1623/B4/B4
+> > - NO Match in DB (i) for a cave for caves-1623/B4/B4
+> > > - MEM:47.02734375 Reading. parent:kataster/1623 <> caves-1623/B4/B4
+> > > - No match (b) for caves-1623/B4/b4
+> > > - Begin found for: b4
+> > > > - MEM:47.03125 Reading. parent:caves-1623/B4/B4 <> caves-1623/B4/B4
+> > > ! Wallet *REF 2006#36 - NOT found in survexscansfolders caves-1623/B4/B4
+> > > LEGS: 2 (previous: 2947, now:2949)
+> > - Include path found, including - caves-1623/96wk11/96wk11
+> > - NO Match in DB (i) for a cave for caves-1623/96wk11/96wk11
+> > > - MEM:47.04296875 Reading. parent:kataster/1623 <> caves-1623/96wk11/96wk11
+> > > - No match (b) for caves-1623/96wk11/wk11
+> > > - Begin found for: wk11
+> > > > - MEM:47.046875 Reading. parent:caves-1623/96wk11/96wk11 <> caves-1623/96wk11/96wk11
+> > > LEGS: 7 (previous: 2949, now:2956)
+> > - Include path found, including - caves-1623/99ob02/99ob02
+> > - NO Match in DB (i) for a cave for caves-1623/99ob02/99ob02
+> > > - MEM:47.07421875 Reading. parent:kataster/1623 <> caves-1623/99ob02/99ob02
+> > > - No match (b) for caves-1623/99ob02/99ob02
+> > > - Begin found for: 99ob02
+> > > > - MEM:47.078125 Reading. parent:caves-1623/99ob02/99ob02 <> caves-1623/99ob02/99ob02
+> > > LEGS: 3 (previous: 2956, now:2959)
+> > - Include path found, including - caves-1623/2001-02/2001-02
+> > - NO Match in DB (i) for a cave for caves-1623/2001-02/2001-02
+> > > - MEM:47.0859375 Reading. parent:kataster/1623 <> caves-1623/2001-02/2001-02
+> > > - No match (b) for caves-1623/2001-02/2001-02
+> > > - Begin found for: 2001-02
+> > > > - MEM:47.08984375 Reading. parent:caves-1623/2001-02/2001-02 <> caves-1623/2001-02/2001-02
+> > > LEGS: 6 (previous: 2959, now:2965)
+> > - Include path found, including - caves-1623/2001-03/2001-03
+> > - NO Match in DB (i) for a cave for caves-1623/2001-03/2001-03
+> > > - MEM:47.22265625 Reading. parent:kataster/1623 <> caves-1623/2001-03/2001-03
+> > > - No match (b) for caves-1623/2001-03/2001-03
+> > > - Begin found for: 2001-03
+> > > > - MEM:47.22265625 Reading. parent:caves-1623/2001-03/2001-03 <> caves-1623/2001-03/2001-03
+> > > LEGS: 7 (previous: 2965, now:2972)
+> > - Include path found, including - caves-1623/2002-ad-03/2002-ad-03
+> > - Match in DB (i) for cave 1623-2002-ad-03.
+[]
+> > > - MEM:47.23046875 Reading. parent:kataster/1623 <> caves-1623/2002-ad-03/2002-ad-03
+[]
+> > > - Begin found for: 2002-ad-03
+> > > > - MEM:47.25 Reading. parent:caves-1623/2002-ad-03/2002-ad-03 <> caves-1623/2002-ad-03/2002-ad-03
+[]
+> > > LEGS: 16 (previous: 2972, now:2988)
+> > - Include path found, including - caves-1623/2002-ad-04/2002-ad-04
+> > - Match in DB (i) for cave 1623-2002-ad-04.
+[]
+> > > - MEM:47.2734375 Reading. parent:kataster/1623 <> caves-1623/2002-ad-04/2002-ad-04
+[]
+> > > - Begin found for: 2002-ad-04
+> > > > - MEM:47.28125 Reading. parent:caves-1623/2002-ad-04/2002-ad-04 <> caves-1623/2002-ad-04/2002-ad-04
+[]
+> > > LEGS: 15 (previous: 2988, now:3003)
+> > - Include path found, including - caves-1623/2002-w-02/2002-w-02
+> > - Match in DB (i) for cave 1623-2002-w-02.
+[]
+> > > - MEM:47.2890625 Reading. parent:kataster/1623 <> caves-1623/2002-w-02/2002-w-02
+[]
+> > > - Begin found for: 2002-w-02
+> > > > - MEM:47.296875 Reading. parent:caves-1623/2002-w-02/2002-w-02 <> caves-1623/2002-w-02/2002-w-02
+[]
+> > > LEGS: 6 (previous: 3003, now:3009)
+> > - Include path found, including - caves-1623/2002-05/2002-05
+> > - NO Match in DB (i) for a cave for caves-1623/2002-05/2002-05
+> > > - MEM:47.30859375 Reading. parent:kataster/1623 <> caves-1623/2002-05/2002-05
+> > > - No match (b) for caves-1623/2002-05/2002-05
+> > > - Begin found for: 2002-05
+> > > > - MEM:47.31640625 Reading. parent:caves-1623/2002-05/2002-05 <> caves-1623/2002-05/2002-05
+> > > LEGS: 4 (previous: 3009, now:3013)
+> > - Include path found, including - caves-1623/2002-06/2002-06
+> > - NO Match in DB (i) for a cave for caves-1623/2002-06/2002-06
+> > > - MEM:47.3359375 Reading. parent:kataster/1623 <> caves-1623/2002-06/2002-06
+> > > - No match (b) for caves-1623/2002-06/2002-06
+> > > - Begin found for: 2002-06
+> > > > - MEM:47.33984375 Reading. parent:caves-1623/2002-06/2002-06 <> caves-1623/2002-06/2002-06
+> > > LEGS: 2 (previous: 3013, now:3015)
+> > - Include path found, including - caves-1623/2002-07/2002-07
+> > - NO Match in DB (i) for a cave for caves-1623/2002-07/2002-07
+> > > - MEM:47.3515625 Reading. parent:kataster/1623 <> caves-1623/2002-07/2002-07
+> > > - No match (b) for caves-1623/2002-07/2002-07
+> > > - Begin found for: 2002-07
+> > > > - MEM:47.359375 Reading. parent:caves-1623/2002-07/2002-07 <> caves-1623/2002-07/2002-07
+> > > LEGS: 3 (previous: 3015, now:3018)
+> > - Include path found, including - caves-1623/2002-08/2002-08
+> > - NO Match in DB (i) for a cave for caves-1623/2002-08/2002-08
+> > > - MEM:47.37109375 Reading. parent:kataster/1623 <> caves-1623/2002-08/2002-08
+> > > - No match (b) for caves-1623/2002-08/2002-08
+> > > - Begin found for: 2002-08
+> > > > - MEM:47.40234375 Reading. parent:caves-1623/2002-08/2002-08 <> caves-1623/2002-08/2002-08
+> > > LEGS: 7 (previous: 3018, now:3025)
+> > - Include path found, including - caves-1623/quarriesd/quarriesd
+> > - NO Match in DB (i) for a cave for caves-1623/quarriesd/quarriesd
+> > > - MEM:47.41796875 Reading. parent:kataster/1623 <> caves-1623/quarriesd/quarriesd
+> > > - No match (b) for caves-1623/quarriesd/quarriesd
+> > > - Begin found for: quarriesd
+> > > > - MEM:47.41796875 Reading. parent:caves-1623/quarriesd/quarriesd <> caves-1623/quarriesd/quarriesd
+> > > LEGS: 3 (previous: 3025, now:3028)
+> > - Include path found, including - caves-1623/2003-01/2003-01
+> > - NO Match in DB (i) for a cave for caves-1623/2003-01/2003-01
+> > > - MEM:47.42578125 Reading. parent:kataster/1623 <> caves-1623/2003-01/2003-01
+> > > - No match (b) for caves-1623/2003-01/2003-01
+> > > - Begin found for: 2003-01
+> > > > - MEM:47.4296875 Reading. parent:caves-1623/2003-01/2003-01 <> caves-1623/2003-01/2003-01
+> > > LEGS: 3 (previous: 3028, now:3031)
+> > - Include path found, including - caves-1623/2004-01/2004-01
+> > - NO Match in DB (i) for a cave for caves-1623/2004-01/2004-01
+> > > - MEM:47.44140625 Reading. parent:kataster/1623 <> caves-1623/2004-01/2004-01
+> > > - No match (b) for caves-1623/2004-01/2004-01
+> > > - Begin found for: 2004-01
+> > > > - MEM:47.4453125 Reading. parent:caves-1623/2004-01/2004-01 <> caves-1623/2004-01/2004-01
+> > > LEGS: 3 (previous: 3031, now:3034)
+> > - Include path found, including - caves-1623/2004-03/2004-03
+> > - NO Match in DB (i) for a cave for caves-1623/2004-03/2004-03
+> > > - MEM:47.453125 Reading. parent:kataster/1623 <> caves-1623/2004-03/2004-03
+> > > - No match (b) for caves-1623/2004-03/2004-03
+> > > - Begin found for: 2004-03
+> > > > - MEM:47.453125 Reading. parent:caves-1623/2004-03/2004-03 <> caves-1623/2004-03/2004-03
+> > > LEGS: 6 (previous: 3034, now:3040)
+> > - Include path found, including - caves-1623/2004-08/2004-08
+> > - NO Match in DB (i) for a cave for caves-1623/2004-08/2004-08
+> > > - MEM:47.46484375 Reading. parent:kataster/1623 <> caves-1623/2004-08/2004-08
+> > > - No match (b) for caves-1623/2004-08/2004-08
+> > > - Begin found for: 2004-08
+> > > > - MEM:47.47265625 Reading. parent:caves-1623/2004-08/2004-08 <> caves-1623/2004-08/2004-08
+> > > LEGS: 14 (previous: 3040, now:3054)
+> > - Include path found, including - caves-1623/2004-10/2004-10
+> > - NO Match in DB (i) for a cave for caves-1623/2004-10/2004-10
+> > > - MEM:47.48046875 Reading. parent:kataster/1623 <> caves-1623/2004-10/2004-10
+> > > - No match (b) for caves-1623/2004-10/2004-10
+> > > - Begin found for: 2004-10
+> > > > - MEM:47.48828125 Reading. parent:caves-1623/2004-10/2004-10 <> caves-1623/2004-10/2004-10
+> > > LEGS: 8 (previous: 3054, now:3062)
+> > - Include path found, including - caves-1623/2004-14/2004-14
+> > - NO Match in DB (i) for a cave for caves-1623/2004-14/2004-14
+> > > - MEM:47.5703125 Reading. parent:kataster/1623 <> caves-1623/2004-14/2004-14
+> > > - No match (b) for caves-1623/2004-14/2004-14
+> > > - Begin found for: 2004-14
+> > > > - MEM:47.5703125 Reading. parent:caves-1623/2004-14/2004-14 <> caves-1623/2004-14/2004-14
+> > > LEGS: 2 (previous: 3062, now:3064)
+> > - Include path found, including - caves-1623/2004-15/2004-15
+> > - NO Match in DB (i) for a cave for caves-1623/2004-15/2004-15
+> > > - MEM:47.58984375 Reading. parent:kataster/1623 <> caves-1623/2004-15/2004-15
+> > > - No match (b) for caves-1623/2004-15/2004-15
+> > > - Begin found for: 2004-15
+> > > > - MEM:47.6015625 Reading. parent:caves-1623/2004-15/2004-15 <> caves-1623/2004-15/2004-15
+> > > LEGS: 7 (previous: 3064, now:3071)
+> > - Include path found, including - caves-1623/2004-18/2004-18
+> > - NO Match in DB (i) for a cave for caves-1623/2004-18/2004-18
+> > > - MEM:47.609375 Reading. parent:kataster/1623 <> caves-1623/2004-18/2004-18
+> > > - No match (b) for caves-1623/2004-18/2004-18
+> > > - Begin found for: 2004-18
+> > > > - MEM:47.609375 Reading. parent:caves-1623/2004-18/2004-18 <> caves-1623/2004-18/2004-18
+> > > LEGS: 20 (previous: 3071, now:3091)
+> > - Include path found, including - caves-1623/2004-20/2004-20
+> > - NO Match in DB (i) for a cave for caves-1623/2004-20/2004-20
+> > > - MEM:47.7109375 Reading. parent:kataster/1623 <> caves-1623/2004-20/2004-20
+> > > - No match (b) for caves-1623/2004-20/2004-20
+> > > - Begin found for: 2004-20
+> > > > - MEM:47.7109375 Reading. parent:caves-1623/2004-20/2004-20 <> caves-1623/2004-20/2004-20
+> > > LEGS: 6 (previous: 3091, now:3097)
+> > - Include path found, including - caves-1623/2005-01/2005-01
+> > - NO Match in DB (i) for a cave for caves-1623/2005-01/2005-01
+> > > - MEM:47.72265625 Reading. parent:kataster/1623 <> caves-1623/2005-01/2005-01
+> > > - No match (b) for caves-1623/2005-01/2005-01
+> > > - Begin found for: 2005-01
+> > > > - MEM:47.72265625 Reading. parent:caves-1623/2005-01/2005-01 <> caves-1623/2005-01/2005-01
+> > > LEGS: 10 (previous: 3097, now:3107)
+> > - Include path found, including - caves-1623/2005-07/2005-07
+> > - NO Match in DB (i) for a cave for caves-1623/2005-07/2005-07
+> > > - MEM:47.72265625 Reading. parent:kataster/1623 <> caves-1623/2005-07/2005-07
+> > > - No match (b) for caves-1623/2005-07/2005-07
+> > > - Begin found for: 2005-07
+> > > > - MEM:47.72265625 Reading. parent:caves-1623/2005-07/2005-07 <> caves-1623/2005-07/2005-07
+> > > LEGS: 4 (previous: 3107, now:3111)
+> > - Include path found, including - caves-1623/2005-92/2005-92
+> > - NO Match in DB (i) for a cave for caves-1623/2005-92/2005-92
+> > > - MEM:47.72265625 Reading. parent:kataster/1623 <> caves-1623/2005-92/2005-92
+> > > - No match (b) for caves-1623/2005-92/2005-92
+> > > - Begin found for: 2005-92
+> > > > - MEM:47.7265625 Reading. parent:caves-1623/2005-92/2005-92 <> caves-1623/2005-92/2005-92
+> > > LEGS: 4 (previous: 3111, now:3115)
+> > - Include path found, including - caves-1623/2005-93/2005-93
+> > - NO Match in DB (i) for a cave for caves-1623/2005-93/2005-93
+> > > - MEM:47.7265625 Reading. parent:kataster/1623 <> caves-1623/2005-93/2005-93
+> > > - No match (b) for caves-1623/2005-93/2005-93
+> > > - Begin found for: 2005-93
+> > > > - MEM:47.7265625 Reading. parent:caves-1623/2005-93/2005-93 <> caves-1623/2005-93/2005-93
+> > > LEGS: 2 (previous: 3115, now:3117)
+> > - Include path found, including - caves-1623/2005-94/2005-94
+> > - NO Match in DB (i) for a cave for caves-1623/2005-94/2005-94
+> > > - MEM:47.734375 Reading. parent:kataster/1623 <> caves-1623/2005-94/2005-94
+> > > - No match (b) for caves-1623/2005-94/2005-94
+> > > - Begin found for: 2005-94
+> > > > - MEM:47.734375 Reading. parent:caves-1623/2005-94/2005-94 <> caves-1623/2005-94/2005-94
+> > > LEGS: 2 (previous: 3117, now:3119)
+> > - Include path found, including - caves-1623/2005-95/2005-95
+> > - NO Match in DB (i) for a cave for caves-1623/2005-95/2005-95
+> > > - MEM:47.734375 Reading. parent:kataster/1623 <> caves-1623/2005-95/2005-95
+> > > - No match (b) for caves-1623/2005-95/2005-95
+> > > - Begin found for: 2005-95
+> > > > - MEM:47.734375 Reading. parent:caves-1623/2005-95/2005-95 <> caves-1623/2005-95/2005-95
+> > > LEGS: 4 (previous: 3119, now:3123)
+> > - Include path found, including - caves-1623/2005-96/2005-96
+> > - NO Match in DB (i) for a cave for caves-1623/2005-96/2005-96
+> > > - MEM:47.73828125 Reading. parent:kataster/1623 <> caves-1623/2005-96/2005-96
+> > > - No match (b) for caves-1623/2005-96/2005-96
+> > > - Begin found for: 2005-96
+> > > > - MEM:47.73828125 Reading. parent:caves-1623/2005-96/2005-96 <> caves-1623/2005-96/2005-96
+> > > LEGS: 2 (previous: 3123, now:3125)
+> > - Include path found, including - caves-1623/2005-99/2005-99
+> > - NO Match in DB (i) for a cave for caves-1623/2005-99/2005-99
+> > > - MEM:47.765625 Reading. parent:kataster/1623 <> caves-1623/2005-99/2005-99
+> > > - No match (b) for caves-1623/2005-99/2005-99
+> > > - Begin found for: 2005-99
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2005-99/2005-99 <> caves-1623/2005-99/2005-99
+> > > LEGS: 5 (previous: 3125, now:3130)
+> > - Include path found, including - caves-1623/2006-08/2006-08
+> > - NO Match in DB (i) for a cave for caves-1623/2006-08/2006-08
+> > > - MEM:47.765625 Reading. parent:kataster/1623 <> caves-1623/2006-08/2006-08
+> > > - No match (b) for caves-1623/2006-08/2006-08
+> > > - Begin found for: 2006-08
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2006-08/2006-08 <> caves-1623/2006-08/2006-08
+> > > LEGS: 2 (previous: 3130, now:3132)
+> > - Include path found, including - caves-1623/2006-09/2006-09
+> > - NO Match in DB (i) for a cave for caves-1623/2006-09/2006-09
+> > > - MEM:47.765625 Reading. parent:kataster/1623 <> caves-1623/2006-09/2006-09
+> > > - No match (b) for caves-1623/2006-09/2006-09
+> > > - Begin found for: 2006-09
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2006-09/2006-09 <> caves-1623/2006-09/2006-09
+> > > LEGS: 2 (previous: 3132, now:3134)
+> > - Include path found, including - caves-1623/2006-70/2006-70
+> > - NO Match in DB (i) for a cave for caves-1623/2006-70/2006-70
+> > > - MEM:47.765625 Reading. parent:kataster/1623 <> caves-1623/2006-70/2006-70
+> > > - No match (b) for caves-1623/2006-70/2006-70
+> > > - Begin found for: 2006-70
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2006-70/2006-70 <> caves-1623/2006-70/2006-70
+> > > LEGS: 2 (previous: 3134, now:3136)
+> > - Include path found, including - caves-1623/2006-71/2006-71
+> > - NO Match in DB (i) for a cave for caves-1623/2006-71/2006-71
+> > > - MEM:47.765625 Reading. parent:kataster/1623 <> caves-1623/2006-71/2006-71
+> > > - No match (b) for caves-1623/2006-71/2006-71
+> > > - Begin found for: 2006-71
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2006-71/2006-71 <> caves-1623/2006-71/2006-71
+> > > LEGS: 1 (previous: 3136, now:3137)
+> > - Include path found, including - caves-1623/2006-72/2006-72
+> > - NO Match in DB (i) for a cave for caves-1623/2006-72/2006-72
+> > > - MEM:47.765625 Reading. parent:kataster/1623 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/2006-72
+> > > - Begin found for: 2006-72
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/pt1
+> > > - Begin found for: pt1
+> > > > - MEM:47.765625 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > LEGS: 2 (previous: 3137, now:3139)
+> > - Include path found, including - caves-1623/2006-73/2006-73
+> > - NO Match in DB (i) for a cave for caves-1623/2006-73/2006-73
+> > > - MEM:47.7734375 Reading. parent:kataster/1623 <> caves-1623/2006-73/2006-73
+> > > - No match (b) for caves-1623/2006-73/2006-73
+> > > - Begin found for: 2006-73
+> > > > - MEM:47.7734375 Reading. parent:caves-1623/2006-73/2006-73 <> caves-1623/2006-73/2006-73
+> > > LEGS: 10 (previous: 3139, now:3149)
+> > - Include path found, including - caves-1623/2007-04/2007-04
+> > - NO Match in DB (i) for a cave for caves-1623/2007-04/2007-04
+> > > - MEM:47.77734375 Reading. parent:kataster/1623 <> caves-1623/2007-04/2007-04
+> > > - No match (b) for caves-1623/2007-04/2007-04
+> > > - Begin found for: 2007-04
+> > > > - MEM:47.77734375 Reading. parent:caves-1623/2007-04/2007-04 <> caves-1623/2007-04/2007-04
+> > > LEGS: 13 (previous: 3149, now:3162)
+> > - Include path found, including - caves-1623/2007-05/2007-05
+> > - NO Match in DB (i) for a cave for caves-1623/2007-05/2007-05
+> > > - MEM:47.7890625 Reading. parent:kataster/1623 <> caves-1623/2007-05/2007-05
+> > > - No match (b) for caves-1623/2007-05/2007-05
+> > > - Begin found for: 2007-05
+> > > > - MEM:47.7890625 Reading. parent:caves-1623/2007-05/2007-05 <> caves-1623/2007-05/2007-05
+> > > LEGS: 3 (previous: 3162, now:3165)
+> > - Include path found, including - caves-1623/2007-06/2007-06
+> > - NO Match in DB (i) for a cave for caves-1623/2007-06/2007-06
+> > > - MEM:47.7890625 Reading. parent:kataster/1623 <> caves-1623/2007-06/2007-06
+> > > - No match (b) for caves-1623/2007-06/2007-06
+> > > - Begin found for: 2007-06
+> > > > - MEM:47.7890625 Reading. parent:caves-1623/2007-06/2007-06 <> caves-1623/2007-06/2007-06
+> > > LEGS: 1 (previous: 3165, now:3166)
+> > - Include path found, including - caves-1623/2007-07/2007-07
+> > - NO Match in DB (i) for a cave for caves-1623/2007-07/2007-07
+> > > - MEM:47.7890625 Reading. parent:kataster/1623 <> caves-1623/2007-07/2007-07
+> > > - No match (b) for caves-1623/2007-07/2007-07
+> > > - Begin found for: 2007-07
+> > > > - MEM:47.7890625 Reading. parent:caves-1623/2007-07/2007-07 <> caves-1623/2007-07/2007-07
+> > > LEGS: 2 (previous: 3166, now:3168)
+> > - Include path found, including - caves-1623/2007-12/2007-12
+> > - NO Match in DB (i) for a cave for caves-1623/2007-12/2007-12
+> > > - MEM:47.7890625 Reading. parent:kataster/1623 <> caves-1623/2007-12/2007-12
+> > > - No match (b) for caves-1623/2007-12/2007-12
+> > > - Begin found for: 2007-12
+> > > > - MEM:47.7890625 Reading. parent:caves-1623/2007-12/2007-12 <> caves-1623/2007-12/2007-12
+> > > LEGS: 3 (previous: 3168, now:3171)
+> > - Include path found, including - caves-1623/2007-70/2007-70
+> > - NO Match in DB (i) for a cave for caves-1623/2007-70/2007-70
+> > > - MEM:47.80078125 Reading. parent:kataster/1623 <> caves-1623/2007-70/2007-70
+> > > - No match (b) for caves-1623/2007-70/2007-70
+> > > - Begin found for: 2007-70
+> > > > - MEM:47.80078125 Reading. parent:caves-1623/2007-70/2007-70 <> caves-1623/2007-70/2007-70
+> > > LEGS: 2 (previous: 3171, now:3173)
+> > - Include path found, including - caves-1623/2007-72/2007-72
+> > - NO Match in DB (i) for a cave for caves-1623/2007-72/2007-72
+> > > - MEM:47.80078125 Reading. parent:kataster/1623 <> caves-1623/2007-72/2007-72
+> > > - No match (b) for caves-1623/2007-72/2007-72
+> > > - Begin found for: 2007-72
+> > > > - MEM:47.80078125 Reading. parent:caves-1623/2007-72/2007-72 <> caves-1623/2007-72/2007-72
+> > > LEGS: 7 (previous: 3173, now:3180)
+> > - Include path found, including - caves-1623/2009-01/2009-01
+> > - NO Match in DB (i) for a cave for caves-1623/2009-01/2009-01
+> > > - MEM:47.8046875 Reading. parent:kataster/1623 <> caves-1623/2009-01/2009-01
+> > > - No match (b) for caves-1623/2009-01/2009-01
+> > > - Begin found for: 2009-01
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2009-01/2009-01 <> caves-1623/2009-01/2009-01
+> > > LEGS: 3 (previous: 3180, now:3183)
+> > - Include path found, including - caves-1623/2009-02/2009-02
+> > - NO Match in DB (i) for a cave for caves-1623/2009-02/2009-02
+> > > - MEM:47.84375 Reading. parent:kataster/1623 <> caves-1623/2009-02/2009-02
+> > > - No match (b) for caves-1623/2009-02/2009-02
+> > > - Begin found for: 2009-02
+> > > > - MEM:47.84375 Reading. parent:caves-1623/2009-02/2009-02 <> caves-1623/2009-02/2009-02
+> > > LEGS: 17 (previous: 3183, now:3200)
+> > - Include path found, including - caves-1623/2009-03/2009-03
+> > - NO Match in DB (i) for a cave for caves-1623/2009-03/2009-03
+> > > - MEM:47.84375 Reading. parent:kataster/1623 <> caves-1623/2009-03/2009-03
+> > > - No match (b) for caves-1623/2009-03/2009-03
+> > > - Begin found for: 2009-03
+> > > > - MEM:47.84375 Reading. parent:caves-1623/2009-03/2009-03 <> caves-1623/2009-03/2009-03
+> > > LEGS: 7 (previous: 3200, now:3207)
+> > - Include path found, including - caves-1623/2010-06/2010-06
+> > - NO Match in DB (i) for a cave for caves-1623/2010-06/2010-06
+> > > - MEM:47.84375 Reading. parent:kataster/1623 <> caves-1623/2010-06/2010-06
+> > > - No match (b) for caves-1623/2010-06/2010-06
+> > > - Begin found for: 2010-06
+> > > > - MEM:47.84375 Reading. parent:caves-1623/2010-06/2010-06 <> caves-1623/2010-06/2010-06
+> > > LEGS: 6 (previous: 3207, now:3213)
+> > - Include path found, including - caves-1623/2010-07/2010-07
+> > - NO Match in DB (i) for a cave for caves-1623/2010-07/2010-07
+> > > - MEM:47.84765625 Reading. parent:kataster/1623 <> caves-1623/2010-07/2010-07
+> > > - No match (b) for caves-1623/2010-07/2010-07
+> > > - Begin found for: 2010-07
+> > > > - MEM:47.84765625 Reading. parent:caves-1623/2010-07/2010-07 <> caves-1623/2010-07/2010-07
+> > > LEGS: 5 (previous: 3213, now:3218)
+> > - Include path found, including - caves-1623/2011-01/2011-01
+> > - NO Match in DB (i) for a cave for caves-1623/2011-01/2011-01
+> > > - MEM:47.84765625 Reading. parent:kataster/1623 <> caves-1623/2011-01/2011-01
+> > > - No match (b) for caves-1623/2011-01/2011-01
+> > > - Begin found for: 2011-01
+> > > > - MEM:47.84765625 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/2011-01
+> > > - Include path found, including - caves-1623/2011-01/bullet1
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet1
+> > > > - MEM:47.84765625 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet1
+> > > > - No match (b) for caves-1623/2011-01/bullet1
+> > > > - Begin found for: bullet1
+> > > > > - MEM:47.84765625 Reading. parent:caves-1623/2011-01/bullet1 <> caves-1623/2011-01/bullet1
+> > > > LEGS: 15 (previous: 3218, now:3233)
+> > > - Include path found, including - caves-1623/2011-01/bullet2
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet2
+> > > > - MEM:47.8515625 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet2
+> > > > - No match (b) for caves-1623/2011-01/bullet2
+> > > > - Begin found for: bullet2
+> > > > > - MEM:47.85546875 Reading. parent:caves-1623/2011-01/bullet2 <> caves-1623/2011-01/bullet2
+> > > > LEGS: 12 (previous: 3233, now:3245)
+> > > - Include path found, including - caves-1623/2011-01/bullet3
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet3
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet3
+> > > > - No match (b) for caves-1623/2011-01/bullet3
+> > > > - Begin found for: bullet3
+> > > > > - MEM:47.85546875 Reading. parent:caves-1623/2011-01/bullet3 <> caves-1623/2011-01/bullet3
+> > > > LEGS: 4 (previous: 3245, now:3249)
+> > > LEGS: 31 (previous: 3218, now:3249)
+> > - Include path found, including - caves-1623/2012-hw-01/2012-hw-01
+> > - Match in DB (i) for cave 1623-2012-hw-01.
+[]
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2012-hw-01/2012-hw-01
+[]
+> > > - Begin found for: 2012-hw-01
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-hw-01/2012-hw-01 <> caves-1623/2012-hw-01/2012-hw-01
+[]
+> > > LEGS: 4 (previous: 3249, now:3253)
+> > - Include path found, including - caves-1623/2012-ns-01/2012-ns-01
+> > - Match in DB (i) for cave 1623-2012-ns-01.
+[]
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-01/2012-ns-01
+[]
+> > > - Begin found for: 2012-ns-01
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/2012-ns-01
+[]
+> > > - Include path found, including - caves-1623/2012-ns-01/AntsInYourPants
+> > > - Match in DB (i) for cave 1623-2012-ns-01.
+[]
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/AntsInYourPants
+[]
+[]
+> > > > - Begin found for: antsinyourpants
+> > > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-ns-01/AntsInYourPants <> caves-1623/2012-ns-01/AntsInYourPants
+[]
+> > > > LEGS: 14 (previous: 3253, now:3267)
+> > > LEGS: 15 (previous: 3253, now:3268)
+> > - Include path found, including - caves-1623/2012-ns-02/2012-ns-02
+> > - Match in DB (i) for cave 1623-2012-ns-02.
+[]
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-02/2012-ns-02
+[]
+> > > - Begin found for: 2012-ns-02
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-ns-02/2012-ns-02 <> caves-1623/2012-ns-02/2012-ns-02
+[]
+> > > LEGS: 1 (previous: 3268, now:3269)
+> > - Include path found, including - caves-1623/2012-ns-03/2012-ns-03
+> > - Match in DB (i) for cave 1623-2012-ns-03.
+[<Cave: 1623-2012-ns-03>]
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-03/2012-ns-03
+[<Cave: 1623-2012-ns-03>]
+> > > - Begin found for: 2012-ns-03
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-ns-03/2012-ns-03 <> caves-1623/2012-ns-03/2012-ns-03
+[<Cave: 1623-2012-ns-03>]
+> > > LEGS: 5 (previous: 3269, now:3274)
+> > - Include path found, including - caves-1623/2010-03/2010-03
+> > - NO Match in DB (i) for a cave for caves-1623/2010-03/2010-03
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2010-03/2010-03
+> > > - No match (b) for caves-1623/2010-03/2010-03
+> > > - Begin found for: 2010-03
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2010-03/2010-03 <> caves-1623/2010-03/2010-03
+> > > LEGS: 5 (previous: 3274, now:3279)
+> > - Include path found, including - caves-1623/2010-04/2010-04
+> > - NO Match in DB (i) for a cave for caves-1623/2010-04/2010-04
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2010-04/2010-04
+> > > - No match (b) for caves-1623/2010-04/2010-04
+> > > - Begin found for: 2010-04
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2010-04/2010-04 <> caves-1623/2010-04/2010-04
+> > > LEGS: 2 (previous: 3279, now:3281)
+> > - Include path found, including - caves-1623/2012-ns-05/2012-ns-05
+> > - Match in DB (i) for cave 1623-2012-ns-05.
+[]
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2012-ns-05/2012-ns-05
+[]
+> > > - Begin found for: 2012-ns-05
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2012-ns-05/2012-ns-05 <> caves-1623/2012-ns-05/2012-ns-05
+[]
+> > > LEGS: 1 (previous: 3281, now:3282)
+> > - Include path found, including - caves-1623/2012-ns-06/2012-ns-06
+> > - Match in DB (i) for cave 1623-2012-ns-06.
+[]
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2012-ns-06/2012-ns-06
+[]
+> > > - Begin found for: 2012-ns-06
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2012-ns-06/2012-ns-06 <> caves-1623/2012-ns-06/2012-ns-06
+[]
+> > > LEGS: 1 (previous: 3282, now:3283)
+> > - Include path found, including - caves-1623/2012-ns-07/2012-ns-07
+> > - Match in DB (i) for cave 1623-2012-ns-07.
+[]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-07/2012-ns-07
+[]
+> > > - Begin found for: 2012-ns-07
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-07/2012-ns-07 <> caves-1623/2012-ns-07/2012-ns-07
+[]
+> > > LEGS: 1 (previous: 3283, now:3284)
+> > - Include path found, including - caves-1623/2012-ns-08/2012-ns-08
+> > - Match in DB (i) for cave 1623-2012-ns-08.
+[]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-08/2012-ns-08
+[]
+> > > - Begin found for: 2012-ns-08
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-08/2012-ns-08 <> caves-1623/2012-ns-08/2012-ns-08
+[]
+> > > LEGS: 1 (previous: 3284, now:3285)
+> > - Include path found, including - caves-1623/2012-ns-09/2012-ns-09
+> > - Match in DB (i) for cave 1623-2012-ns-09.
+[<Cave: 1623-2012-ns-09>]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-09/2012-ns-09
+[<Cave: 1623-2012-ns-09>]
+> > > - Begin found for: 2012-ns-09
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-09/2012-ns-09 <> caves-1623/2012-ns-09/2012-ns-09
+[<Cave: 1623-2012-ns-09>]
+> > > LEGS: 4 (previous: 3285, now:3289)
+> > - Include path found, including - caves-1623/2012-ns-10/2012-ns-10
+> > - Match in DB (i) for cave 1623-2012-ns-10.
+[<Cave: 1623-2012-ns-10>]
+> > > - MEM:47.8671875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-10/2012-ns-10
+[<Cave: 1623-2012-ns-10>]
+> > > - Begin found for: 2012-ns-10
+> > > > - MEM:47.8671875 Reading. parent:caves-1623/2012-ns-10/2012-ns-10 <> caves-1623/2012-ns-10/2012-ns-10
+[<Cave: 1623-2012-ns-10>]
+> > > LEGS: 5 (previous: 3289, now:3294)
+> > - Include path found, including - caves-1623/2012-ns-12/2012-ns-12
+> > - Match in DB (i) for cave 1623-2012-ns-12.
+[]
+> > > - MEM:47.8671875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-12/2012-ns-12
+[]
+> > > - Begin found for: 2012-ns-12
+> > > > - MEM:47.8671875 Reading. parent:caves-1623/2012-ns-12/2012-ns-12 <> caves-1623/2012-ns-12/2012-ns-12
+[]
+> > > LEGS: 1 (previous: 3294, now:3295)
+> > - Include path found, including - caves-1623/2012-ns-13/2012-ns-13
+> > - Match in DB (i) for cave 1623-2012-ns-13.
+[<Cave: 1623-292>]
+> > > - MEM:47.8671875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-13/2012-ns-13
+[<Cave: 1623-292>]
+> > > - Begin found for: 2012-ns-13
+> > > > - MEM:47.8671875 Reading. parent:caves-1623/2012-ns-13/2012-ns-13 <> caves-1623/2012-ns-13/2012-ns-13
+[<Cave: 1623-292>]
+> > > LEGS: 5 (previous: 3295, now:3300)
+> > - Include path found, including - caves-1623/2012-ns-14/2012-ns-14
+> > - Match in DB (i) for cave 1623-2012-ns-14.
+[]
+> > > - MEM:47.8671875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-14/2012-ns-14
+[]
+> > > - Begin found for: 2012-ns-14
+> > > > - MEM:47.8671875 Reading. parent:caves-1623/2012-ns-14/2012-ns-14 <> caves-1623/2012-ns-14/2012-ns-14
+[]
+> > > LEGS: 1 (previous: 3300, now:3301)
+> > - Include path found, including - caves-1623/2012-ns-15/2012-ns-15
+> > - Match in DB (i) for cave 1623-2012-ns-15.
+[]
+> > > - MEM:47.8671875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-15/2012-ns-15
+[]
+> > > - Begin found for: 2012-ns-15
+> > > > - MEM:47.87109375 Reading. parent:caves-1623/2012-ns-15/2012-ns-15 <> caves-1623/2012-ns-15/2012-ns-15
+[]
+> > > LEGS: 1 (previous: 3301, now:3302)
+> > - Include path found, including - caves-1623/2012-70/2012-70
+> > - NO Match in DB (i) for a cave for caves-1623/2012-70/2012-70
+> > > - MEM:47.87109375 Reading. parent:kataster/1623 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/2012-70
+> > > - Begin found for: 2012-70
+> > > > - MEM:47.87109375 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/pt2
+> > > - Begin found for: pt2
+> > > > - MEM:47.875 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > LEGS: 10 (previous: 3327, now:3337)
+> > - Include path found, including - caves-1623/2012-js-1/2012-js-1
+> > - Match in DB (i) for cave 1623-2012-js-1.
+[]
+> > > - MEM:47.8828125 Reading. parent:kataster/1623 <> caves-1623/2012-js-1/2012-js-1
+[]
+> > > - Begin found for: 2012-js-1
+> > > > - MEM:47.88671875 Reading. parent:caves-1623/2012-js-1/2012-js-1 <> caves-1623/2012-js-1/2012-js-1
+[]
+> > > LEGS: 6 (previous: 3337, now:3343)
+> > - Include path found, including - caves-1623/2012-dd-05/2012-dd-05
+> > - Match in DB (i) for cave 1623-2012-dd-05.
+[<Cave: 1623-286>]
+> > > - MEM:47.89453125 Reading. parent:kataster/1623 <> caves-1623/2012-dd-05/2012-dd-05
+[<Cave: 1623-286>]
+> > > - Begin found for: 2012-dd-05
+> > > > - MEM:47.89453125 Reading. parent:caves-1623/2012-dd-05/2012-dd-05 <> caves-1623/2012-dd-05/2012-dd-05
+[<Cave: 1623-286>]
+> > > LEGS: 19 (previous: 3343, now:3362)
+> > - Include path found, including - caves-1623/2012-dd-08/2012-dd-08
+> > - Match in DB (i) for cave 1623-2012-dd-08.
+[<Cave: 1623-297>]
+> > > - MEM:47.89453125 Reading. parent:kataster/1623 <> caves-1623/2012-dd-08/2012-dd-08
+[<Cave: 1623-297>]
+> > > - Begin found for: 2012-dd-08
+> > > > - MEM:47.89453125 Reading. parent:caves-1623/2012-dd-08/2012-dd-08 <> caves-1623/2012-dd-08/2012-dd-08
+[<Cave: 1623-297>]
+> > > LEGS: 6 (previous: 3362, now:3368)
+> > - Include path found, including - caves-1623/2014-sd-01/2014-sd-01
+> > - Match in DB (i) for cave 1623-2014-sd-01.
+[]
+> > > - MEM:47.90234375 Reading. parent:kataster/1623 <> caves-1623/2014-sd-01/2014-sd-01
+[]
+> > > - Begin found for: 2014-sd-01
+> > > > - MEM:47.90234375 Reading. parent:caves-1623/2014-sd-01/2014-sd-01 <> caves-1623/2014-sd-01/2014-sd-01
+[]
+> > > LEGS: 13 (previous: 3368, now:3381)
+> > - Include path found, including - caves-1623/2014-BL888/2014-BL888
+> > - NO Match in DB (i) for a cave for caves-1623/2014-BL888/2014-BL888
+> > > - MEM:47.90234375 Reading. parent:kataster/1623 <> caves-1623/2014-BL888/2014-BL888
+> > > - No match (b) for caves-1623/2014-BL888/2014-BL888
+> > > - Begin found for: 2014-bl888
+> > > > - MEM:47.90234375 Reading. parent:caves-1623/2014-BL888/2014-BL888 <> caves-1623/2014-BL888/2014-BL888
+> > > LEGS: 10 (previous: 3381, now:3391)
+> > - Include path found, including - caves-1623/2015-mf-06/2015-mf-06
+> > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > - MEM:47.90234375 Reading. parent:kataster/1623 <> caves-1623/2015-mf-06/2015-mf-06
+[<Cave: 1623-288>]
+> > > - Begin found for: 2015-mf-06
+> > > > - MEM:47.90234375 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/2015-mf-06
+[<Cave: 1623-288>]
+> > > - Include path found, including - caves-1623/2015-mf-06/purplelupine
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > > - MEM:47.91015625 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine
+[<Cave: 1623-288>]
+[<Cave: 1623-288>]
+> > > > - Begin found for: purplelupine
+> > > > > - MEM:47.9140625 Reading. parent:caves-1623/2015-mf-06/purplelupine <> caves-1623/2015-mf-06/purplelupine
+[<Cave: 1623-288>]
+> > > > LEGS: 10 (previous: 3391, now:3401)
+> > > - Include path found, including - caves-1623/2015-mf-06/purplelupine2
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine2
+[<Cave: 1623-288>]
+[<Cave: 1623-288>]
+> > > > - Begin found for: purplelupine2
+> > > > > - MEM:47.9140625 Reading. parent:caves-1623/2015-mf-06/purplelupine2 <> caves-1623/2015-mf-06/purplelupine2
+[<Cave: 1623-288>]
+> > > > LEGS: 14 (previous: 3401, now:3415)
+> > > LEGS: 24 (previous: 3391, now:3415)
+> > - Include path found, including - caves-1623/2016-jb-01/2016-jb-01
+> > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > - MEM:47.9140625 Reading. parent:kataster/1623 <> caves-1623/2016-jb-01/2016-jb-01
+[<Cave: 1623-289>]
+> > > - Begin found for: 2016-jb-01
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/2016-jb-01
+[<Cave: 1623-289>]
+> > > - Include path found, including - caves-1623/2016-jb-01/solidrock
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrock
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for: solidrock
+> > > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/solidrock <> caves-1623/2016-jb-01/solidrock
+[<Cave: 1623-289>]
+> > > > LEGS: 252 (previous: 3415, now:3667)
+> > > - Include path found, including - caves-1623/2016-jb-01/hopeless
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/hopeless
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for: hopeless
+> > > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/hopeless <> caves-1623/2016-jb-01/hopeless
+[<Cave: 1623-289>]
+> > > > LEGS: 85 (previous: 3667, now:3752)
+> > > - Include path found, including - caves-1623/2016-jb-01/dirtysnow
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/dirtysnow
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for: dirtysnow
+> > > > > - MEM:47.9140625 Reading. parent:caves-1623/2016-jb-01/dirtysnow <> caves-1623/2016-jb-01/dirtysnow
+[<Cave: 1623-289>]
+> > > > LEGS: 59 (previous: 3752, now:3811)
+> > > - Include path found, including - caves-1623/2016-jb-01/solidrocks
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.91796875 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrocks
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for: solidrocks
+> > > > > - MEM:47.91796875 Reading. parent:caves-1623/2016-jb-01/solidrocks <> caves-1623/2016-jb-01/solidrocks
+[<Cave: 1623-289>]
+> > > > LEGS: 65 (previous: 3811, now:3876)
+> > > - Include path found, including - caves-1623/2016-jb-01/nervousbreakdown
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.91796875 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/nervousbreakdown
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for: nervousbreakdown
+> > > > > - MEM:47.91796875 Reading. parent:caves-1623/2016-jb-01/nervousbreakdown <> caves-1623/2016-jb-01/nervousbreakdown
+[<Cave: 1623-289>]
+> > > > LEGS: 200 (previous: 3876, now:4076)
+> > > LEGS: 661 (previous: 3415, now:4076)
+> > - Include path found, including - caves-1623/2017-pw-01/2017-pw-01
+> > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > - MEM:47.91796875 Reading. parent:kataster/1623 <> caves-1623/2017-pw-01/2017-pw-01
+[<Cave: 1623-277>]
+> > > - Begin found for: 2017-pw-01
+> > > > - MEM:47.91796875 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/2017-pw-01
+[<Cave: 1623-277>]
+> > > - Include path found, including - caves-1623/2017-pw-01/entrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.91796875 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/entrance
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for: entrance
+> > > > > - MEM:47.91796875 Reading. parent:caves-1623/2017-pw-01/entrance <> caves-1623/2017-pw-01/entrance
+[<Cave: 1623-277>]
+> > > > LEGS: 11 (previous: 4076, now:4087)
+> > > - Include path found, including - caves-1623/2017-pw-01/gardeningshoots
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.95703125 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/gardeningshoots
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for: gardeningshoots
+> > > > > - MEM:47.9609375 Reading. parent:caves-1623/2017-pw-01/gardeningshoots <> caves-1623/2017-pw-01/gardeningshoots
+[<Cave: 1623-277>]
+> > > > LEGS: 17 (previous: 4087, now:4104)
+> > > - Include path found, including - caves-1623/2017-pw-01/thirdentrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/thirdentrance
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for: thirdentrance
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-pw-01/thirdentrance <> caves-1623/2017-pw-01/thirdentrance
+[<Cave: 1623-277>]
+> > > > LEGS: 9 (previous: 4104, now:4113)
+> > > - Include path found, including - caves-1623/2017-pw-01/badforecastthree
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/badforecastthree
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for: badforecastthree
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-pw-01/badforecastthree <> caves-1623/2017-pw-01/badforecastthree
+[<Cave: 1623-277>]
+> > > > LEGS: 10 (previous: 4113, now:4123)
+> > > LEGS: 47 (previous: 4076, now:4123)
+> > - Include path found, including - caves-1623/110/110
+> > - Match in DB (i) for cave 1623-110.
+[<Cave: 1623-110>]
+> > > - MEM:47.97265625 Reading. parent:kataster/1623 <> caves-1623/110/110
+[<Cave: 1623-110>]
+> > > - Begin found for: 110
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/110/110 <> caves-1623/110/110
+[<Cave: 1623-110>]
+> > > - Include path found, including - caves-1623/110/notakittensheckschance
+> > > - Match in DB (i) for cave 1623-110.
+[<Cave: 1623-110>]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/110/110 <> caves-1623/110/notakittensheckschance
+[<Cave: 1623-110>]
+[<Cave: 1623-110>]
+> > > > - Begin found for: notakittensheckschance
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/110/notakittensheckschance <> caves-1623/110/notakittensheckschance
+[<Cave: 1623-110>]
+> > > > LEGS: 19 (previous: 4123, now:4142)
+> > > LEGS: 19 (previous: 4123, now:4142)
+> > - Include path found, including - caves-1623/2017-cucc-23/2017-cucc-23
+> > - Match in DB (i) for cave 1623-2017-cucc-23.
+[]
+> > > - MEM:47.97265625 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-23/2017-cucc-23
+[]
+> > > - Begin found for: 2017_cucc_23
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/2017-cucc-23
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-23/keinwassermelone
+> > > - Match in DB (i) for cave 1623-2017-cucc-23.
+[]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/keinwassermelone
+[]
+[]
+> > > > - Begin found for: keinwassermelone
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-23/keinwassermelone <> caves-1623/2017-cucc-23/keinwassermelone
+[]
+> > > > LEGS: 18 (previous: 4142, now:4160)
+> > > LEGS: 18 (previous: 4142, now:4160)
+> > - Include path found, including - caves-1623/2017-cucc-24/2017-cucc-24
+> > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > - MEM:47.97265625 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-24/2017-cucc-24
+[]
+> > > - Begin found for: 2017_cucc_24
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/2017-cucc-24
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-24/dentrance
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentrance
+[]
+[]
+> > > > - Begin found for: dentrance
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/dentrance <> caves-1623/2017-cucc-24/dentrance
+[]
+> > > > LEGS: 34 (previous: 4160, now:4194)
+> > > - Include path found, including - caves-1623/2017-cucc-24/dentb
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentb
+[]
+[]
+> > > > - Begin found for: dentb
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/dentb <> caves-1623/2017-cucc-24/dentb
+[]
+> > > > LEGS: 13 (previous: 4194, now:4207)
+> > > - Include path found, including - caves-1623/2017-cucc-24/couldashouldawoulda
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda
+[]
+[]
+> > > > - Begin found for: couldashouldawoulda
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda <> caves-1623/2017-cucc-24/couldashouldawoulda
+[]
+> > > > LEGS: 15 (previous: 4207, now:4222)
+> > > - Include path found, including - caves-1623/2017-cucc-24/gsh4
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/gsh4
+[]
+[]
+> > > > - Begin found for: gsh4
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/gsh4 <> caves-1623/2017-cucc-24/gsh4
+[]
+> > > > LEGS: 9 (previous: 4222, now:4231)
+> > > - Include path found, including - caves-1623/2017-cucc-24/riftpiece
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/riftpiece
+[]
+[]
+> > > > - Begin found for: riftpiece
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-24/riftpiece <> caves-1623/2017-cucc-24/riftpiece
+[]
+> > > > LEGS: 13 (previous: 4231, now:4244)
+> > > - Include path found, including - caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+[]
+[]
+> > > > - Begin found for: couldashouldawoulda_to_bathdodgersbypass
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+[]
+> > > > LEGS: 23 (previous: 4244, now:4267)
+> > > LEGS: 107 (previous: 4160, now:4267)
+> > - Include path found, including - caves-1623/2017-cucc-28/2017-cucc-28
+> > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > - MEM:48.015625 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-28/2017-cucc-28
+[]
+> > > - Begin found for: 2017_cucc_28
+> > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/2017-cucc-28
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-28/blower
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blower
+[]
+[]
+> > > > - Begin found for: blower
+> > > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/blower <> caves-1623/2017-cucc-28/blower
+[]
+> > > > LEGS: 1 (previous: 4267, now:4268)
+> > > - Include path found, including - caves-1623/2017-cucc-28/entranceseries
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/entranceseries
+[]
+[]
+> > > > - Begin found for: entranceseries
+> > > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/entranceseries <> caves-1623/2017-cucc-28/entranceseries
+[]
+> > > > LEGS: 6 (previous: 4268, now:4274)
+> > > - Include path found, including - caves-1623/2017-cucc-28/windytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/windytube
+[]
+[]
+> > > > - Begin found for: windytube
+> > > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-28/windytube <> caves-1623/2017-cucc-28/windytube
+[]
+> > > > LEGS: 8 (previous: 4274, now:4282)
+> > > - Include path found, including - caves-1623/2017-cucc-28/12monkeys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/12monkeys
+[]
+[]
+> > > > - Begin found for: 12monkeys
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/12monkeys <> caves-1623/2017-cucc-28/12monkeys
+[]
+> > > > LEGS: 22 (previous: 4282, now:4304)
+> > > - Include path found, including - caves-1623/2017-cucc-28/fishface1-part1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part1
+[]
+[]
+> > > > - Begin found for: fishface1-part1
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/fishface1-part1 <> caves-1623/2017-cucc-28/fishface1-part1
+[]
+> > > > LEGS: 13 (previous: 4304, now:4317)
+> > > - Include path found, including - caves-1623/2017-cucc-28/fishface1-part2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part2
+[]
+[]
+> > > > - Begin found for: fishface1-part2
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/fishface1-part2 <> caves-1623/2017-cucc-28/fishface1-part2
+[]
+> > > > LEGS: 5 (previous: 4317, now:4322)
+> > > - Include path found, including - caves-1623/2017-cucc-28/icytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/icytube
+[]
+[]
+> > > > - Begin found for: icytube
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/icytube <> caves-1623/2017-cucc-28/icytube
+[]
+> > > > LEGS: 11 (previous: 4322, now:4333)
+> > > - Include path found, including - caves-1623/2017-cucc-28/canyon
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/canyon
+[]
+[]
+> > > > - Begin found for: canyon
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/canyon <> caves-1623/2017-cucc-28/canyon
+[]
+> > > > LEGS: 18 (previous: 4333, now:4351)
+> > > - Include path found, including - caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+[]
+[]
+> > > > - Begin found for: blitzen_to_liquidluck
+> > > > > - MEM:48.02734375 Reading. parent:caves-1623/2017-cucc-28/blitzen_to_liquidluck <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+[]
+> > > > LEGS: 35 (previous: 4351, now:4386)
+> > > - Include path found, including - caves-1623/2017-cucc-28/freeatticflys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.02734375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/freeatticflys
+[]
+[]
+> > > > - Begin found for: freeattic_flys
+> > > > > - MEM:48.02734375 Reading. parent:caves-1623/2017-cucc-28/freeatticflys <> caves-1623/2017-cucc-28/freeatticflys
+[]
+> > > > LEGS: 22 (previous: 4386, now:4408)
+> > > - Include path found, including - caves-1623/2017-cucc-28/ulysses_to_toto
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_toto
+[]
+[]
+> > > > - Begin found for: ulysses_to_toto
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_toto <> caves-1623/2017-cucc-28/ulysses_to_toto
+[]
+> > > > LEGS: 27 (previous: 4408, now:4435)
+> > > - Include path found, including - caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+[]
+[]
+> > > > - Begin found for: toto_to_crystalcrumble
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/toto_to_crystalcrumble <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+[]
+> > > > LEGS: 14 (previous: 4435, now:4449)
+> > > - Include path found, including - caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+[]
+[]
+> > > > - Begin found for: ulysses_to_colericchamber
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_colericchamber <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+[]
+> > > > LEGS: 7 (previous: 4449, now:4456)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble
+[]
+[]
+> > > > - Begin found for: rubblerumble
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/rubblerumble <> caves-1623/2017-cucc-28/rubblerumble
+[]
+> > > > LEGS: 12 (previous: 4456, now:4468)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble3
+[]
+[]
+> > > > - Begin found for: rubblerumble3
+> > > > > - MEM:48.0625 Reading. parent:caves-1623/2017-cucc-28/rubblerumble3 <> caves-1623/2017-cucc-28/rubblerumble3
+[]
+> > > > LEGS: 18 (previous: 4468, now:4486)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble2
+[]
+[]
+> > > > - Begin found for: rubblerumble2
+> > > > > - MEM:48.0625 Reading. parent:caves-1623/2017-cucc-28/rubblerumble2 <> caves-1623/2017-cucc-28/rubblerumble2
+[]
+> > > > LEGS: 9 (previous: 4486, now:4495)
+> > > - Include path found, including - caves-1623/2017-cucc-28/kublakhan
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/kublakhan
+[]
+[]
+> > > > - Begin found for: kublakhan
+> > > > > - MEM:48.0625 Reading. parent:caves-1623/2017-cucc-28/kublakhan <> caves-1623/2017-cucc-28/kublakhan
+[]
+> > > > LEGS: 36 (previous: 4495, now:4531)
+> > > - Include path found, including - caves-1623/2017-cucc-28/miraclemaze1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0703125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze1
+[]
+[]
+> > > > - Begin found for: miraclemaze1
+> > > > > - MEM:48.0703125 Reading. parent:caves-1623/2017-cucc-28/miraclemaze1 <> caves-1623/2017-cucc-28/miraclemaze1
+[]
+> > > > LEGS: 49 (previous: 4531, now:4580)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber1
+[]
+[]
+> > > > - Begin found for: coconutchamber1
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/coconutchamber1 <> caves-1623/2017-cucc-28/coconutchamber1
+[]
+> > > > LEGS: 12 (previous: 4580, now:4592)
+> > > - Include path found, including - caves-1623/2017-cucc-28/bigbastard
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/bigbastard
+[]
+[]
+> > > > - Begin found for: bigbastard
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/bigbastard <> caves-1623/2017-cucc-28/bigbastard
+[]
+> > > > LEGS: 2 (previous: 4592, now:4594)
+> > > - Include path found, including - caves-1623/2017-cucc-28/miraclemaze2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze2
+[]
+[]
+> > > > - Begin found for: miraclemaze2
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/miraclemaze2 <> caves-1623/2017-cucc-28/miraclemaze2
+[]
+> > > > LEGS: 10 (previous: 4594, now:4604)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber2
+[]
+[]
+> > > > - Begin found for: coconutchamber2
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/coconutchamber2 <> caves-1623/2017-cucc-28/coconutchamber2
+[]
+> > > > LEGS: 13 (previous: 4604, now:4617)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber3
+[]
+[]
+> > > > - Begin found for: coconutchamber3
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/coconutchamber3 <> caves-1623/2017-cucc-28/coconutchamber3
+[]
+> > > > LEGS: 14 (previous: 4617, now:4631)
+> > > - Include path found, including - caves-1623/2017-cucc-28/gardeningschl
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/gardeningschl
+[]
+[]
+> > > > - Begin found for: gardeningschool
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/gardeningschl <> caves-1623/2017-cucc-28/gardeningschl
+[]
+> > > > LEGS: 13 (previous: 4631, now:4644)
+> > > - Include path found, including - caves-1623/2017-cucc-28/pushderig
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/pushderig
+[]
+[]
+> > > > - Begin found for: pushderig
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/pushderig <> caves-1623/2017-cucc-28/pushderig
+[]
+> > > > LEGS: 36 (previous: 4644, now:4680)
+> > > LEGS: 413 (previous: 4267, now:4680)
+> > - Include path found, including - caves-1623/2014-ms-14/driveneast
+> > - Match in DB (i) for cave 1623-2014-ms-14.
+[<Cave: 1623-287>]
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/2014-ms-14/driveneast
+[<Cave: 1623-287>]
+> > > - Begin found for: driveneast
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2014-ms-14/driveneast <> caves-1623/2014-ms-14/driveneast
+[<Cave: 1623-287>]
+> > > LEGS: 14 (previous: 4680, now:4694)
+> > - Include path found, including - caves-1623/2018-aa-01/2018-aa-01
+> > - Match in DB (i) for cave 1623-2018-aa-01.
+[<Cave: 1623-2018-aa-01>]
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/2018-aa-01/2018-aa-01
+[<Cave: 1623-2018-aa-01>]
+> > > - Begin found for: 2018-aa-01
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2018-aa-01/2018-aa-01 <> caves-1623/2018-aa-01/2018-aa-01
+[<Cave: 1623-2018-aa-01>]
+> > > LEGS: 4 (previous: 4694, now:4698)
+> > - Include path found, including - caves-1623/2018-pf-01/2018-pf-01
+> > - Match in DB (i) for cave 1623-2018-pf-01.
+[]
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/2018-pf-01/2018-pf-01
+[]
+> > > - Begin found for: 2018-pf-01
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2018-pf-01/2018-pf-01 <> caves-1623/2018-pf-01/2018-pf-01
+[]
+> > > LEGS: 5 (previous: 4698, now:4703)
+> > - Include path found, including - caves-1623/2018-pf-02/2018-pf-02
+> > - Match in DB (i) for cave 1623-2018-pf-02.
+[]
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/2018-pf-02/2018-pf-02
+[]
+> > > - Begin found for: 2018-pf-02
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2018-pf-02/2018-pf-02 <> caves-1623/2018-pf-02/2018-pf-02
+[]
+> > > LEGS: 4 (previous: 4703, now:4707)
+> > - Include path found, including - caves-1623/82/82
+> > - Match in DB (i) for cave 1623-82.
+[<Cave: 1623-82>]
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/82/82
+[<Cave: 1623-82>]
+> > > - Begin found for: 82
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/82/82 <> caves-1623/82/82
+[<Cave: 1623-82>]
+> > > LEGS: 0 (previous: 4707, now:4707)
+> > - Include path found, including - caves-1623/2007-neu/2007-neu
+> > - NO Match in DB (i) for a cave for caves-1623/2007-neu/2007-neu
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/2007-neu/2007-neu
+> > > - No match (b) for caves-1623/2007-neu/2007-neu
+> > > - Begin found for: 2007-neu
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2007-neu/2007-neu <> caves-1623/2007-neu/2007-neu
+> > > LEGS: 1 (previous: 4707, now:4708)
+> > - Include path found, including - caves-1623/gassischacht/gassischacht
+> > - NO Match in DB (i) for a cave for caves-1623/gassischacht/gassischacht
+> > > - MEM:48.07421875 Reading. parent:kataster/1623 <> caves-1623/gassischacht/gassischacht
+> > > - No match (b) for caves-1623/gassischacht/gassischacht
+> > > - Begin found for: gassischacht
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/gassischacht/gassischacht <> caves-1623/gassischacht/gassischacht
+> > > LEGS: 15 (previous: 4708, now:4723)
+> > - Include path found, including - caves-1623/BS17/BS17
+> > - NO Match in DB (i) for a cave for caves-1623/BS17/BS17
+> > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/BS17/BS17
+> > > - No match (b) for caves-1623/BS17/organ
+> > > - Begin found for: organ
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/BS17
+> > > - Include path found, including - caves-1623/BS17/organfake
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organfake
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organfake
+> > > > - No match (b) for caves-1623/BS17/fake
+> > > > - Begin found for: fake
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/BS17/organfake <> caves-1623/BS17/organfake
+> > > > LEGS: 0 (previous: 4723, now:4723)
+> > > - Include path found, including - caves-1623/BS17/organ_entrance
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organ_entrance
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organ_entrance
+> > > > - No match (b) for caves-1623/BS17/entrance
+> > > > - Begin found for: entrance
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/BS17/organ_entrance <> caves-1623/BS17/organ_entrance
+> > > > LEGS: 34 (previous: 4723, now:4757)
+> > > LEGS: 34 (previous: 4723, now:4757)
+> > - Include path found, including - caves-1623/haldenloch/haldenloch
+> > - NO Match in DB (i) for a cave for caves-1623/haldenloch/haldenloch
+> > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/haldenloch
+> > > - Begin found for: haldenloch
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/eingang
+> > > - Begin found for: eingang
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > LEGS: 7 (previous: 4757, now:4764)
+> > - Include path found, including - caves-1623/gruenstein/gruenstein
+> > - NO Match in DB (i) for a cave for caves-1623/gruenstein/gruenstein
+> > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/gruenstein/gruenstein
+> > > - No match (b) for caves-1623/gruenstein/gruenstein
+> > > - Begin found for: gruenstein
+> > > > - MEM:48.09765625 Reading. parent:caves-1623/gruenstein/gruenstein <> caves-1623/gruenstein/gruenstein
+> > > LEGS: 37 (previous: 4764, now:4801)
+> - Include path found, including - caves-1623/caves-smk
+> - NO Match in DB (i) for a cave for caves-1623/caves-smk
+> > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/caves-smk
+> > - Include path found, including - caves-1623/links-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > - Include path found, including - caves-1623/links41-142
+> > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > - Include path found, including - caves-1623/links-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > - Include path found, including - caves-1623/links204-258
+> > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > - Include path found, including - caves-1623/links161-204
+> > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > - Include path found, including - caves-1623/caves-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-south
+> > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/caves-smk-south
+> > > - Include path found, including - caves-1623/links-smk-south
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > > - Include path found, including - caves-1623/links41-142
+> > > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > > - Include path found, including - caves-1623/32/32
+> > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > - MEM:48.09765625 Reading. parent:kataster/1623 <> caves-1623/32/32
+[<Cave: 1623-32>]
+> > > > - Begin found for: 32
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/32 <> caves-1623/32/32
+[<Cave: 1623-32>]
+> > > > - Include path found, including - caves-1623/32/main
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/32 <> caves-1623/32/main
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for: main
+> > > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/main <> caves-1623/32/main
+[<Cave: 1623-32>]
+> > > > > LEGS: 62 (previous: 4801, now:4863)
+> > > > - Include path found, including - caves-1623/32/links
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/32 <> caves-1623/32/links
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for: links
+> > > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/links <> caves-1623/32/links
+[<Cave: 1623-32>]
+> > > > > LEGS: 109 (previous: 4863, now:4972)
+> > > > - Include path found, including - caves-1623/32/verteilerhalle
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/32 <> caves-1623/32/verteilerhalle
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for: verteilerhalle
+> > > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/verteilerhalle <> caves-1623/32/verteilerhalle
+[<Cave: 1623-32>]
+> > > > > LEGS: 47 (previous: 4972, now:5019)
+> > > > - Include path found, including - caves-1623/32/forever
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/32 <> caves-1623/32/forever
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for: forever
+> > > > > > - MEM:48.09765625 Reading. parent:caves-1623/32/forever <> caves-1623/32/forever
+[<Cave: 1623-32>]
+> > > > > LEGS: 64 (previous: 5019, now:5083)
+> > > > LEGS: 282 (previous: 4801, now:5083)
+> > > - Include path found, including - caves-1623/40/40
+> > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > - MEM:48.140625 Reading. parent:kataster/1623 <> caves-1623/40/40
+[<Cave: 1623-40>]
+> > > > - Begin found for: 40
+> > > > > - MEM:48.15234375 Reading. parent:caves-1623/40/40 <> caves-1623/40/40
+[<Cave: 1623-40>]
+> > > > - Include path found, including - caves-1623/40/40alt
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.171875 Reading. parent:caves-1623/40/40 <> caves-1623/40/40alt
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/old/EisSVH
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.19140625 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/EisSVH
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: eissvh
+> > > > > > > - MEM:48.21484375 Reading. parent:caves-1623/40/old/EisSVH <> caves-1623/40/old/EisSVH
+[<Cave: 1623-40>]
+> > > > > > LEGS: 81 (previous: 5083, now:5164)
+> > > > > - Include path found, including - caves-1623/40/old/spinne
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.21484375 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/spinne
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: spinne
+> > > > > > > - MEM:48.234375 Reading. parent:caves-1623/40/old/spinne <> caves-1623/40/old/spinne
+[<Cave: 1623-40>]
+> > > > > > LEGS: 38 (previous: 5164, now:5202)
+> > > > > - Include path found, including - caves-1623/40/old/eismain
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.234375 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/eismain
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: eishohle
+> > > > > > > - MEM:48.234375 Reading. parent:caves-1623/40/old/eismain <> caves-1623/40/old/eismain
+[<Cave: 1623-40>]
+> > > > > > LEGS: 47 (previous: 5202, now:5249)
+> > > > - Include path found, including - caves-1623/40/40arge
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.234375 Reading. parent:caves-1623/40/40 <> caves-1623/40/40arge
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/arge/elefantengang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.234375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/elefantengang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: elefantengang
+> > > > > > > - MEM:48.23828125 Reading. parent:caves-1623/40/arge/elefantengang <> caves-1623/40/arge/elefantengang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5249, now:5257)
+> > > > > - Include path found, including - caves-1623/40/arge/gruenerEingang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.23828125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gruenerEingang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: gruenereingang
+> > > > > > > - MEM:48.25 Reading. parent:caves-1623/40/arge/gruenerEingang <> caves-1623/40/arge/gruenerEingang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 19 (previous: 5257, now:5276)
+> > > > > - Include path found, including - caves-1623/40/arge/expressfinish
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.25 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/expressfinish
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: expressfinish
+> > > > > > > - MEM:48.25 Reading. parent:caves-1623/40/arge/expressfinish <> caves-1623/40/arge/expressfinish
+[<Cave: 1623-40>]
+> > > > > > LEGS: 15 (previous: 5276, now:5291)
+> > > > > - Include path found, including - caves-1623/40/arge/koenigsschacht
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.25 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/koenigsschacht
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: koenigsschacht
+> > > > > > > - MEM:48.25 Reading. parent:caves-1623/40/arge/koenigsschacht <> caves-1623/40/arge/koenigsschacht
+[<Cave: 1623-40>]
+> > > > > > LEGS: 7 (previous: 5291, now:5298)
+> > > > > - Include path found, including - caves-1623/40/arge/schotterland
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.25 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: schotterland
+> > > > > > > - MEM:48.25 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: bits
+> > > > > > > - MEM:48.25 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5313, now:5318)
+> > > > > - Include path found, including - caves-1623/40/arge/niete
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/niete
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: niete
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/niete <> caves-1623/40/arge/niete
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5318, now:5326)
+> > > > > - Include path found, including - caves-1623/40/arge/tiefergang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/tiefergang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: tiefergang
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/tiefergang <> caves-1623/40/arge/tiefergang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 13 (previous: 5326, now:5339)
+> > > > > - Include path found, including - caves-1623/40/arge/hanspfandlhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/hanspfandlhalle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: hanspfandlhalle
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/hanspfandlhalle <> caves-1623/40/arge/hanspfandlhalle
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5339, now:5347)
+> > > > > - Include path found, including - caves-1623/40/arge/wahnsinnsschaechte
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnsschaechte
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: wahnsinnsschaechte
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/wahnsinnsschaechte <> caves-1623/40/arge/wahnsinnsschaechte
+[<Cave: 1623-40>]
+> > > > > > LEGS: 41 (previous: 5347, now:5388)
+> > > > > - Include path found, including - caves-1623/40/arge/wahnsinnscanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnscanyon
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: wahnsinnscanyon
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/wahnsinnscanyon <> caves-1623/40/arge/wahnsinnscanyon
+[<Cave: 1623-40>]
+> > > > > > LEGS: 13 (previous: 5388, now:5401)
+> > > > > - Include path found, including - caves-1623/40/arge/thalhammerhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/thalhammerhalle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: thalhammerhalle
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/thalhammerhalle <> caves-1623/40/arge/thalhammerhalle
+[<Cave: 1623-40>]
+> > > > > > LEGS: 22 (previous: 5401, now:5423)
+> > > > > - Include path found, including - caves-1623/40/arge/flusstunnel
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/flusstunnel
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: flusstunnel
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/flusstunnel <> caves-1623/40/arge/flusstunnel
+[<Cave: 1623-40>]
+> > > > > > LEGS: 150 (previous: 5423, now:5573)
+> > > > > - Include path found, including - caves-1623/40/arge/gluehwuermchen
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.26171875 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gluehwuermchen
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: gluehwuermchen
+> > > > > > > - MEM:48.26171875 Reading. parent:caves-1623/40/arge/gluehwuermchen <> caves-1623/40/arge/gluehwuermchen
+[<Cave: 1623-40>]
+> > > > > > LEGS: 19 (previous: 5573, now:5592)
+> > > > > - Include path found, including - caves-1623/40/arge/wanderer
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wanderer
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: wanderer
+> > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/arge/wanderer <> caves-1623/40/arge/wanderer
+[<Cave: 1623-40>]
+> > > > > > LEGS: 53 (previous: 5592, now:5645)
+> > > > > - Include path found, including - caves-1623/40/arge/silbercanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/silbercanyon
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: silbercanyon
+> > > > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/arge/silbercanyon <> caves-1623/40/arge/silbercanyon
+[<Cave: 1623-40>]
+> > > > > > LEGS: 58 (previous: 5645, now:5703)
+> > > > > - Include path found, including - caves-1623/40/arge/franzosenbiwak
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/franzosenbiwak
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: franzosenbiwak
+> > > > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/arge/franzosenbiwak <> caves-1623/40/arge/franzosenbiwak
+[<Cave: 1623-40>]
+> > > > > > LEGS: 27 (previous: 5703, now:5730)
+> > > > - Include path found, including - caves-1623/40/40cucc
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/40 <> caves-1623/40/40cucc
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/cucc/plastic
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/plastic
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: plastic
+> > > > > > > - MEM:48.26953125 Reading. parent:caves-1623/40/cucc/plastic <> caves-1623/40/cucc/plastic
+[<Cave: 1623-40>]
+> > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book p59"' caves-1623/40/cucc/plastic
+> > > > > > LEGS: 21 (previous: 5730, now:5751)
+> > > > > - Include path found, including - caves-1623/40/cucc/pov/pov
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/pov
+[<Cave: 1623-40>]
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/deviant
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.29296875 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/deviant
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for: deviant
+> > > > > > > > - MEM:48.30078125 Reading. parent:caves-1623/40/cucc/pov/deviant <> caves-1623/40/cucc/pov/deviant
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 92-95"' caves-1623/40/cucc/pov/deviant
+> > > > > > > LEGS: 17 (previous: 5751, now:5768)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/uuaway
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.3046875 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/uuaway
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for: uuaway
+> > > > > > > > - MEM:48.3046875 Reading. parent:caves-1623/40/cucc/pov/uuaway <> caves-1623/40/cucc/pov/uuaway
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 96-97"' caves-1623/40/cucc/pov/uuaway
+> > > > > > > LEGS: 15 (previous: 5768, now:5783)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/dangle
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.3046875 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/dangle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for: dangle
+> > > > > > > > - MEM:48.3046875 Reading. parent:caves-1623/40/cucc/pov/dangle <> caves-1623/40/cucc/pov/dangle
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 98-100"' caves-1623/40/cucc/pov/dangle
+> > > > > > > LEGS: 19 (previous: 5783, now:5802)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/eiscream
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.30859375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/eiscream
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for: eiscream
+> > > > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/cucc/pov/eiscream <> caves-1623/40/cucc/pov/eiscream
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 101-103"' caves-1623/40/cucc/pov/eiscream
+> > > > > > > LEGS: 23 (previous: 5802, now:5825)
+> > > > > - Include path found, including - caves-1623/40/cucc/oldway
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldway
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: oldway
+> > > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/cucc/oldway <> caves-1623/40/cucc/oldway
+[<Cave: 1623-40>]
+> > > > > > ! Unparsed [*ref]: '"1999 Not-KH survey book pp ?"' caves-1623/40/cucc/oldway
+> > > > > > LEGS: 3 (previous: 5825, now:5828)
+> > > > > - Include path found, including - caves-1623/40/cucc/mission
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: mission
+> > > > > > > - MEM:48.34375 Reading. parent:caves-1623/40/cucc/mission <> caves-1623/40/cucc/mission
+[<Cave: 1623-40>]
+> > > > > > LEGS: 9 (previous: 5828, now:5837)
+> > > > > - Include path found, including - caves-1623/40/cucc/mission5
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.34375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission5
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: mission5
+> > > > > > > - MEM:48.34765625 Reading. parent:caves-1623/40/cucc/mission5 <> caves-1623/40/cucc/mission5
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5837, now:5842)
+> > > > > - Include path found, including - caves-1623/40/cucc/nmanip
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/nmanip
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: nmanip
+> > > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/cucc/nmanip <> caves-1623/40/cucc/nmanip
+[<Cave: 1623-40>]
+> > > > > > LEGS: 26 (previous: 5842, now:5868)
+> > > > > - Include path found, including - caves-1623/40/cucc/40h
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/40h
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: 40h
+> > > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/cucc/40h <> caves-1623/40/cucc/40h
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5868, now:5873)
+> > > > > - Include path found, including - caves-1623/40/cucc/oldnew
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: oldnew
+> > > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for: bodge
+> > > > > > > - MEM:48.359375 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+> > > > > > LEGS: 1 (previous: 5878, now:5879)
+> > > > LEGS: 796 (previous: 5083, now:5879)
+> > > - Include path found, including - caves-1623/41/41
+> > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > - MEM:48.375 Reading. parent:kataster/1623 <> caves-1623/41/41
+[<Cave: 1623-41>]
+> > > > - Begin found for: 41
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/41
+[<Cave: 1623-41>]
+> > > > - Include path found, including - caves-1623/41/seiteng
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/seiteng
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: seiteng
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/seiteng <> caves-1623/41/seiteng
+[<Cave: 1623-41>]
+> > > > > LEGS: 23 (previous: 5879, now:5902)
+> > > > - Include path found, including - caves-1623/41/bonsai
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/bonsai
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: bonsai
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/bonsai <> caves-1623/41/bonsai
+[<Cave: 1623-41>]
+> > > > > LEGS: 22 (previous: 5902, now:5924)
+> > > > - Include path found, including - caves-1623/41/verhall
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/verhall
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: verhall
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/verhall <> caves-1623/41/verhall
+[<Cave: 1623-41>]
+> > > > > LEGS: 38 (previous: 5924, now:5962)
+> > > > - Include path found, including - caves-1623/41/blakwite
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/blakwite
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: blakwite
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/blakwite <> caves-1623/41/blakwite
+[<Cave: 1623-41>]
+> > > > > LEGS: 54 (previous: 5962, now:6016)
+> > > > - Include path found, including - caves-1623/41/stream
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/stream
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: stream
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/stream <> caves-1623/41/stream
+[<Cave: 1623-41>]
+> > > > > LEGS: 18 (previous: 6016, now:6034)
+> > > > - Include path found, including - caves-1623/41/bigchamber
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/bigchamber
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: bigchamber
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/bigchamber <> caves-1623/41/bigchamber
+[<Cave: 1623-41>]
+> > > > > LEGS: 60 (previous: 6034, now:6094)
+> > > > - Include path found, including - caves-1623/41/abstieg
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/abstieg
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: abstieg
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/abstieg <> caves-1623/41/abstieg
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6094, now:6109)
+> > > > - Include path found, including - caves-1623/41/runway
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/runway
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: runway
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/runway <> caves-1623/41/runway
+[<Cave: 1623-41>]
+> > > > > LEGS: 33 (previous: 6109, now:6142)
+> > > > - Include path found, including - caves-1623/41/treppe
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/treppe
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: treppe
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/treppe <> caves-1623/41/treppe
+[<Cave: 1623-41>]
+> > > > > LEGS: 9 (previous: 6142, now:6151)
+> > > > - Include path found, including - caves-1623/41/platte
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.375 Reading. parent:caves-1623/41/41 <> caves-1623/41/platte
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: platte
+> > > > > > - MEM:48.375 Reading. parent:caves-1623/41/platte <> caves-1623/41/platte
+[<Cave: 1623-41>]
+> > > > > LEGS: 43 (previous: 6151, now:6194)
+> > > > - Include path found, including - caves-1623/41/e41
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3828125 Reading. parent:caves-1623/41/41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: e41
+> > > > > > - MEM:48.3828125 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+> > > > > - Include path found, including - caves-1623/41/germanrt
+> > > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > > - MEM:48.38671875 Reading. parent:caves-1623/41/e41 <> caves-1623/41/germanrt
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > > - Begin found for: germanrt
+> > > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/germanrt <> caves-1623/41/germanrt
+[<Cave: 1623-41>]
+> > > > > > LEGS: 8 (previous: 6223, now:6231)
+[<Cave: 1623-41>]
+> > > > > - Begin found for: bloop
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+> > > > > LEGS: 10 (previous: 6231, now:6241)
+> > > > - Include path found, including - caves-1623/41/steinsch
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/steinsch
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: steinsch
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/steinsch <> caves-1623/41/steinsch
+[<Cave: 1623-41>]
+> > > > > LEGS: 18 (previous: 6241, now:6259)
+> > > > - Include path found, including - caves-1623/41/din
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/din
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: din
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/din <> caves-1623/41/din
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6259, now:6273)
+> > > > - Include path found, including - caves-1623/41/extblatt
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/extblatt
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: extblatt
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/extblatt <> caves-1623/41/extblatt
+[<Cave: 1623-41>]
+> > > > > LEGS: 29 (previous: 6273, now:6302)
+> > > > - Include path found, including - caves-1623/41/extradin
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/extradin
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: extradin
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/extradin <> caves-1623/41/extradin
+[<Cave: 1623-41>]
+> > > > > LEGS: 10 (previous: 6302, now:6312)
+> > > > - Include path found, including - caves-1623/41/edelmean
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/edelmean
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: edelmean
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/edelmean <> caves-1623/41/edelmean
+[<Cave: 1623-41>]
+> > > > > LEGS: 11 (previous: 6312, now:6323)
+> > > > - Include path found, including - caves-1623/41/rondos
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/rondos
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: rondos
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/rondos <> caves-1623/41/rondos
+[<Cave: 1623-41>]
+> > > > > LEGS: 54 (previous: 6323, now:6377)
+> > > > - Include path found, including - caves-1623/41/german
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/german
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: german
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/german <> caves-1623/41/german
+[<Cave: 1623-41>]
+> > > > > LEGS: 39 (previous: 6377, now:6416)
+> > > > - Include path found, including - caves-1623/41/mond
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/mond
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: mond
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/mond <> caves-1623/41/mond
+[<Cave: 1623-41>]
+> > > > > LEGS: 47 (previous: 6416, now:6463)
+> > > > - Include path found, including - caves-1623/41/oktar
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/oktar
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: oktar
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/oktar <> caves-1623/41/oktar
+[<Cave: 1623-41>]
+> > > > > LEGS: 28 (previous: 6463, now:6491)
+> > > > - Include path found, including - caves-1623/41/megalo
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/megalo
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: megalo
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/megalo <> caves-1623/41/megalo
+[<Cave: 1623-41>]
+> > > > > LEGS: 23 (previous: 6491, now:6514)
+> > > > - Include path found, including - caves-1623/41/wdr
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/wdr
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: wdr
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/wdr <> caves-1623/41/wdr
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6514, now:6528)
+> > > > - Include path found, including - caves-1623/41/lampntot
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/lampntot
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: lampntot
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/lampntot <> caves-1623/41/lampntot
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6528, now:6543)
+> > > > - Include path found, including - caves-1623/41/manhattn
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/manhattn
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: manhattn
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/manhattn <> caves-1623/41/manhattn
+[<Cave: 1623-41>]
+> > > > > LEGS: 41 (previous: 6543, now:6584)
+> > > > - Include path found, including - caves-1623/41/entlueft
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/entlueft
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: entlueft
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/entlueft <> caves-1623/41/entlueft
+[<Cave: 1623-41>]
+> > > > > LEGS: 55 (previous: 6584, now:6639)
+> > > > - Include path found, including - caves-1623/41/glueck
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/glueck
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: glueck
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/glueck <> caves-1623/41/glueck
+[<Cave: 1623-41>]
+> > > > > LEGS: 77 (previous: 6639, now:6716)
+> > > > - Include path found, including - caves-1623/41/bus
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/bus
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: bus
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/bus <> caves-1623/41/bus
+[<Cave: 1623-41>]
+> > > > > LEGS: 49 (previous: 6716, now:6765)
+> > > > - Include path found, including - caves-1623/41/morphan
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/morphan
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: morphan
+> > > > > > - MEM:48.3984375 Reading. parent:caves-1623/41/morphan <> caves-1623/41/morphan
+[<Cave: 1623-41>]
+> > > > > LEGS: 59 (previous: 6765, now:6824)
+> > > > - Include path found, including - caves-1623/41/basic
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.40234375 Reading. parent:caves-1623/41/41 <> caves-1623/41/basic
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: basic
+> > > > > > - MEM:48.40234375 Reading. parent:caves-1623/41/basic <> caves-1623/41/basic
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6824, now:6838)
+> > > > - Include path found, including - caves-1623/41/tincan
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.40234375 Reading. parent:caves-1623/41/41 <> caves-1623/41/tincan
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: tincan
+> > > > > > - MEM:48.40234375 Reading. parent:caves-1623/41/tincan <> caves-1623/41/tincan
+[<Cave: 1623-41>]
+> > > > > LEGS: 22 (previous: 6838, now:6860)
+> > > > - Include path found, including - caves-1623/41/jade
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.40234375 Reading. parent:caves-1623/41/41 <> caves-1623/41/jade
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: jade
+> > > > > > - MEM:48.40625 Reading. parent:caves-1623/41/jade <> caves-1623/41/jade
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6860, now:6875)
+> > > > - Include path found, including - caves-1623/41/doplbodn
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.40625 Reading. parent:caves-1623/41/41 <> caves-1623/41/doplbodn
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: doplbodn
+> > > > > > - MEM:48.40625 Reading. parent:caves-1623/41/doplbodn <> caves-1623/41/doplbodn
+[<Cave: 1623-41>]
+> > > > > LEGS: 33 (previous: 6875, now:6908)
+> > > > - Include path found, including - caves-1623/41/alice
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.40625 Reading. parent:caves-1623/41/41 <> caves-1623/41/alice
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: alice
+> > > > > > - MEM:48.4140625 Reading. parent:caves-1623/41/alice <> caves-1623/41/alice
+[<Cave: 1623-41>]
+> > > > > LEGS: 62 (previous: 6908, now:6970)
+> > > > - Include path found, including - caves-1623/41/wetnwild
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.421875 Reading. parent:caves-1623/41/41 <> caves-1623/41/wetnwild
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: wetnwild
+> > > > > > - MEM:48.421875 Reading. parent:caves-1623/41/wetnwild <> caves-1623/41/wetnwild
+[<Cave: 1623-41>]
+> > > > > LEGS: 75 (previous: 6970, now:7045)
+> > > > - Include path found, including - caves-1623/41/diaet
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.421875 Reading. parent:caves-1623/41/41 <> caves-1623/41/diaet
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: diaet
+> > > > > > - MEM:48.421875 Reading. parent:caves-1623/41/diaet <> caves-1623/41/diaet
+[<Cave: 1623-41>]
+> > > > > LEGS: 104 (previous: 7045, now:7149)
+> > > > - Include path found, including - caves-1623/41/roehre
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.4296875 Reading. parent:caves-1623/41/41 <> caves-1623/41/roehre
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: roehre
+> > > > > > - MEM:48.4296875 Reading. parent:caves-1623/41/roehre <> caves-1623/41/roehre
+[<Cave: 1623-41>]
+> > > > > LEGS: 79 (previous: 7149, now:7228)
+> > > > - Include path found, including - caves-1623/41/rampe
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.43359375 Reading. parent:caves-1623/41/41 <> caves-1623/41/rampe
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for: rampe
+> > > > > > - MEM:48.43359375 Reading. parent:caves-1623/41/rampe <> caves-1623/41/rampe
+[<Cave: 1623-41>]
+> > > > > LEGS: 37 (previous: 7228, now:7265)
+> > > > LEGS: 1386 (previous: 5879, now:7265)
+> > > - Include path found, including - caves-1623/78/78
+> > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > - MEM:48.43359375 Reading. parent:kataster/1623 <> caves-1623/78/78
+[<Cave: 1623-78>]
+> > > > - Begin found for: 78
+> > > > > - MEM:48.43359375 Reading. parent:caves-1623/78/78 <> caves-1623/78/78
+[<Cave: 1623-78>]
+> > > > - Include path found, including - caves-1623/78/haupt
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.43359375 Reading. parent:caves-1623/78/78 <> caves-1623/78/haupt
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: haupt
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/haupt <> caves-1623/78/haupt
+[<Cave: 1623-78>]
+> > > > > LEGS: 99 (previous: 7265, now:7364)
+> > > > - Include path found, including - caves-1623/78/nasse
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/nasse
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: nasse
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/nasse <> caves-1623/78/nasse
+[<Cave: 1623-78>]
+> > > > > LEGS: 42 (previous: 7364, now:7406)
+> > > > - Include path found, including - caves-1623/78/eisdom
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisdom
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: eisdom
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/eisdom <> caves-1623/78/eisdom
+[<Cave: 1623-78>]
+> > > > > LEGS: 21 (previous: 7406, now:7427)
+> > > > - Include path found, including - caves-1623/78/forsten
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/forsten
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: forsten
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/forsten <> caves-1623/78/forsten
+[<Cave: 1623-78>]
+> > > > > LEGS: 23 (previous: 7427, now:7450)
+> > > > - Include path found, including - caves-1623/78/augsburg
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/augsburg
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: augsburg
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/augsburg <> caves-1623/78/augsburg
+[<Cave: 1623-78>]
+> > > > > LEGS: 26 (previous: 7450, now:7476)
+> > > > - Include path found, including - caves-1623/78/eisscha
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisscha
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: eisscha
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/eisscha <> caves-1623/78/eisscha
+[<Cave: 1623-78>]
+> > > > > LEGS: 5 (previous: 7476, now:7481)
+> > > > - Include path found, including - caves-1623/78/fossimea
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/fossimea
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: fossimea
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/fossimea <> caves-1623/78/fossimea
+[<Cave: 1623-78>]
+> > > > > LEGS: 73 (previous: 7481, now:7554)
+> > > > - Include path found, including - caves-1623/78/schwadom
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schwadom
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: schwadom
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/schwadom <> caves-1623/78/schwadom
+[<Cave: 1623-78>]
+> > > > > LEGS: 54 (previous: 7554, now:7608)
+> > > > - Include path found, including - caves-1623/78/stgneu
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/stgneu
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: stgneu
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/stgneu <> caves-1623/78/stgneu
+[<Cave: 1623-78>]
+> > > > > LEGS: 5 (previous: 7608, now:7613)
+> > > > - Include path found, including - caves-1623/78/bayberg
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/bayberg
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: bayberg
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/bayberg <> caves-1623/78/bayberg
+[<Cave: 1623-78>]
+> > > > > LEGS: 30 (previous: 7613, now:7643)
+> > > > - Include path found, including - caves-1623/78/keller
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/keller
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: keller
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/keller <> caves-1623/78/keller
+[<Cave: 1623-78>]
+> > > > > LEGS: 11 (previous: 7643, now:7654)
+> > > > - Include path found, including - caves-1623/78/e2
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/e2
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: e2
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/e2 <> caves-1623/78/e2
+[<Cave: 1623-78>]
+> > > > > LEGS: 17 (previous: 7654, now:7671)
+> > > > - Include path found, including - caves-1623/78/bartl
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/bartl
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: bartl
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/bartl <> caves-1623/78/bartl
+[<Cave: 1623-78>]
+> > > > > LEGS: 68 (previous: 7671, now:7739)
+> > > > - Include path found, including - caves-1623/78/fetzig
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/fetzig
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: fetzig
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/fetzig <> caves-1623/78/fetzig
+[<Cave: 1623-78>]
+> > > > > LEGS: 9 (previous: 7739, now:7748)
+> > > > - Include path found, including - caves-1623/78/verloren
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/verloren
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: verloren
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/verloren <> caves-1623/78/verloren
+[<Cave: 1623-78>]
+> > > > > LEGS: 13 (previous: 7748, now:7761)
+> > > > - Include path found, including - caves-1623/78/highway
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/highway
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: highway
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/highway <> caves-1623/78/highway
+[<Cave: 1623-78>]
+> > > > > LEGS: 148 (previous: 7761, now:7909)
+> > > > - Include path found, including - caves-1623/78/parallel
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/parallel
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: parallel
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/parallel <> caves-1623/78/parallel
+[<Cave: 1623-78>]
+> > > > > LEGS: 22 (previous: 7909, now:7931)
+> > > > - Include path found, including - caves-1623/78/allkaese
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/allkaese
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: allkaese
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/allkaese <> caves-1623/78/allkaese
+[<Cave: 1623-78>]
+> > > > > LEGS: 78 (previous: 7931, now:8009)
+> > > > - Include path found, including - caves-1623/78/schnaps
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schnaps
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: schnaps
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/schnaps <> caves-1623/78/schnaps
+[<Cave: 1623-78>]
+> > > > > LEGS: 35 (previous: 8009, now:8044)
+> > > > - Include path found, including - caves-1623/78/standard
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/standard
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: standard
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/standard <> caves-1623/78/standard
+[<Cave: 1623-78>]
+> > > > > LEGS: 92 (previous: 8044, now:8136)
+> > > > - Include path found, including - caves-1623/78/schlepp
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schlepp
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: schlepp
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/schlepp <> caves-1623/78/schlepp
+[<Cave: 1623-78>]
+> > > > > LEGS: 23 (previous: 8136, now:8159)
+> > > > - Include path found, including - caves-1623/78/igramul
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/igramul
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: igramul
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/igramul <> caves-1623/78/igramul
+[<Cave: 1623-78>]
+> > > > > LEGS: 31 (previous: 8159, now:8190)
+> > > > - Include path found, including - caves-1623/78/spazier
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/spazier
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: spazier
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/spazier <> caves-1623/78/spazier
+[<Cave: 1623-78>]
+> > > > > LEGS: 61 (previous: 8190, now:8251)
+> > > > - Include path found, including - caves-1623/78/galakt
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/galakt
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: galakt
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/galakt <> caves-1623/78/galakt
+[<Cave: 1623-78>]
+> > > > > LEGS: 84 (previous: 8251, now:8335)
+> > > > - Include path found, including - caves-1623/78/steinbl
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/steinbl
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: steinbl
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/steinbl <> caves-1623/78/steinbl
+[<Cave: 1623-78>]
+> > > > > LEGS: 20 (previous: 8335, now:8355)
+> > > > - Include path found, including - caves-1623/78/rausch
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/rausch
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: rausch
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/rausch <> caves-1623/78/rausch
+[<Cave: 1623-78>]
+> > > > > LEGS: 27 (previous: 8355, now:8382)
+> > > > - Include path found, including - caves-1623/78/comeback
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/comeback
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for: comeback
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/comeback <> caves-1623/78/comeback
+[<Cave: 1623-78>]
+> > > > > LEGS: 39 (previous: 8382, now:8421)
+> > > > LEGS: 1156 (previous: 7265, now:8421)
+> > > - Include path found, including - caves-1623/87/87
+> > > - Match in DB (i) for cave 1623-87.
+[]
+> > > > - MEM:48.44140625 Reading. parent:kataster/1623 <> caves-1623/87/87
+[]
+> > > > - Begin found for: 87
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/87/87 <> caves-1623/87/87
+[]
+> > > > LEGS: 48 (previous: 8421, now:8469)
+> > > - Include path found, including - caves-1623/88/88
+> > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > - MEM:48.51171875 Reading. parent:kataster/1623 <> caves-1623/88/88
+[<Cave: 1623-88>]
+> > > > - Begin found for: 88
+> > > > > - MEM:48.5234375 Reading. parent:caves-1623/88/88 <> caves-1623/88/88
+[<Cave: 1623-88>]
+> > > > - Include path found, including - caves-1623/88/lerche1
+> > > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > > - MEM:48.55859375 Reading. parent:caves-1623/88/88 <> caves-1623/88/lerche1
+[<Cave: 1623-88>]
+[<Cave: 1623-88>]
+> > > > > - Begin found for: lerche1
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/88/lerche1 <> caves-1623/88/lerche1
+[<Cave: 1623-88>]
+> > > > > LEGS: 214 (previous: 8469, now:8683)
+> > > > - Include path found, including - caves-1623/88/sophy
+> > > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/88/88 <> caves-1623/88/sophy
+[<Cave: 1623-88>]
+[<Cave: 1623-88>]
+> > > > > - Begin found for: sophy
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/88/sophy <> caves-1623/88/sophy
+[<Cave: 1623-88>]
+> > > > > LEGS: 7 (previous: 8683, now:8690)
+> > > > LEGS: 221 (previous: 8469, now:8690)
+> > > - Include path found, including - caves-1623/115/115
+> > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > - MEM:48.609375 Reading. parent:kataster/1623 <> caves-1623/115/115
+[<Cave: 1623-115>]
+> > > > - Begin found for: 115
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/115
+[<Cave: 1623-115>]
+> > > > - Include path found, including - caves-1623/115/115eing
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/115eing
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: 115eing
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115eing <> caves-1623/115/115eing
+[<Cave: 1623-115>]
+> > > > > LEGS: 112 (previous: 8690, now:8802)
+> > > > - Include path found, including - caves-1623/115/nutzlos
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/nutzlos
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: nutzlos
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/nutzlos <> caves-1623/115/nutzlos
+[<Cave: 1623-115>]
+> > > > > LEGS: 24 (previous: 8802, now:8826)
+> > > > - Include path found, including - caves-1623/115/babylon
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/babylon
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: babylon
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/babylon <> caves-1623/115/babylon
+[<Cave: 1623-115>]
+> > > > > LEGS: 71 (previous: 8826, now:8897)
+> > > > - Include path found, including - caves-1623/115/115haupt
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/115haupt
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: 115haupt
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115haupt <> caves-1623/115/115haupt
+[<Cave: 1623-115>]
+> > > > > LEGS: 32 (previous: 8897, now:8929)
+> > > > - Include path found, including - caves-1623/115/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/purgatory
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: purgatory
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/purgatory <> caves-1623/115/purgatory
+[<Cave: 1623-115>]
+> > > > > LEGS: 74 (previous: 8929, now:9003)
+> > > > - Include path found, including - caves-1623/115/babywind
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/babywind
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: babywind
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/babywind <> caves-1623/115/babywind
+[<Cave: 1623-115>]
+> > > > > LEGS: 45 (previous: 9003, now:9048)
+> > > > - Include path found, including - caves-1623/115/nebukad
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/nebukad
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: nebukad
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/nebukad <> caves-1623/115/nebukad
+[<Cave: 1623-115>]
+> > > > > LEGS: 36 (previous: 9048, now:9084)
+> > > > - Include path found, including - caves-1623/115/dartford
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/dartford
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: dartford
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/dartford <> caves-1623/115/dartford
+[<Cave: 1623-115>]
+> > > > > LEGS: 52 (previous: 9084, now:9136)
+> > > > - Include path found, including - caves-1623/115/koelndom
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/koelndom
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: koelndom
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/koelndom <> caves-1623/115/koelndom
+[<Cave: 1623-115>]
+> > > > > LEGS: 51 (previous: 9136, now:9187)
+> > > > - Include path found, including - caves-1623/115/confluence
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/confluence
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: confluence
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/confluence <> caves-1623/115/confluence
+[<Cave: 1623-115>]
+> > > > > LEGS: 38 (previous: 9187, now:9225)
+> > > > - Include path found, including - caves-1623/115/cucc/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/cucc/purgatory
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: cuccpurgatory
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/cucc/purgatory <> caves-1623/115/cucc/purgatory
+[<Cave: 1623-115>]
+> > > > > LEGS: 25 (previous: 9225, now:9250)
+> > > > - Include path found, including - caves-1623/115/115rest
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/115rest
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for: 115rest
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/115rest
+[<Cave: 1623-115>]
+> > > > > - Include path found, including - caves-1623/115/cucc/stream
+> > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/stream
+[<Cave: 1623-115>]
+> > > > > > - Include path found, including - caves-1623/115/cucc/12foot
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/12foot
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for: 12foot
+> > > > > > > > - MEM:48.61328125 Reading. parent:caves-1623/115/cucc/12foot <> caves-1623/115/cucc/12foot
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 22 (previous: 9250, now:9272)
+> > > > > > - Include path found, including - caves-1623/115/cucc/confluence
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.6171875 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/confluence
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for: confluence
+> > > > > > > > - MEM:48.625 Reading. parent:caves-1623/115/cucc/confluence <> caves-1623/115/cucc/confluence
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 59 (previous: 9272, now:9331)
+> > > > > > - Include path found, including - caves-1623/115/cucc/commando
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.62890625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/commando
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for: commando
+> > > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/cucc/commando <> caves-1623/115/cucc/commando
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 86 (previous: 9331, now:9417)
+> > > > > > - Include path found, including - caves-1623/115/cucc/orgasm
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/orgasm
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for: orgasm
+> > > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/cucc/orgasm <> caves-1623/115/cucc/orgasm
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 65 (previous: 9417, now:9482)
+> > > > > LEGS: 232 (previous: 9250, now:9482)
+> > > > LEGS: 792 (previous: 8690, now:9482)
+> > > - Include path found, including - caves-1623/142/142
+> > > - Match in DB (i) for cave 1623-142.
+[<Cave: 1623-142>]
+> > > > - MEM:48.640625 Reading. parent:kataster/1623 <> caves-1623/142/142
+[<Cave: 1623-142>]
+> > > > - Begin found for: 142
+> > > > > - MEM:48.65625 Reading. parent:caves-1623/142/142 <> caves-1623/142/142
+[<Cave: 1623-142>]
+> > > > LEGS: 124 (previous: 9482, now:9606)
+> > > - Include path found, including - caves-1623/143/143
+> > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > - MEM:48.6640625 Reading. parent:kataster/1623 <> caves-1623/143/143
+[<Cave: 1623-143>]
+> > > > - Begin found for: 143
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/143
+[<Cave: 1623-143>]
+> > > > - Include path found, including - caves-1623/143/canyon
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/canyon
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: canyon
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/canyon <> caves-1623/143/canyon
+[<Cave: 1623-143>]
+> > > > > LEGS: 93 (previous: 9606, now:9699)
+> > > > - Include path found, including - caves-1623/143/brauner
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/brauner
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: brauner
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/brauner <> caves-1623/143/brauner
+[<Cave: 1623-143>]
+> > > > > LEGS: 15 (previous: 9699, now:9714)
+> > > > - Include path found, including - caves-1623/143/flammen
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/flammen
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: flammen
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/flammen <> caves-1623/143/flammen
+[<Cave: 1623-143>]
+> > > > > LEGS: 16 (previous: 9714, now:9730)
+> > > > - Include path found, including - caves-1623/143/haupt
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/haupt
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: haupt
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/haupt <> caves-1623/143/haupt
+[<Cave: 1623-143>]
+> > > > > LEGS: 26 (previous: 9730, now:9756)
+> > > > - Include path found, including - caves-1623/143/iqcanyon
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/iqcanyon
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: iqcanyon
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/iqcanyon <> caves-1623/143/iqcanyon
+[<Cave: 1623-143>]
+> > > > > LEGS: 42 (previous: 9756, now:9798)
+> > > > - Include path found, including - caves-1623/143/kuhwiese
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: kuhwiese
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: 22a
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+> > > > > LEGS: 43 (previous: 9798, now:9841)
+> > > > - Include path found, including - caves-1623/143/rampe
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/rampe
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: rampe
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/rampe <> caves-1623/143/rampe
+[<Cave: 1623-143>]
+> > > > > LEGS: 53 (previous: 9841, now:9894)
+> > > > - Include path found, including - caves-1623/143/rutsche
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/rutsche
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: rutsche
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/rutsche <> caves-1623/143/rutsche
+[<Cave: 1623-143>]
+> > > > > LEGS: 26 (previous: 9894, now:9920)
+> > > > - Include path found, including - caves-1623/143/doppelrohr
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/doppelrohr
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: doppelrohr
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/doppelrohr <> caves-1623/143/doppelrohr
+[<Cave: 1623-143>]
+> > > > > LEGS: 28 (previous: 9920, now:9948)
+> > > > - Include path found, including - caves-1623/143/sophy
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/sophy
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: sophy
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/sophy <> caves-1623/143/sophy
+[<Cave: 1623-143>]
+> > > > > LEGS: 12 (previous: 9948, now:9960)
+> > > > - Include path found, including - caves-1623/143/hades
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/hades
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: hades
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/hades <> caves-1623/143/hades
+[<Cave: 1623-143>]
+> > > > > LEGS: 25 (previous: 9960, now:9985)
+> > > > - Include path found, including - caves-1623/143/troja
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/troja
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: troja
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/troja <> caves-1623/143/troja
+[<Cave: 1623-143>]
+> > > > > LEGS: 49 (previous: 9985, now:10034)
+> > > > - Include path found, including - caves-1623/143/hdp
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/hdp
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: hdp
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/hdp <> caves-1623/143/hdp
+[<Cave: 1623-143>]
+> > > > > LEGS: 7 (previous: 10034, now:10041)
+> > > > - Include path found, including - caves-1623/143/soich
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/soich
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for: soich
+> > > > > > - MEM:48.6640625 Reading. parent:caves-1623/143/soich <> caves-1623/143/soich
+[<Cave: 1623-143>]
+> > > > > LEGS: 6 (previous: 10041, now:10047)
+> > > > LEGS: 441 (previous: 9606, now:10047)
+> > > - Include path found, including - caves-1623/144/144
+> > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > - MEM:48.6640625 Reading. parent:kataster/1623 <> caves-1623/144/144
+[<Cave: 1623-144>]
+> > > > - Begin found for: 144
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/144/144 <> caves-1623/144/144
+[<Cave: 1623-144>]
+> > > > - Include path found, including - caves-1623/144/144ein
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6640625 Reading. parent:caves-1623/144/144 <> caves-1623/144/144ein
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: 144ein
+> > > > > > - MEM:48.66796875 Reading. parent:caves-1623/144/144ein <> caves-1623/144/144ein
+[<Cave: 1623-144>]
+> > > > > LEGS: 26 (previous: 10047, now:10073)
+> > > > - Include path found, including - caves-1623/144/144horiz
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/144/144 <> caves-1623/144/144horiz
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: 144horiz
+> > > > > > - MEM:48.70703125 Reading. parent:caves-1623/144/144horiz <> caves-1623/144/144horiz
+[<Cave: 1623-144>]
+> > > > > LEGS: 46 (previous: 10073, now:10119)
+> > > > - Include path found, including - caves-1623/144/144verb
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.70703125 Reading. parent:caves-1623/144/144 <> caves-1623/144/144verb
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: 144verb
+> > > > > > - MEM:48.70703125 Reading. parent:caves-1623/144/144verb <> caves-1623/144/144verb
+[<Cave: 1623-144>]
+> > > > > LEGS: 49 (previous: 10119, now:10168)
+> > > > - Include path found, including - caves-1623/144/America
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.70703125 Reading. parent:caves-1623/144/144 <> caves-1623/144/America
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: america
+> > > > > > - MEM:48.7109375 Reading. parent:caves-1623/144/America <> caves-1623/144/America
+[<Cave: 1623-144>]
+> > > > > LEGS: 117 (previous: 10168, now:10285)
+> > > > - Include path found, including - caves-1623/144/cuccrest
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/144/144 <> caves-1623/144/cuccrest
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: cuccrest
+> > > > > > - MEM:48.71875 Reading. parent:caves-1623/144/cuccrest <> caves-1623/144/cuccrest
+[<Cave: 1623-144>]
+> > > > > LEGS: 24 (previous: 10285, now:10309)
+> > > > - Include path found, including - caves-1623/144/ElfUhr
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/144/144 <> caves-1623/144/ElfUhr
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: elfuhr
+> > > > > > - MEM:48.71875 Reading. parent:caves-1623/144/ElfUhr <> caves-1623/144/ElfUhr
+[<Cave: 1623-144>]
+> > > > > LEGS: 18 (previous: 10309, now:10327)
+> > > > - Include path found, including - caves-1623/144/gang
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/144/144 <> caves-1623/144/gang
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: gang
+> > > > > > - MEM:48.71875 Reading. parent:caves-1623/144/gang <> caves-1623/144/gang
+[<Cave: 1623-144>]
+> > > > > LEGS: 88 (previous: 10327, now:10415)
+> > > > - Include path found, including - caves-1623/144/Meander
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/144/144 <> caves-1623/144/Meander
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: meander
+> > > > > > - MEM:48.71875 Reading. parent:caves-1623/144/Meander <> caves-1623/144/Meander
+[<Cave: 1623-144>]
+> > > > > LEGS: 98 (previous: 10415, now:10513)
+> > > > - Include path found, including - caves-1623/144/me2
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/144/144 <> caves-1623/144/me2
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for: me2
+> > > > > > - MEM:48.71875 Reading. parent:caves-1623/144/me2 <> caves-1623/144/me2
+[<Cave: 1623-144>]
+> > > > > LEGS: 15 (previous: 10513, now:10528)
+> > > > LEGS: 481 (previous: 10047, now:10528)
+> > > - Include path found, including - caves-1623/158/158
+> > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > - MEM:48.71875 Reading. parent:kataster/1623 <> caves-1623/158/158
+[<Cave: 1623-158>]
+> > > > - Begin found for: 158
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/158/158 <> caves-1623/158/158
+[<Cave: 1623-158>]
+> > > > - Include path found, including - caves-1623/158/nagellackentferner
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.71875 Reading. parent:caves-1623/158/158 <> caves-1623/158/nagellackentferner
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for: nagellackentferner
+> > > > > > - MEM:48.72265625 Reading. parent:caves-1623/158/nagellackentferner <> caves-1623/158/nagellackentferner
+[<Cave: 1623-158>]
+> > > > > LEGS: 88 (previous: 10528, now:10616)
+> > > > - Include path found, including - caves-1623/158/bigberta
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/158 <> caves-1623/158/bigberta
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for: bigberta
+> > > > > > - MEM:48.73046875 Reading. parent:caves-1623/158/bigberta <> caves-1623/158/bigberta
+[<Cave: 1623-158>]
+> > > > > LEGS: 71 (previous: 10616, now:10687)
+> > > > - Include path found, including - caves-1623/158/fruttidelmare
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.73046875 Reading. parent:caves-1623/158/158 <> caves-1623/158/fruttidelmare
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for: fruttidelmare
+> > > > > > - MEM:48.73046875 Reading. parent:caves-1623/158/fruttidelmare <> caves-1623/158/fruttidelmare
+[<Cave: 1623-158>]
+> > > > > LEGS: 40 (previous: 10687, now:10727)
+> > > > - Include path found, including - caves-1623/158/lasvegas
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.734375 Reading. parent:caves-1623/158/158 <> caves-1623/158/lasvegas
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for: lasvegas
+> > > > > > - MEM:48.7421875 Reading. parent:caves-1623/158/lasvegas <> caves-1623/158/lasvegas
+[<Cave: 1623-158>]
+> > > > > LEGS: 91 (previous: 10727, now:10818)
+> > > > LEGS: 290 (previous: 10528, now:10818)
+> > > - Include path found, including - caves-1623/216/216
+> > > - Match in DB (i) for cave 1623-216.
+[<Cave: 1623-216>]
+> > > > - MEM:48.74609375 Reading. parent:kataster/1623 <> caves-1623/216/216
+[<Cave: 1623-216>]
+> > > > - Begin found for: 216
+> > > > > - MEM:48.74609375 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+[<Cave: 1623-216>]
+[<Cave: 1623-216>]
+> > > > - Begin found for: ent
+> > > > > - MEM:48.74609375 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+[<Cave: 1623-216>]
+> > > > LEGS: 1 (previous: 10835, now:10836)
+> > - Include path found, including - caves-1623/caves-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-north
+> > > - MEM:48.74609375 Reading. parent:kataster/1623 <> caves-1623/caves-smk-north
+> > > - Include path found, including - caves-1623/links-smk-north
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > > - MEM:48.74609375 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > > - Include path found, including - caves-1623/links204-258
+> > > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > > - MEM:48.74609375 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > > - Include path found, including - caves-1623/links161-204
+> > > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > > - MEM:48.74609375 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > > - Include path found, including - caves-1623/83/83
+> > > - Match in DB (i) for cave 1623-83.
+[<Cave: 1623-83>]
+> > > > - MEM:48.74609375 Reading. parent:kataster/1623 <> caves-1623/83/83
+[<Cave: 1623-83>]
+> > > > - Begin found for: 107entsingleleg
+> > > > > - MEM:48.74609375 Reading. parent:caves-1623/83/83 <> caves-1623/83/83
+[<Cave: 1623-83>]
+> > > > LEGS: 1 (previous: 10836, now:10837)
+> > > - Include path found, including - caves-1623/107/107
+> > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > - MEM:48.796875 Reading. parent:kataster/1623 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > - Begin found for: 107
+> > > > > - MEM:48.81640625 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > - Include path found, including - caves-1623/107/ent
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.85546875 Reading. parent:caves-1623/107/107 <> caves-1623/107/ent
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for: ent
+> > > > > > - MEM:48.8984375 Reading. parent:caves-1623/107/ent <> caves-1623/107/ent
+[<Cave: 1623-107>]
+> > > > > LEGS: 20 (previous: 10837, now:10857)
+> > > > - Include path found, including - caves-1623/107/fake
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.91796875 Reading. parent:caves-1623/107/107 <> caves-1623/107/fake
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for: fake
+> > > > > > - MEM:48.921875 Reading. parent:caves-1623/107/fake <> caves-1623/107/fake
+[<Cave: 1623-107>]
+> > > > > LEGS: 0 (previous: 10857, now:10857)
+> > > > - Include path found, including - caves-1623/107/ext
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.921875 Reading. parent:caves-1623/107/107 <> caves-1623/107/ext
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for: ext
+> > > > > > - MEM:48.9296875 Reading. parent:caves-1623/107/ext <> caves-1623/107/ext
+[<Cave: 1623-107>]
+> > > > > LEGS: 20 (previous: 10857, now:10877)
+[<Cave: 1623-107>]
+> > > > - Begin found for: connectingleg
+> > > > > - MEM:48.9296875 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > LEGS: 1 (previous: 10877, now:10878)
+> > > - Include path found, including - caves-1623/136/136-correct
+> > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > - MEM:48.9296875 Reading. parent:kataster/1623 <> caves-1623/136/136-correct
+[<Cave: 1623-136>]
+> > > > - Begin found for: 136
+> > > > > - MEM:48.9296875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/136-correct
+[<Cave: 1623-136>]
+> > > > - Include path found, including - caves-1623/136/main
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.9296875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/main
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for: entrance
+> > > > > > - MEM:48.9296875 Reading. parent:caves-1623/136/main <> caves-1623/136/main
+[<Cave: 1623-136>]
+> > > > > LEGS: 32 (previous: 10878, now:10910)
+> > > > - Include path found, including - caves-1623/136/ents
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/ents
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for: morent
+> > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/ents <> caves-1623/136/ents
+[<Cave: 1623-136>]
+> > > > > LEGS: 11 (previous: 10910, now:10921)
+> > > > - Include path found, including - caves-1623/136/chile/chile
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/chile/chile
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for: chile
+> > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/chile
+[<Cave: 1623-136>]
+> > > > > - Include path found, including - caves-1623/136/chile/oatso
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/oatso
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: oatso
+> > > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/oatso <> caves-1623/136/chile/oatso
+[<Cave: 1623-136>]
+> > > > > > LEGS: 13 (previous: 10921, now:10934)
+> > > > > - Include path found, including - caves-1623/136/chile/ovrshoot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: overshoot
+> > > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: 1
+> > > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 10 (previous: 10934, now:10944)
+> > > > > - Include path found, including - caves-1623/136/chile/lostspce
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: lostinspace
+> > > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: 1
+> > > > > > > - MEM:48.93359375 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+> > > > > > LEGS: 13 (previous: 10944, now:10957)
+> > > > > - Include path found, including - caves-1623/136/chile/windybot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/windybot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: windybottom
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/windybot <> caves-1623/136/chile/windybot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 4 (previous: 10957, now:10961)
+> > > > > - Include path found, including - caves-1623/136/chile/breeze
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/breeze
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: breezethrough
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/breeze <> caves-1623/136/chile/breeze
+[<Cave: 1623-136>]
+> > > > > > LEGS: 9 (previous: 10961, now:10970)
+> > > > > - Include path found, including - caves-1623/136/chile/watershoot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/watershoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: watershoot
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/watershoot <> caves-1623/136/chile/watershoot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 12 (previous: 10970, now:10982)
+> > > > > - Include path found, including - caves-1623/136/chile/leftroute
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/leftroute
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: leftroute
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/leftroute <> caves-1623/136/chile/leftroute
+[<Cave: 1623-136>]
+> > > > > > LEGS: 7 (previous: 10982, now:10989)
+> > > > > - Include path found, including - caves-1623/136/chile/runnyb
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/runnyb
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: runnybowels
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/runnyb <> caves-1623/136/chile/runnyb
+[<Cave: 1623-136>]
+> > > > > > LEGS: 38 (previous: 10989, now:11027)
+> > > > > - Include path found, including - caves-1623/136/chile/carpetworld
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/carpetworld
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: carpetworld
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/carpetworld <> caves-1623/136/chile/carpetworld
+[<Cave: 1623-136>]
+> > > > > > LEGS: 7 (previous: 11027, now:11034)
+> > > > > - Include path found, including - caves-1623/136/chile/pebbled
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/pebbled
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: pebbled1
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/pebbled <> caves-1623/136/chile/pebbled
+[<Cave: 1623-136>]
+> > > > > > LEGS: 8 (previous: 11034, now:11042)
+> > > > > - Include path found, including - caves-1623/136/chile/left2route
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/left2route
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: left2route
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/left2route <> caves-1623/136/chile/left2route
+[<Cave: 1623-136>]
+> > > > > > LEGS: 9 (previous: 11042, now:11051)
+> > > > > - Include path found, including - caves-1623/136/chile/aven
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: aven
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/aven <> caves-1623/136/chile/aven
+[<Cave: 1623-136>]
+> > > > > > LEGS: 4 (previous: 11051, now:11055)
+> > > > > - Include path found, including - caves-1623/136/chile/aven2
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven2
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for: aven2
+> > > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/chile/aven2 <> caves-1623/136/chile/aven2
+[<Cave: 1623-136>]
+> > > > > > LEGS: 3 (previous: 11055, now:11058)
+> > > > > LEGS: 137 (previous: 10921, now:11058)
+> > > > - Include path found, including - caves-1623/136/forbiden
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.9375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/forbiden
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for: hotmc
+> > > > > > - MEM:48.9375 Reading. parent:caves-1623/136/forbiden <> caves-1623/136/forbiden
+[<Cave: 1623-136>]
+> > > > > LEGS: 28 (previous: 11058, now:11086)
+> > > > - Include path found, including - caves-1623/136/gravel
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.9921875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/gravel
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for: gravel
+> > > > > > - MEM:48.9921875 Reading. parent:caves-1623/136/gravel <> caves-1623/136/gravel
+[<Cave: 1623-136>]
+> > > > > LEGS: 21 (previous: 11086, now:11107)
+> > > > - Include path found, including - caves-1623/136/footconn
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.9921875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/footconn
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for: footconn
+> > > > > > - MEM:48.9921875 Reading. parent:caves-1623/136/footconn <> caves-1623/136/footconn
+[<Cave: 1623-136>]
+> > > > > LEGS: 5 (previous: 11107, now:11112)
+> > > > LEGS: 234 (previous: 10878, now:11112)
+> > > - Include path found, including - caves-1623/161/161
+> > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > - MEM:48.9921875 Reading. parent:kataster/1623 <> caves-1623/161/161
+[<Cave: 1623-161>]
+> > > > - Begin found for: 161
+> > > > > - MEM:48.9921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/161
+[<Cave: 1623-161>]
+> > > > - Include path found, including - caves-1623/161/top/alltop
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:48.9921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/alltop
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/top/entrance
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:48.9921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/entrance
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: entrance
+> > > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/top/entrance <> caves-1623/161/top/entrance
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 11112, now:11127)
+> > > > > - Include path found, including - caves-1623/161/top/oldp2
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/oldp2
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: oldp2
+> > > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/top/oldp2 <> caves-1623/161/top/oldp2
+[<Cave: 1623-161>]
+> > > > > > LEGS: 3 (previous: 11127, now:11130)
+> > > > > - Include path found, including - caves-1623/161/top/snot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/snot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: snot
+> > > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/top/snot <> caves-1623/161/top/snot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11130, now:11154)
+> > > > - Include path found, including - caves-1623/161/lhr/alllhr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/alllhr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/lhr/lhroute
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/lhroute
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: lh
+> > > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/lhr/lhroute <> caves-1623/161/lhr/lhroute
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 11154, now:11177)
+> > > > > - Include path found, including - caves-1623/161/lhr/ragnarok
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.06640625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ragnarok
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: ragnarok
+> > > > > > > - MEM:49.06640625 Reading. parent:caves-1623/161/lhr/ragnarok <> caves-1623/161/lhr/ragnarok
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11177, now:11188)
+> > > > > - Include path found, including - caves-1623/161/lhr/drunk
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.06640625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: drunk
+> > > > > > > - MEM:49.07421875 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 1
+> > > > > > > - MEM:49.07421875 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11188, now:11200)
+> > > > > - Include path found, including - caves-1623/161/lhr/gparty
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: gparty
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 1st
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 11200, now:11210)
+> > > > > - Include path found, including - caves-1623/161/lhr/powerstn
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/powerstn
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: powerstn
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/powerstn <> caves-1623/161/lhr/powerstn
+[<Cave: 1623-161>]
+> > > > > > LEGS: 29 (previous: 11210, now:11239)
+> > > > > - Include path found, including - caves-1623/161/lhr/arrow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: ptchrp
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 1
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11239, now:11263)
+> > > > > - Include path found, including - caves-1623/161/lhr/ambi
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.09765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: ambi
+> > > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 11263, now:11271)
+> > > > - Include path found, including - caves-1623/161/rhr/allrhr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/allrhr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/rhr/chunnel
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/chunnel
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: chunnel
+> > > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/rhr/chunnel <> caves-1623/161/rhr/chunnel
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 11271, now:11292)
+> > > > > - Include path found, including - caves-1623/161/rhr/bladerun
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/bladerun
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: bladerun
+> > > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/rhr/bladerun <> caves-1623/161/rhr/bladerun
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 11292, now:11312)
+> > > > > - Include path found, including - caves-1623/161/rhr/vesta
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.1015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/vesta
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: vesta
+> > > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/rhr/vesta <> caves-1623/161/rhr/vesta
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11312, now:11324)
+> > > > > - Include path found, including - caves-1623/161/rhr/pog
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pog
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: potgold
+> > > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/rhr/pog <> caves-1623/161/rhr/pog
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 11324, now:11362)
+> > > > > - Include path found, including - caves-1623/161/rhr/pitpend
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pitpend
+> > > > > > > - MEM:49.11328125 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11362, now:11369)
+> > > > > - Include path found, including - caves-1623/161/rhr/tblocks
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/tblocks
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: knossos
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/tblocks <> caves-1623/161/rhr/tblocks
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11369, now:11382)
+> > > > > - Include path found, including - caves-1623/161/rhr/olympus
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: olympus
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11382, now:11393)
+> > > > > - Include path found, including - caves-1623/161/rhr/dreamtme
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/dreamtme
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: boltconn2
+> > > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/rhr/dreamtme <> caves-1623/161/rhr/dreamtme
+[<Cave: 1623-161>]
+> > > > > > LEGS: 2 (previous: 11393, now:11395)
+> > > > > - Include path found, including - caves-1623/161/rhr/deepslp
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/deepslp
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: deepsleep
+> > > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/rhr/deepslp <> caves-1623/161/rhr/deepslp
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11395, now:11407)
+> > > > > - Include path found, including - caves-1623/161/rhr/gnome
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/gnome
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: gnome
+> > > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/rhr/gnome <> caves-1623/161/rhr/gnome
+[<Cave: 1623-161>]
+> > > > > > LEGS: 27 (previous: 11407, now:11434)
+> > > > > - Include path found, including - caves-1623/161/rhr/notwhat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/notwhat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: notwhat
+> > > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/rhr/notwhat <> caves-1623/161/rhr/notwhat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 51 (previous: 11434, now:11485)
+> > > > > - Include path found, including - caves-1623/161/rhr/nights
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/nights
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: nightsoil
+> > > > > > > - MEM:49.2109375 Reading. parent:caves-1623/161/rhr/nights <> caves-1623/161/rhr/nights
+[<Cave: 1623-161>]
+> > > > > > LEGS: 43 (previous: 11485, now:11528)
+> > > > > - Include path found, including - caves-1623/161/rhr/oral
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.21875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/oral
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: oral
+> > > > > > > - MEM:49.21875 Reading. parent:caves-1623/161/rhr/oral <> caves-1623/161/rhr/oral
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 11528, now:11547)
+> > > > > - Include path found, including - caves-1623/161/rhr/splat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.25390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/splat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: splattery
+> > > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/rhr/splat <> caves-1623/161/rhr/splat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 11547, now:11573)
+> > > > > - Include path found, including - caves-1623/161/rhr/revenge
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/revenge
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: revenge
+> > > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/rhr/revenge <> caves-1623/161/rhr/revenge
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11573, now:11585)
+> > > > > - Include path found, including - caves-1623/161/rhr/doubting
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/doubting
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: doubting
+> > > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/rhr/doubting <> caves-1623/161/rhr/doubting
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 11585, now:11623)
+> > > > - Include path found, including - caves-1623/161/north/allnth
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/allnth
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/north/yapate
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/yapate
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: yapate
+> > > > > > > - MEM:49.26171875 Reading. parent:caves-1623/161/north/yapate <> caves-1623/161/north/yapate
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 11623, now:11639)
+> > > > > - Include path found, including - caves-1623/161/north/flapjack
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.26171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flapjack
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: flapjack
+> > > > > > > - MEM:49.26171875 Reading. parent:caves-1623/161/north/flapjack <> caves-1623/161/north/flapjack
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 11639, now:11664)
+> > > > > - Include path found, including - caves-1623/161/north/toomuch
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: toomuch
+> > > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.28125 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 11664, now:11683)
+> > > > > - Include path found, including - caves-1623/161/north/flatbatt
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: fbs
+> > > > > > > - MEM:49.2890625 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.2890625 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 11683, now:11706)
+> > > > > - Include path found, including - caves-1623/161/north/dehy
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/dehy
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: cfn
+> > > > > > > - MEM:49.29296875 Reading. parent:caves-1623/161/north/dehy <> caves-1623/161/north/dehy
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 11706, now:11721)
+> > > > > - Include path found, including - caves-1623/161/north/gob
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.296875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: gob
+> > > > > > > - MEM:49.296875 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: top
+> > > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+> > > > > > LEGS: 5 (previous: 11721, now:11726)
+> > > > > - Include path found, including - caves-1623/161/north/burble
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/burble
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: burblcrawl
+> > > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/north/burble <> caves-1623/161/north/burble
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 11726, now:11744)
+> > > > > - Include path found, including - caves-1623/161/north/pipeless
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/pipeless
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: beeconn
+> > > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/north/pipeless <> caves-1623/161/north/pipeless
+[<Cave: 1623-161>]
+> > > > > > LEGS: 1 (previous: 11744, now:11745)
+> > > > > - Include path found, including - caves-1623/161/north/3wisemen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/3wisemen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 3wisemen
+> > > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/north/3wisemen <> caves-1623/161/north/3wisemen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11745, now:11752)
+> > > > > - Include path found, including - caves-1623/161/north/further
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/further
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: further
+> > > > > > > - MEM:49.3046875 Reading. parent:caves-1623/161/north/further <> caves-1623/161/north/further
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11752, now:11776)
+> > > > > - Include path found, including - caves-1623/161/north/anglia
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/anglia
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: anglia
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/anglia <> caves-1623/161/north/anglia
+[<Cave: 1623-161>]
+> > > > > > LEGS: 28 (previous: 11776, now:11804)
+> > > > > - Include path found, including - caves-1623/161/north/siberia
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/siberia
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: siberia
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/siberia <> caves-1623/161/north/siberia
+[<Cave: 1623-161>]
+> > > > > > LEGS: 34 (previous: 11804, now:11838)
+> > > > > - Include path found, including - caves-1623/161/north/sep
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: sep
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: teama
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11838, now:11851)
+> > > > > - Include path found, including - caves-1623/161/north/midnight
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/midnight
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: midnght1
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/midnight <> caves-1623/161/north/midnight
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11851, now:11864)
+> > > > > - Include path found, including - caves-1623/161/north/logic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/logic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: logic
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/logic <> caves-1623/161/north/logic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 11864, now:11880)
+> > > > > - Include path found, including - caves-1623/161/north/psychost
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/psychost
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: psycho
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/psychost <> caves-1623/161/north/psychost
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 11880, now:11897)
+> > > > > - Include path found, including - caves-1623/161/north/clearas
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/clearas
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: clearas
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/clearas <> caves-1623/161/north/clearas
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 11897, now:11922)
+> > > > > - Include path found, including - caves-1623/161/north/bearbum
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bearbum
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: bearbum
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/bearbum <> caves-1623/161/north/bearbum
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11922, now:11931)
+> > > > > - Include path found, including - caves-1623/161/north/forgetmenot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/forgetmenot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: forgetmenot
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/forgetmenot <> caves-1623/161/north/forgetmenot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11931, now:11938)
+> > > > > - Include path found, including - caves-1623/161/north/solidrock
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/solidrock
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: solidrock
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/solidrock <> caves-1623/161/north/solidrock
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11938, now:11947)
+> > > > > - Include path found, including - caves-1623/161/north/direstraits
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/direstraits
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: direstraits
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/direstraits <> caves-1623/161/north/direstraits
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11947, now:11956)
+> > > > > - Include path found, including - caves-1623/161/north/satansitter
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/satansitter
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: satansitter
+> > > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/north/satansitter <> caves-1623/161/north/satansitter
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11956, now:11967)
+> > > > > - Include path found, including - caves-1623/161/north/naturalway
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: naturalway
+> > > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/north/naturalway <> caves-1623/161/north/naturalway
+[<Cave: 1623-161>]
+> > > > > > LEGS: 39 (previous: 11967, now:12006)
+> > > > > - Include path found, including - caves-1623/161/north/6milebottom
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/6milebottom
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 6milebottom
+> > > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/north/6milebottom <> caves-1623/161/north/6milebottom
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12006, now:12028)
+> > > > > - Include path found, including - caves-1623/161/north/sofaraway
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sofaraway
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: sofaraway
+> > > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/north/sofaraway <> caves-1623/161/north/sofaraway
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 12028, now:12036)
+> > > > > - Include path found, including - caves-1623/161/north/ironyoftime
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.33203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/ironyoftime
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: ironyoftime
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/ironyoftime <> caves-1623/161/north/ironyoftime
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12036, now:12043)
+> > > > > - Include path found, including - caves-1623/161/north/naturalway2
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway2
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: naturalway2
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/naturalway2 <> caves-1623/161/north/naturalway2
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 12043, now:12049)
+> > > > > - Include path found, including - caves-1623/161/north/oldmen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: oldmen
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/oldmen <> caves-1623/161/north/oldmen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 30 (previous: 12049, now:12079)
+> > > > > - Include path found, including - caves-1623/161/north/chocolateloops
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/chocolateloops
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: chocolateloops
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/chocolateloops <> caves-1623/161/north/chocolateloops
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 12079, now:12089)
+> > > > > - Include path found, including - caves-1623/161/north/mendip
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mendip
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: mendip
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/mendip <> caves-1623/161/north/mendip
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 12089, now:12100)
+> > > > > - Include path found, including - caves-1623/161/north/popcorn
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/popcorn
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: popcorn
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/popcorn <> caves-1623/161/north/popcorn
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12100, now:12112)
+> > > > > - Include path found, including - caves-1623/161/north/oldmensouth
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmensouth
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: oldmensouth
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/oldmensouth <> caves-1623/161/north/oldmensouth
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 12112, now:12123)
+> > > > > - Include path found, including - caves-1623/161/north/oldmenleft
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmenleft
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: oldmenleft
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/oldmenleft <> caves-1623/161/north/oldmenleft
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12123, now:12130)
+> > > > > - Include path found, including - caves-1623/161/north/mordor
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3984375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mordor
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: mordor
+> > > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/north/mordor <> caves-1623/161/north/mordor
+[<Cave: 1623-161>]
+> > > > > > LEGS: 35 (previous: 12130, now:12165)
+> > > > > - Include path found, including - caves-1623/161/north/bored
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bored
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: bored
+> > > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/north/bored <> caves-1623/161/north/bored
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 12165, now:12183)
+> > > > > - Include path found, including - caves-1623/161/north/stables
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/stables
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: stables
+> > > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/north/stables <> caves-1623/161/north/stables
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 12183, now:12221)
+> > > > > - Include path found, including - caves-1623/161/north/holeycow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/holeycow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: holeycow
+> > > > > > > - MEM:49.4140625 Reading. parent:caves-1623/161/north/holeycow <> caves-1623/161/north/holeycow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 56 (previous: 12221, now:12277)
+> > > > > - Include path found, including - caves-1623/161/north/blownout
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/blownout
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: blownout
+> > > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/north/blownout <> caves-1623/161/north/blownout
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12277, now:12303)
+> > > > > - Include path found, including - caves-1623/161/north/sauron
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sauron
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: sauron
+> > > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/north/sauron <> caves-1623/161/north/sauron
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12303, now:12312)
+> > > > > - Include path found, including - caves-1623/161/north/soilathon
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilathon
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: soilathon
+> > > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/north/soilathon <> caves-1623/161/north/soilathon
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 12312, now:12335)
+> > > > > - Include path found, including - caves-1623/161/north/wellypopper
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/wellypopper
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: wellypopper
+> > > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/north/wellypopper <> caves-1623/161/north/wellypopper
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12335, now:12357)
+> > > > > - Include path found, including - caves-1623/161/north/runnelnorth
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/runnelnorth
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: runnelnorth
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/runnelnorth <> caves-1623/161/north/runnelnorth
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12357, now:12383)
+> > > > > - Include path found, including - caves-1623/161/north/soilchute
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilchute
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: soilchute
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/soilchute <> caves-1623/161/north/soilchute
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12383, now:12390)
+> > > > > - Include path found, including - caves-1623/161/north/polkadot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/polkadot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: polkadot
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/polkadot <> caves-1623/161/north/polkadot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 12390, now:12407)
+> > > > > - Include path found, including - caves-1623/161/north/larchenrepublic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/larchenrepublic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: larchenrepublic
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/larchenrepublic <> caves-1623/161/north/larchenrepublic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 12407, now:12425)
+> > > > > - Include path found, including - caves-1623/161/north/bundestrasse
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bundestrasse
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: bundestrasse
+> > > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/north/bundestrasse <> caves-1623/161/north/bundestrasse
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12425, now:12451)
+> > > > > - Include path found, including - caves-1623/161/north/fbitw
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fbitw
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: fbitw
+> > > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/north/fbitw <> caves-1623/161/north/fbitw
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12451, now:12467)
+> > > > > - Include path found, including - caves-1623/161/north/fallingspike
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fallingspike
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: fallingspike
+> > > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/north/fallingspike <> caves-1623/161/north/fallingspike
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12467, now:12474)
+> > > > > - Include path found, including - caves-1623/161/north/qualitybelays
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/qualitybelays
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: quality
+> > > > > > > - MEM:49.4375 Reading. parent:caves-1623/161/north/qualitybelays <> caves-1623/161/north/qualitybelays
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12474, now:12486)
+> > > > - Include path found, including - caves-1623/161/france/allfr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/allfr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/france/adrian
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: adrian
+> > > > > > > - MEM:49.44921875 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 1
+> > > > > > > - MEM:49.45703125 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12486, now:12502)
+> > > > > - Include path found, including - caves-1623/161/france/btoc
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.45703125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/btoc
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: btoc
+> > > > > > > - MEM:49.45703125 Reading. parent:caves-1623/161/france/btoc <> caves-1623/161/france/btoc
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12502, now:12515)
+> > > > > - Include path found, including - caves-1623/161/france/vertfran
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.45703125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: france
+> > > > > > > - MEM:49.45703125 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: a
+> > > > > > > - MEM:49.46484375 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 12515, now:12525)
+> > > > > - Include path found, including - caves-1623/161/france/algeria
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/algeria
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: algeria
+> > > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/france/algeria <> caves-1623/161/france/algeria
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12525, now:12539)
+> > > > > - Include path found, including - caves-1623/161/france/orient
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/orient
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: orient
+> > > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/france/orient <> caves-1623/161/france/orient
+[<Cave: 1623-161>]
+> > > > > > LEGS: 30 (previous: 12539, now:12569)
+> > > > > - Include path found, including - caves-1623/161/france/missip
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/missip
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: missip
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/missip <> caves-1623/161/france/missip
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12569, now:12591)
+> > > > > - Include path found, including - caves-1623/161/france/toplo
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/toplo
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: toploader
+> > > > > > > - MEM:49.484375 Reading. parent:caves-1623/161/france/toplo <> caves-1623/161/france/toplo
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12591, now:12600)
+> > > > > - Include path found, including - caves-1623/161/france/browni
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.484375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/browni
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: brownie
+> > > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/france/browni <> caves-1623/161/france/browni
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12600, now:12607)
+> > > > > - Include path found, including - caves-1623/161/france/rocky
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/rocky
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: rocky
+> > > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/france/rocky <> caves-1623/161/france/rocky
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12607, now:12620)
+> > > > > - Include path found, including - caves-1623/161/france/iidriv
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/iidriv
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: infinite
+> > > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/france/iidriv <> caves-1623/161/france/iidriv
+[<Cave: 1623-161>]
+> > > > > > LEGS: 27 (previous: 12620, now:12647)
+> > > > > - Include path found, including - caves-1623/161/france/bisfac
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/bisfac
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: ginger
+> > > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/france/bisfac <> caves-1623/161/france/bisfac
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 12647, now:12672)
+> > > > > - Include path found, including - caves-1623/161/france/sultans
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/sultans
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: sultans
+> > > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/france/sultans <> caves-1623/161/france/sultans
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12672, now:12681)
+> > > > > - Include path found, including - caves-1623/161/france/regurg
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/regurg
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: regurg
+> > > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/france/regurg <> caves-1623/161/france/regurg
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12681, now:12688)
+> > > > > - Include path found, including - caves-1623/161/france/room
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/room
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: room
+> > > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/france/room <> caves-1623/161/france/room
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 12688, now:12708)
+> > > > > - Include path found, including - caves-1623/161/france/irrig
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/irrig
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: irrig
+> > > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/france/irrig <> caves-1623/161/france/irrig
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12708, now:12721)
+> > > > - Include path found, including - caves-1623/161/triassic/alltrias
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/alltrias
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/triassic/triassic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: triassic
+> > > > > > > - MEM:49.5625 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.578125 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 41 (previous: 12721, now:12762)
+> > > > > - Include path found, including - caves-1623/161/triassic/palace
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/palace
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: palace
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/palace <> caves-1623/161/triassic/palace
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 12762, now:12768)
+> > > > > - Include path found, including - caves-1623/161/triassic/teapot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/teapot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: teapot
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/teapot <> caves-1623/161/triassic/teapot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 12768, now:12788)
+> > > > > - Include path found, including - caves-1623/161/triassic/snug
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/snug
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: snug
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/snug <> caves-1623/161/triassic/snug
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12788, now:12809)
+> > > > > - Include path found, including - caves-1623/161/triassic/altuni
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/altuni
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: altuni
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/altuni <> caves-1623/161/triassic/altuni
+[<Cave: 1623-161>]
+> > > > > > LEGS: 33 (previous: 12809, now:12842)
+> > > > > - Include path found, including - caves-1623/161/triassic/hymen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/hymen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: hymen
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/hymen <> caves-1623/161/triassic/hymen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12842, now:12851)
+> > > > > - Include path found, including - caves-1623/161/triassic/magicjum
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/magicjum
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: magicjumars
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/magicjum <> caves-1623/161/triassic/magicjum
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12851, now:12863)
+> > > > > - Include path found, including - caves-1623/161/triassic/fogies
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fogies
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: fogies
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/fogies <> caves-1623/161/triassic/fogies
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 12863, now:12882)
+> > > > > - Include path found, including - caves-1623/161/triassic/keinzimm
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/keinzimm
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: keinzimmer
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/keinzimm <> caves-1623/161/triassic/keinzimm
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12882, now:12903)
+> > > > > - Include path found, including - caves-1623/161/triassic/lostworl
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: lostworld
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: downstream
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12903, now:12910)
+> > > > > - Include path found, including - caves-1623/161/triassic/tapeworm
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/tapeworm
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: tapeworm
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/tapeworm <> caves-1623/161/triassic/tapeworm
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12910, now:12924)
+> > > > > - Include path found, including - caves-1623/161/triassic/chaos
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chaos
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: chaos
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/chaos <> caves-1623/161/triassic/chaos
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12924, now:12945)
+> > > > > - Include path found, including - caves-1623/161/triassic/intrview
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: interview
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12945, now:12957)
+> > > > > - Include path found, including - caves-1623/161/triassic/fcr
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fcr
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: fcr
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/fcr <> caves-1623/161/triassic/fcr
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12957, now:12971)
+> > > > > - Include path found, including - caves-1623/161/triassic/chosspot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chosspot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: chosspot
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/chosspot <> caves-1623/161/triassic/chosspot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12971, now:12984)
+> > > > > - Include path found, including - caves-1623/161/triassic/henricat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: henricat
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pt1
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12984, now:13000)
+> > > > > - Include path found, including - caves-1623/161/triassic/ovflow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/ovflow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: overflow
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/ovflow <> caves-1623/161/triassic/ovflow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 13000, now:13006)
+> > > > > - Include path found, including - caves-1623/161/triassic/eaunat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/eaunat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: eaunatlink
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/eaunat <> caves-1623/161/triassic/eaunat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 1 (previous: 13006, now:13007)
+> > > > > - Include path found, including - caves-1623/161/triassic/scorchio
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/scorchio
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: scorchio
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/triassic/scorchio <> caves-1623/161/triassic/scorchio
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 13007, now:13013)
+> > > > - Include path found, including - caves-1623/161/phumour/allphs
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/allphs
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/phumour/thighs
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/thighs
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: thighs
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/phumour/thighs <> caves-1623/161/phumour/thighs
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 13013, now:13030)
+> > > > > - Include path found, including - caves-1623/161/phumour/venereal
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/venereal
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: venereal
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/phumour/venereal <> caves-1623/161/phumour/venereal
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13030, now:13041)
+> > > > > - Include path found, including - caves-1623/161/phumour/natural
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/natural
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: natural
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/phumour/natural <> caves-1623/161/phumour/natural
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 13041, now:13050)
+> > > > > - Include path found, including - caves-1623/161/phumour/deadbats
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/deadbats
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: deadbats
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/phumour/deadbats <> caves-1623/161/phumour/deadbats
+[<Cave: 1623-161>]
+> > > > > > LEGS: 41 (previous: 13050, now:13091)
+> > > > > - Include path found, including - caves-1623/161/phumour/loopy
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/loopy
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: loopy
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/loopy <> caves-1623/161/phumour/loopy
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 13091, now:13099)
+> > > > > - Include path found, including - caves-1623/161/phumour/catwoman
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catwoman
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: catwoman
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/catwoman <> caves-1623/161/phumour/catwoman
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 13099, now:13115)
+> > > > > - Include path found, including - caves-1623/161/phumour/wheretwb
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/wheretwb
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: wheretwb
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/wheretwb <> caves-1623/161/phumour/wheretwb
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 13115, now:13128)
+> > > > > - Include path found, including - caves-1623/161/phumour/asturias
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/asturias
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: asturias
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/asturias <> caves-1623/161/phumour/asturias
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 13128, now:13147)
+> > > > > - Include path found, including - caves-1623/161/phumour/catshfts
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catshfts
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: shafts1
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/catshfts <> caves-1623/161/phumour/catshfts
+[<Cave: 1623-161>]
+> > > > > > LEGS: 2 (previous: 13147, now:13149)
+> > > > > - Include path found, including - caves-1623/161/phumour/shaftmin
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/shaftmin
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: shaftmin
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/shaftmin <> caves-1623/161/phumour/shaftmin
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 13149, now:13156)
+> > > > > - Include path found, including - caves-1623/161/phumour/pudding
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/pudding
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: pudding
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/pudding <> caves-1623/161/phumour/pudding
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 13156, now:13176)
+> > > > > - Include path found, including - caves-1623/161/phumour/iceland
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/iceland
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: iceland1
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/iceland <> caves-1623/161/phumour/iceland
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 13176, now:13191)
+> > > > > - Include path found, including - caves-1623/161/phumour/turkey
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.61328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/turkey
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: turkey
+> > > > > > > - MEM:49.61328125 Reading. parent:caves-1623/161/phumour/turkey <> caves-1623/161/phumour/turkey
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13191, now:13202)
+> > > > > - Include path found, including - caves-1623/161/phumour/161g
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 161g
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 161g_1
+> > > > > > > - MEM:49.62109375 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+> > > > > > LEGS: 4 (previous: 13202, now:13206)
+> > > > > - Include path found, including - caves-1623/161/phumour/161h
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161h
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for: 161h
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/161h <> caves-1623/161/phumour/161h
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13206, now:13217)
+> > > > LEGS: 2105 (previous: 11112, now:13217)
+> > > - Include path found, including - caves-1623/204/204
+> > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > - MEM:49.625 Reading. parent:kataster/1623 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > - Begin found for: 204
+> > > > > - MEM:49.625 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > - Include path found, including - caves-1623/204/nearend/nearend
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.62890625 Reading. parent:caves-1623/204/204 <> caves-1623/204/nearend/nearend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: nearend
+> > > > > > - MEM:49.62890625 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/nearend
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/nearend/ent
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.62890625 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/ent
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ent
+> > > > > > > - MEM:49.6328125 Reading. parent:caves-1623/204/nearend/ent <> caves-1623/204/nearend/ent
+[<Cave: 1623-204>]
+> > > > > > LEGS: 39 (previous: 13218, now:13257)
+> > > > > - Include path found, including - caves-1623/204/nearend/link
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/link
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: link
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/link <> caves-1623/204/nearend/link
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 13257, now:13259)
+> > > > > - Include path found, including - caves-1623/204/nearend/junction
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/junction
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: junction
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/junction <> caves-1623/204/nearend/junction
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13259, now:13263)
+> > > > > - Include path found, including - caves-1623/204/nearend/updip
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/updip
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: updip
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/updip <> caves-1623/204/nearend/updip
+[<Cave: 1623-204>]
+> > > > > > LEGS: 11 (previous: 13263, now:13274)
+> > > > > - Include path found, including - caves-1623/204/nearend/stitchthis
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/stitchthis
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: stitchthis
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/stitchthis <> caves-1623/204/nearend/stitchthis
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13274, now:13279)
+> > > > > - Include path found, including - caves-1623/204/nearend/kingcarbide
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.640625 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kingcarbide
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: kingcarbide
+> > > > > > > - MEM:49.640625 Reading. parent:caves-1623/204/nearend/kingcarbide <> caves-1623/204/nearend/kingcarbide
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13279, now:13289)
+> > > > > - Include path found, including - caves-1623/204/nearend/kidney
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.640625 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kidney
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: kidney
+> > > > > > > - MEM:49.640625 Reading. parent:caves-1623/204/nearend/kidney <> caves-1623/204/nearend/kidney
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13289, now:13297)
+> > > > > - Include path found, including - caves-1623/204/nearend/atob
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/atob
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: atob
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/atob <> caves-1623/204/nearend/atob
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13297, now:13300)
+> > > > > - Include path found, including - caves-1623/204/nearend/deathglory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/deathglory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: deathglory
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/deathglory <> caves-1623/204/nearend/deathglory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 13300, now:13313)
+> > > > > LEGS: 95 (previous: 13218, now:13313)
+> > > > - Include path found, including - caves-1623/204/midlevel/midlevel
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/204 <> caves-1623/204/midlevel/midlevel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: midlevel
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/midlevel
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/midlevel/pendulum
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pendulum
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pendulum
+> > > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/pendulum <> caves-1623/204/midlevel/pendulum
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 13313, now:13333)
+> > > > > - Include path found, including - caves-1623/204/midlevel/veined
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65234375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: veined
+> > > > > > > - MEM:49.65234375 Reading. parent:caves-1623/204/midlevel/veined <> caves-1623/204/midlevel/veined
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 13333, now:13349)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110aday
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65234375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 110aday
+> > > > > > > - MEM:49.65234375 Reading. parent:caves-1623/204/midlevel/110aday <> caves-1623/204/midlevel/110aday
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 13349, now:13373)
+> > > > > - Include path found, including - caves-1623/204/midlevel/rainbow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.66015625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/rainbow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: rainbow
+> > > > > > > - MEM:49.66015625 Reading. parent:caves-1623/204/midlevel/rainbow <> caves-1623/204/midlevel/rainbow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 13373, now:13388)
+> > > > > - Include path found, including - caves-1623/204/midlevel/phreatic
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.66015625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phreatic
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: phreatic
+> > > > > > > - MEM:49.66015625 Reading. parent:caves-1623/204/midlevel/phreatic <> caves-1623/204/midlevel/phreatic
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 13388, now:13395)
+> > > > > - Include path found, including - caves-1623/204/midlevel/aday2bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/aday2bidet
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: aday2bidet
+> > > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/aday2bidet <> caves-1623/204/midlevel/aday2bidet
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13395, now:13400)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110_bidet_b
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet_b
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 110_bidet_b
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/110_bidet_b <> caves-1623/204/midlevel/110_bidet_b
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13400, now:13404)
+> > > > > - Include path found, including - caves-1623/204/midlevel/veined_deadend
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined_deadend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: veined_deadend
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/veined_deadend <> caves-1623/204/midlevel/veined_deadend
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13404, now:13407)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110_bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 110_bidet
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/110_bidet <> caves-1623/204/midlevel/110_bidet
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 13407, now:13420)
+> > > > > - Include path found, including - caves-1623/204/midlevel/marble_run
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/marble_run
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: marble_run
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/marble_run <> caves-1623/204/midlevel/marble_run
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 13420, now:13429)
+> > > > > - Include path found, including - caves-1623/204/midlevel/botofwolpertinger1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: botofwolpertinger1
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/botofwolpertinger1 <> caves-1623/204/midlevel/botofwolpertinger1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 13429, now:13435)
+> > > > > - Include path found, including - caves-1623/204/midlevel/botofwolpertinger2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: botofwolpertinger2
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/botofwolpertinger2 <> caves-1623/204/midlevel/botofwolpertinger2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13435, now:13445)
+> > > > > - Include path found, including - caves-1623/204/midlevel/merry
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/merry
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: merry
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/merry <> caves-1623/204/midlevel/merry
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 13445, now:13463)
+> > > > > - Include path found, including - caves-1623/204/midlevel/recycled
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/recycled
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: recycled
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/recycled <> caves-1623/204/midlevel/recycled
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13463, now:13471)
+> > > > > - Include path found, including - caves-1623/204/midlevel/upat45deg
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: upat45deg
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/upat45deg <> caves-1623/204/midlevel/upat45deg
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 13471, now:13485)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110aday2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 110aday2
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/110aday2 <> caves-1623/204/midlevel/110aday2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13485, now:13488)
+> > > > > - Include path found, including - caves-1623/204/midlevel/upat45deg2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: upat45deg2
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/upat45deg2 <> caves-1623/204/midlevel/upat45deg2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 13488, now:13489)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussyprance
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pussyprance
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/pussyprance <> caves-1623/204/midlevel/pussyprance
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 13489, now:13518)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussyprance2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pussyprance2
+> > > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/pussyprance2 <> caves-1623/204/midlevel/pussyprance2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 13518, now:13537)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: catflap
+> > > > > > > - MEM:49.6875 Reading. parent:caves-1623/204/midlevel/catflap <> caves-1623/204/midlevel/catflap
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 13537, now:13559)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.69140625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: catflap2
+> > > > > > > - MEM:49.69140625 Reading. parent:caves-1623/204/midlevel/catflap2 <> caves-1623/204/midlevel/catflap2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13559, now:13564)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: catflap3
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/midlevel/catflap3 <> caves-1623/204/midlevel/catflap3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 13564, now:13566)
+> > > > > - Include path found, including - caves-1623/204/midlevel/paintedlady
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/paintedlady
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: paintedlady
+> > > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/paintedlady <> caves-1623/204/midlevel/paintedlady
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13566, now:13571)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussinbolts
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussinbolts
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pussinbolts
+> > > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/pussinbolts <> caves-1623/204/midlevel/pussinbolts
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13571, now:13576)
+> > > > > - Include path found, including - caves-1623/204/midlevel/ontheprowl
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/ontheprowl
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ontheprowl
+> > > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/ontheprowl <> caves-1623/204/midlevel/ontheprowl
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 13576, now:13593)
+> > > > > - Include path found, including - caves-1623/204/midlevel/snowleopard
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/snowleopard
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: snowleopard
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/snowleopard <> caves-1623/204/midlevel/snowleopard
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13593, now:13598)
+> > > > > - Include path found, including - caves-1623/204/midlevel/theowlandthepussycat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/theowlandthepussycat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: theowlandthepussycat
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/theowlandthepussycat <> caves-1623/204/midlevel/theowlandthepussycat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13598, now:13601)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fatcat
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/fatcat <> caves-1623/204/midlevel/fatcat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 13601, now:13608)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fatcat2
+> > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/fatcat2 <> caves-1623/204/midlevel/fatcat2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13608, now:13618)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fatcat3
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/fatcat3 <> caves-1623/204/midlevel/fatcat3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13618, now:13623)
+> > > > > - Include path found, including - caves-1623/204/midlevel/somethingelse
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/somethingelse
+[<Cave: 1623-204>]
+> > > > > > - Include path found, including - caves-1623/204/midlevel/catgut
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catgut
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for: catgut
+> > > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/catgut <> caves-1623/204/midlevel/catgut
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 14 (previous: 13623, now:13637)
+> > > > > > - Include path found, including - caves-1623/204/midlevel/cirquedusoleil
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/cirquedusoleil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for: cirquedusoleil
+> > > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/cirquedusoleil <> caves-1623/204/midlevel/cirquedusoleil
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 9 (previous: 13637, now:13646)
+> > > > > > - Include path found, including - caves-1623/204/midlevel/pussyriot
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyriot
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for: pussyriot
+> > > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/pussyriot <> caves-1623/204/midlevel/pussyriot
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 13 (previous: 13646, now:13659)
+> > > > > - Include path found, including - caves-1623/204/midlevel/phat2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phat2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: phat2
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/phat2 <> caves-1623/204/midlevel/phat2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13659, now:13669)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflea
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflea
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: catflea
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/catflea <> caves-1623/204/midlevel/catflea
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13669, now:13677)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dogdays
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/dogdays <> caves-1623/204/midlevel/dogdays
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13677, now:13681)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dogdays2
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/dogdays2 <> caves-1623/204/midlevel/dogdays2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 13681, now:13695)
+> > > > > - Include path found, including - caves-1623/204/midlevel/farfromsupport
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/farfromsupport
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: farfromsupport
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/farfromsupport <> caves-1623/204/midlevel/farfromsupport
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13695, now:13700)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dogdays3
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/dogdays3 <> caves-1623/204/midlevel/dogdays3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 90 (previous: 13700, now:13790)
+> > > > > - Include path found, including - caves-1623/204/midlevel/bigboulders
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/bigboulders
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: bigboulders
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/bigboulders <> caves-1623/204/midlevel/bigboulders
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13790, now:13795)
+> > > > > - Include path found, including - caves-1623/204/midlevel/BoulderChamber
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: boulderchamber
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/BoulderChamber <> caves-1623/204/midlevel/BoulderChamber
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 13795, now:13821)
+> > > > > - Include path found, including - caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber_upper
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: boulderchamber_upper
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/BoulderChamber_upper <> caves-1623/204/midlevel/BoulderChamber_upper
+[<Cave: 1623-204>]
+> > > > > > LEGS: 64 (previous: 13821, now:13885)
+> > > > > - Include path found, including - caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/downfrombigboulderchamber
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: downfrombigboulderchamber
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/downfrombigboulderchamber <> caves-1623/204/midlevel/downfrombigboulderchamber
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 13885, now:13902)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pretzelpassage1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pretzelpassage1
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/pretzelpassage1 <> caves-1623/204/midlevel/pretzelpassage1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 13902, now:13922)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pretzelpassage2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pretzelpassage2
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/pretzelpassage2 <> caves-1623/204/midlevel/pretzelpassage2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 13922, now:13934)
+> > > > > LEGS: 621 (previous: 13313, now:13934)
+> > > > - Include path found, including - caves-1623/204/domes/domes
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/204 <> caves-1623/204/domes/domes
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: domes
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/domes
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/domes/millennium
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/millennium
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: millennium
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/millennium <> caves-1623/204/domes/millennium
+[<Cave: 1623-204>]
+> > > > > > LEGS: 40 (previous: 13934, now:13974)
+> > > > > - Include path found, including - caves-1623/204/domes/pleasuredome
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/pleasuredome
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pleasuredome
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/pleasuredome <> caves-1623/204/domes/pleasuredome
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 13974, now:13990)
+> > > > > - Include path found, including - caves-1623/204/domes/loop22
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/loop22
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: loop22
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/loop22 <> caves-1623/204/domes/loop22
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13990, now:13993)
+> > > > > - Include path found, including - caves-1623/204/domes/phat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/phat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: phat
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/phat <> caves-1623/204/domes/phat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 13993, now:14002)
+> > > > > - Include path found, including - caves-1623/204/domes/micturation
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/micturation
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: micturation
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/micturation <> caves-1623/204/domes/micturation
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14002, now:14010)
+> > > > > - Include path found, including - caves-1623/204/domes/obese
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/obese
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: obese
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/obese <> caves-1623/204/domes/obese
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14010, now:14013)
+> > > > > - Include path found, including - caves-1623/204/domes/allroads
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/allroads
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: allroads
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/domes/allroads <> caves-1623/204/domes/allroads
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14013, now:14019)
+> > > > > LEGS: 85 (previous: 13934, now:14019)
+> > > > - Include path found, including - caves-1623/204/deepsouth/deepsouth
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.71875 Reading. parent:caves-1623/204/204 <> caves-1623/204/deepsouth/deepsouth
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: deepsouth
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/deepsouth
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/deepsouth/ariston1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ariston1
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/ariston1 <> caves-1623/204/deepsouth/ariston1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14019, now:14024)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/ariston2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ariston2
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/ariston2 <> caves-1623/204/deepsouth/ariston2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 14024, now:14050)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/fledermaus
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/fledermaus
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fledermaus
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/fledermaus <> caves-1623/204/deepsouth/fledermaus
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14050, now:14063)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/kiwisuit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/kiwisuit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: kiwisuit
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/kiwisuit <> caves-1623/204/deepsouth/kiwisuit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14063, now:14076)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor1
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/razor1 <> caves-1623/204/deepsouth/razor1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 14076, now:14105)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor2
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/razor2 <> caves-1623/204/deepsouth/razor2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14105, now:14118)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor3
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/razor3 <> caves-1623/204/deepsouth/razor3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14118, now:14122)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor4
+> > > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/razor4 <> caves-1623/204/deepsouth/razor4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14122, now:14134)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor5
+> > > > > > > - MEM:49.72265625 Reading. parent:caves-1623/204/deepsouth/razor5 <> caves-1623/204/deepsouth/razor5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14134, now:14149)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor6
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.72265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor6
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor6
+> > > > > > > - MEM:49.72265625 Reading. parent:caves-1623/204/deepsouth/razor6 <> caves-1623/204/deepsouth/razor6
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14149, now:14150)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor7
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor7
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor7
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor7 <> caves-1623/204/deepsouth/razor7
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 14150, now:14176)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor8
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor8
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor8
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor8 <> caves-1623/204/deepsouth/razor8
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 14176, now:14196)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor9
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor9
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor9
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor9 <> caves-1623/204/deepsouth/razor9
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14196, now:14217)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor10
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor10
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor10
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/razor10 <> caves-1623/204/deepsouth/razor10
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14217, now:14238)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor11
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor11
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor11
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/razor11 <> caves-1623/204/deepsouth/razor11
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 14238, now:14252)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor12
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor12
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: razor12
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/razor12 <> caves-1623/204/deepsouth/razor12
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14252, now:14267)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkroad
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: silkroad
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/silkroad <> caves-1623/204/deepsouth/silkroad
+[<Cave: 1623-204>]
+> > > > > > LEGS: 30 (previous: 14267, now:14297)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkroad2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: silkroad2
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/silkroad2 <> caves-1623/204/deepsouth/silkroad2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14297, now:14319)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/entertheflagon
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/entertheflagon
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: entertheflagon
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/entertheflagon <> caves-1623/204/deepsouth/entertheflagon
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14319, now:14332)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkworm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkworm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: silkworm
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/silkworm <> caves-1623/204/deepsouth/silkworm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14332, now:14336)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/crouching
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/crouching
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: crouching
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/deepsouth/crouching <> caves-1623/204/deepsouth/crouching
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14336, now:14358)
+> > > > > LEGS: 339 (previous: 14019, now:14358)
+> > > > - Include path found, including - caves-1623/204/trunk/trunk
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/204 <> caves-1623/204/trunk/trunk
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: trunk
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/trunk
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/trunk/nopainnogain
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/nopainnogain
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: nopainnogain
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/nopainnogain <> caves-1623/204/trunk/nopainnogain
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 14358, now:14382)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: insig
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/insig <> caves-1623/204/trunk/insig
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14382, now:14389)
+> > > > > - Include path found, including - caves-1623/204/trunk/bonsai
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/bonsai
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: bonsai
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/bonsai <> caves-1623/204/trunk/bonsai
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14389, now:14395)
+> > > > > - Include path found, including - caves-1623/204/trunk/treeumphant
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeumphant
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: treeumphant
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/treeumphant <> caves-1623/204/trunk/treeumphant
+[<Cave: 1623-204>]
+> > > > > > LEGS: 27 (previous: 14395, now:14422)
+> > > > > - Include path found, including - caves-1623/204/trunk/colonade
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/colonade
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: colonade
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/colonade <> caves-1623/204/trunk/colonade
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14422, now:14430)
+> > > > > - Include path found, including - caves-1623/204/trunk/scroat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/scroat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: scroat
+> > > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/scroat <> caves-1623/204/trunk/scroat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14430, now:14434)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: crowningglory
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/crowningglory <> caves-1623/204/trunk/crowningglory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 40 (previous: 14434, now:14474)
+> > > > > - Include path found, including - caves-1623/204/trunk/sucker
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sucker
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: sucker
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/sucker <> caves-1623/204/trunk/sucker
+[<Cave: 1623-204>]
+> > > > > > LEGS: 30 (previous: 14474, now:14504)
+> > > > > - Include path found, including - caves-1623/204/trunk/csballs
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/csballs
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: csballs
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/csballs <> caves-1623/204/trunk/csballs
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14504, now:14517)
+> > > > > - Include path found, including - caves-1623/204/trunk/moreballs
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/moreballs
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: moreballs
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/moreballs <> caves-1623/204/trunk/moreballs
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14517, now:14539)
+> > > > > - Include path found, including - caves-1623/204/trunk/backpassage
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/backpassage
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: backpassage
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/backpassage <> caves-1623/204/trunk/backpassage
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14539, now:14545)
+> > > > > - Include path found, including - caves-1623/204/trunk/treeslope
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeslope
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: treeslope
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/treeslope <> caves-1623/204/trunk/treeslope
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14545, now:14549)
+> > > > > - Include path found, including - caves-1623/204/trunk/tree15c
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree15c
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: tree15c
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/tree15c <> caves-1623/204/trunk/tree15c
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14549, now:14552)
+> > > > > - Include path found, including - caves-1623/204/trunk/helterskelter
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterskelter
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: helterskelter
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/helterskelter <> caves-1623/204/trunk/helterskelter
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14552, now:14561)
+> > > > > - Include path found, including - caves-1623/204/trunk/gknodel
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: gknodel
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: part1
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14561, now:14570)
+> > > > > - Include path found, including - caves-1623/204/trunk/drillingdelight
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/drillingdelight
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: drillingdelight
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/drillingdelight <> caves-1623/204/trunk/drillingdelight
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14570, now:14578)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: insig2
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/insig2 <> caves-1623/204/trunk/insig2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14578, now:14586)
+> > > > > - Include path found, including - caves-1623/204/trunk/flopsy
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/flopsy
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: flopsy
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/flopsy <> caves-1623/204/trunk/flopsy
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14586, now:14593)
+> > > > > - Include path found, including - caves-1623/204/trunk/greatoak
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: greatoak
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/greatoak <> caves-1623/204/trunk/greatoak
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14593, now:14598)
+> > > > > - Include path found, including - caves-1623/204/trunk/tree2glory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7734375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree2glory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: tree2glory
+> > > > > > > - MEM:49.7734375 Reading. parent:caves-1623/204/trunk/tree2glory <> caves-1623/204/trunk/tree2glory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14598, now:14606)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.77734375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: sandpit
+> > > > > > > - MEM:49.77734375 Reading. parent:caves-1623/204/trunk/sandpit <> caves-1623/204/trunk/sandpit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 42 (previous: 14606, now:14648)
+> > > > > - Include path found, including - caves-1623/204/trunk/helterdig
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.77734375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterdig
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: helterdig
+> > > > > > > - MEM:49.77734375 Reading. parent:caves-1623/204/trunk/helterdig <> caves-1623/204/trunk/helterdig
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14648, now:14652)
+> > > > > - Include path found, including - caves-1623/204/trunk/dontstep
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dontstep
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dontstep
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/dontstep <> caves-1623/204/trunk/dontstep
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14652, now:14665)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig2rhino
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2rhino
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: insig2rhino
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/insig2rhino <> caves-1623/204/trunk/insig2rhino
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14665, now:14669)
+> > > > > - Include path found, including - caves-1623/204/trunk/twiglets
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/twiglets
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: twiglets
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/twiglets <> caves-1623/204/trunk/twiglets
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 14669, now:14683)
+> > > > > - Include path found, including - caves-1623/204/trunk/stageleft
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/stageleft
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: stageleft
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/stageleft <> caves-1623/204/trunk/stageleft
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14683, now:14690)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: goesser
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/goesser <> caves-1623/204/trunk/goesser
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14690, now:14700)
+> > > > > - Include path found, including - caves-1623/204/trunk/greatoak2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: greatoak2
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/greatoak2 <> caves-1623/204/trunk/greatoak2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14700, now:14701)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: riverdance
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/riverdance <> caves-1623/204/trunk/riverdance
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14701, now:14709)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: riverdance2
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/riverdance2 <> caves-1623/204/trunk/riverdance2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14709, now:14714)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: riverdance3
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/riverdance3 <> caves-1623/204/trunk/riverdance3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14714, now:14729)
+> > > > > - Include path found, including - caves-1623/204/trunk/fingerbang
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fingerbang
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fingerbang
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/fingerbang <> caves-1623/204/trunk/fingerbang
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14729, now:14735)
+> > > > > - Include path found, including - caves-1623/204/trunk/fblink
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fblink
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fblink
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/fblink <> caves-1623/204/trunk/fblink
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14735, now:14736)
+> > > > > - Include path found, including - caves-1623/204/trunk/dutchelm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dutchelm
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/dutchelm <> caves-1623/204/trunk/dutchelm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14736, now:14748)
+> > > > > - Include path found, including - caves-1623/204/trunk/dutchelm2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dutchelm2
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/dutchelm2 <> caves-1623/204/trunk/dutchelm2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14748, now:14750)
+> > > > > - Include path found, including - caves-1623/204/trunk/wotnosurvey
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wotnosurvey
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: wotnosurvey
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/wotnosurvey <> caves-1623/204/trunk/wotnosurvey
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14750, now:14755)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: goesser2
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/goesser2 <> caves-1623/204/trunk/goesser2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14755, now:14757)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: crowningglory2
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/crowningglory2 <> caves-1623/204/trunk/crowningglory2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14757, now:14767)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: crowningglory3
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/crowningglory3 <> caves-1623/204/trunk/crowningglory3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14767, now:14770)
+> > > > > - Include path found, including - caves-1623/204/trunk/11sr
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/11sr
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 11sr
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/11sr <> caves-1623/204/trunk/11sr
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 14770, now:14793)
+> > > > > - Include path found, including - caves-1623/204/trunk/swisscheese
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/swisscheese
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swisscheese
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/swisscheese <> caves-1623/204/trunk/swisscheese
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14793, now:14814)
+> > > > > - Include path found, including - caves-1623/204/trunk/wetdry
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wetdry
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: wetdry
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/wetdry <> caves-1623/204/trunk/wetdry
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14814, now:14822)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: goesser3
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/goesser3 <> caves-1623/204/trunk/goesser3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14822, now:14824)
+> > > > > - Include path found, including - caves-1623/204/trunk/godonlyknows
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/godonlyknows
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: godonlyknows
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/godonlyknows <> caves-1623/204/trunk/godonlyknows
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14824, now:14830)
+> > > > > - Include path found, including - caves-1623/204/trunk/goodvibrations
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goodvibrations
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: goodvibrations
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/goodvibrations <> caves-1623/204/trunk/goodvibrations
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14830, now:14835)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: sandpit2
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/sandpit2 <> caves-1623/204/trunk/sandpit2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14835, now:14840)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pingu
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/pingu <> caves-1623/204/trunk/pingu
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14840, now:14847)
+> > > > > - Include path found, including - caves-1623/204/trunk/noodnoodles
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/noodnoodles
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: noodnoodles
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/noodnoodles <> caves-1623/204/trunk/noodnoodles
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14847, now:14852)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: sandpit3
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/sandpit3 <> caves-1623/204/trunk/sandpit3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14852, now:14854)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pingu2
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/pingu2 <> caves-1623/204/trunk/pingu2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14854, now:14861)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: pingu3
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/pingu3 <> caves-1623/204/trunk/pingu3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14861, now:14867)
+> > > > > - Include path found, including - caves-1623/204/trunk/appendix
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/appendix
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: appendix
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/appendix <> caves-1623/204/trunk/appendix
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14867, now:14871)
+> > > > > - Include path found, including - caves-1623/204/trunk/root
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/root
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: root
+> > > > > > > - MEM:49.80078125 Reading. parent:caves-1623/204/trunk/root <> caves-1623/204/trunk/root
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14871, now:14878)
+> > > > > LEGS: 520 (previous: 14358, now:14878)
+> > > > - Include path found, including - caves-1623/204/swings/allswings
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/204 <> caves-1623/204/swings/allswings
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: allswings
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/allswings
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/swings/playground
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/playground
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: playground
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/playground <> caves-1623/204/swings/playground
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14878, now:14885)
+> > > > > - Include path found, including - caves-1623/204/swings/swings
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings <> caves-1623/204/swings/swings
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 14885, now:14913)
+> > > > > - Include path found, including - caves-1623/204/swings/swings2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings2
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings2 <> caves-1623/204/swings/swings2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14913, now:14920)
+> > > > > - Include path found, including - caves-1623/204/swings/swings3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings3
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings3 <> caves-1623/204/swings/swings3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14920, now:14924)
+> > > > > - Include path found, including - caves-1623/204/swings/swings4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings4
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings4 <> caves-1623/204/swings/swings4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14924, now:14934)
+> > > > > - Include path found, including - caves-1623/204/swings/swings5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings5
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings5 <> caves-1623/204/swings/swings5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14934, now:14936)
+> > > > > - Include path found, including - caves-1623/204/swings/swings6
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings6
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings6
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings6 <> caves-1623/204/swings/swings6
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14936, now:14940)
+> > > > > - Include path found, including - caves-1623/204/swings/swings7
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings7
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings7
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings7 <> caves-1623/204/swings/swings7
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14940, now:14942)
+> > > > > - Include path found, including - caves-1623/204/swings/swings8
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings8
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings8
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings8 <> caves-1623/204/swings/swings8
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14942, now:14948)
+> > > > > - Include path found, including - caves-1623/204/swings/swings9
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings9
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swings9
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/swings9 <> caves-1623/204/swings/swings9
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14948, now:14960)
+> > > > > - Include path found, including - caves-1623/204/swings/prettybits
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/prettybits
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: prettybits
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/prettybits <> caves-1623/204/swings/prettybits
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14960, now:14968)
+> > > > > - Include path found, including - caves-1623/204/swings/juicybits
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/juicybits
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: juicybits
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/juicybits <> caves-1623/204/swings/juicybits
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14968, now:14977)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: merrygoround
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/merrygoround <> caves-1623/204/swings/merrygoround
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14977, now:14984)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: merrygoround2
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/merrygoround2 <> caves-1623/204/swings/merrygoround2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14984, now:14989)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: merrygoround3
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/swings/merrygoround3 <> caves-1623/204/swings/merrygoround3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14989, now:14996)
+> > > > > - Include path found, including - caves-1623/204/swings/ermintrude
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ermintrude
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/ermintrude <> caves-1623/204/swings/ermintrude
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14996, now:15002)
+> > > > > - Include path found, including - caves-1623/204/swings/trapeze
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/trapeze
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: trapeze
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/trapeze <> caves-1623/204/swings/trapeze
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 15002, now:15010)
+> > > > > - Include path found, including - caves-1623/204/swings/crestarun
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/crestarun
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: crestarun
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/crestarun <> caves-1623/204/swings/crestarun
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 15010, now:15026)
+> > > > > - Include path found, including - caves-1623/204/swings/piledriver
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/piledriver
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: piledriver
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/piledriver <> caves-1623/204/swings/piledriver
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15026, now:15032)
+> > > > > - Include path found, including - caves-1623/204/swings/toothless
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/toothless
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: toothless
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/toothless <> caves-1623/204/swings/toothless
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15032, now:15044)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: highhopes
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/highhopes <> caves-1623/204/swings/highhopes
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15044, now:15054)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: highhopes2
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/highhopes2 <> caves-1623/204/swings/highhopes2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 15054, now:15070)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopeslink
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopeslink
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: highhopeslink
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/highhopeslink <> caves-1623/204/swings/highhopeslink
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15070, now:15072)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: highhopes3
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/highhopes3 <> caves-1623/204/swings/highhopes3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15072, now:15081)
+> > > > > - Include path found, including - caves-1623/204/swings/enth
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enth
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: enth
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/enth <> caves-1623/204/swings/enth
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 15081, now:15099)
+> > > > > - Include path found, including - caves-1623/204/swings/enti
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enti
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: enti
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/enti <> caves-1623/204/swings/enti
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15099, now:15105)
+> > > > > - Include path found, including - caves-1623/204/swings/ermintrude2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ermintrude2
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/ermintrude2 <> caves-1623/204/swings/ermintrude2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15105, now:15114)
+> > > > > - Include path found, including - caves-1623/204/swings/entg
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/entg
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: entg
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/entg <> caves-1623/204/swings/entg
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15114, now:15121)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ubantu
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/ubantu <> caves-1623/204/swings/ubantu
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15121, now:15128)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ubantu2
+> > > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/ubantu2 <> caves-1623/204/swings/ubantu2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15128, now:15135)
+> > > > > - Include path found, including - caves-1623/204/swings/zebedee
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/zebedee
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: zebedee
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/zebedee <> caves-1623/204/swings/zebedee
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15135, now:15141)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ubantu3
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/ubantu3 <> caves-1623/204/swings/ubantu3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 15141, now:15167)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ubantu4
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/ubantu4 <> caves-1623/204/swings/ubantu4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 15167, now:15182)
+> > > > > - Include path found, including - caves-1623/204/swings/05-9cQMkilling
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/05-9cQMkilling
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 05-9cqmkilling
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/05-9cQMkilling <> caves-1623/204/swings/05-9cQMkilling
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15182, now:15185)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ubantu5
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/swings/ubantu5 <> caves-1623/204/swings/ubantu5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15185, now:15188)
+> > > > > LEGS: 310 (previous: 14878, now:15188)
+> > > > - Include path found, including - caves-1623/204/gaffered/allgaffered
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.828125 Reading. parent:caves-1623/204/204 <> caves-1623/204/gaffered/allgaffered
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: allgaffered
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/allgaffered
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/gaffered/plan
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/plan
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: plan
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/plan <> caves-1623/204/gaffered/plan
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15188, now:15191)
+> > > > > - Include path found, including - caves-1623/204/gaffered/not
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/not
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: not
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/not <> caves-1623/204/gaffered/not
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15191, now:15198)
+> > > > > - Include path found, including - caves-1623/204/gaffered/interesting
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/interesting
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: interesting
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/interesting <> caves-1623/204/gaffered/interesting
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15198, now:15201)
+> > > > > - Include path found, including - caves-1623/204/gaffered/trihang
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/trihang
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: trihang
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/trihang <> caves-1623/204/gaffered/trihang
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 15201, now:15214)
+> > > > > - Include path found, including - caves-1623/204/gaffered/eeyore
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/eeyore
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: eeyore
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/eeyore <> caves-1623/204/gaffered/eeyore
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15214, now:15218)
+> > > > > - Include path found, including - caves-1623/204/gaffered/poohstyx
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: poohstyx
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/poohstyx <> caves-1623/204/gaffered/poohstyx
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15218, now:15227)
+> > > > > - Include path found, including - caves-1623/204/gaffered/sirens
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: sirens
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/sirens <> caves-1623/204/gaffered/sirens
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15227, now:15233)
+> > > > > - Include path found, including - caves-1623/204/gaffered/sirens2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: sirens2
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/sirens2 <> caves-1623/204/gaffered/sirens2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 15233, now:15250)
+> > > > > - Include path found, including - caves-1623/204/gaffered/kanga
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/kanga
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: kanga
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/kanga <> caves-1623/204/gaffered/kanga
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15250, now:15255)
+> > > > > - Include path found, including - caves-1623/204/gaffered/mudslope
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/mudslope
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: mudslope
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/mudslope <> caves-1623/204/gaffered/mudslope
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15255, now:15258)
+> > > > > - Include path found, including - caves-1623/204/gaffered/gardenersworld
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/gardenersworld
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: gardenersworld
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/gardenersworld <> caves-1623/204/gaffered/gardenersworld
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15258, now:15261)
+> > > > > - Include path found, including - caves-1623/204/gaffered/uppertube
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/uppertube
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: uppertube
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/uppertube <> caves-1623/204/gaffered/uppertube
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15261, now:15264)
+> > > > > - Include path found, including - caves-1623/204/gaffered/terrafirma
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/terrafirma
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: terrafirma
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/terrafirma <> caves-1623/204/gaffered/terrafirma
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15264, now:15266)
+> > > > > - Include path found, including - caves-1623/204/gaffered/oxtailoxbow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/oxtailoxbow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: oxtailoxbow
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/oxtailoxbow <> caves-1623/204/gaffered/oxtailoxbow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15266, now:15271)
+> > > > > - Include path found, including - caves-1623/204/gaffered/blackmaria
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/blackmaria
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: blackmaria
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/blackmaria <> caves-1623/204/gaffered/blackmaria
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15271, now:15274)
+> > > > > - Include path found, including - caves-1623/204/gaffered/poohstyx2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: poohstyx2
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/poohstyx2 <> caves-1623/204/gaffered/poohstyx2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15274, now:15276)
+> > > > > - Include path found, including - caves-1623/204/gaffered/shprinkles
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/shprinkles
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: shprinkles
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/shprinkles <> caves-1623/204/gaffered/shprinkles
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15276, now:15281)
+> > > > > - Include path found, including - caves-1623/204/gaffered/dangly
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangly
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dangly
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/dangly <> caves-1623/204/gaffered/dangly
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15281, now:15286)
+> > > > > - Include path found, including - caves-1623/204/gaffered/slimy1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: slimy1
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/slimy1 <> caves-1623/204/gaffered/slimy1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15286, now:15291)
+> > > > > - Include path found, including - caves-1623/204/gaffered/dangerous
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangerous
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: dangerous
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/dangerous <> caves-1623/204/gaffered/dangerous
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 15291, now:15315)
+> > > > > - Include path found, including - caves-1623/204/gaffered/slimy2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: slimy2
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/gaffered/slimy2 <> caves-1623/204/gaffered/slimy2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15315, now:15325)
+> > > > > LEGS: 137 (previous: 15188, now:15325)
+> > > > - Include path found, including - caves-1623/204/rhino/allrhino
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.828125 Reading. parent:caves-1623/204/204 <> caves-1623/204/rhino/allrhino
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: allrhino
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/allrhino
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/rhino/21boltsalute
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/21boltsalute
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: 21boltsalute
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/rhino/21boltsalute <> caves-1623/204/rhino/21boltsalute
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15325, now:15334)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: rhinorift
+> > > > > > > - MEM:49.828125 Reading. parent:caves-1623/204/rhino/rhinorift <> caves-1623/204/rhino/rhinorift
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 15334, now:15362)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: onamission
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/rhino/onamission <> caves-1623/204/rhino/onamission
+[<Cave: 1623-204>]
+> > > > > > LEGS: 35 (previous: 15362, now:15397)
+> > > > > - Include path found, including - caves-1623/204/rhino/watnobutcombe
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/watnobutcombe
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: watnobutcombe
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/watnobutcombe <> caves-1623/204/rhino/watnobutcombe
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15397, now:15403)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: rhinorift2
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/rhinorift2 <> caves-1623/204/rhino/rhinorift2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15403, now:15415)
+> > > > > - Include path found, including - caves-1623/204/rhino/ratbiscuit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/ratbiscuit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: ratbiscuit
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/ratbiscuit <> caves-1623/204/rhino/ratbiscuit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 15415, now:15438)
+> > > > > - Include path found, including - caves-1623/204/rhino/crimper
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/crimper
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: crimper
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/crimper <> caves-1623/204/rhino/crimper
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15438, now:15445)
+> > > > > - Include path found, including - caves-1623/204/rhino/swallowhard
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/swallowhard
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: swallowhard
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/swallowhard <> caves-1623/204/rhino/swallowhard
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15445, now:15457)
+> > > > > - Include path found, including - caves-1623/204/rhino/takingthepiss
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/takingthepiss
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: takingthepiss
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/takingthepiss <> caves-1623/204/rhino/takingthepiss
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15457, now:15463)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: rhinorift3
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/rhinorift3 <> caves-1623/204/rhino/rhinorift3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 15463, now:15464)
+> > > > > - Include path found, including - caves-1623/204/rhino/unconformity
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: unconformity
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/unconformity <> caves-1623/204/rhino/unconformity
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 15464, now:15483)
+> > > > > - Include path found, including - caves-1623/204/rhino/unconformity2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: unconformity2
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/unconformity2 <> caves-1623/204/rhino/unconformity2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15483, now:15492)
+> > > > > - Include path found, including - caves-1623/204/rhino/belief
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/belief
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: belief
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/belief <> caves-1623/204/rhino/belief
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15492, now:15496)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: onamission2
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/onamission2 <> caves-1623/204/rhino/onamission2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15496, now:15498)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: onamission3
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/onamission3 <> caves-1623/204/rhino/onamission3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15498, now:15507)
+> > > > > - Include path found, including - caves-1623/204/rhino/faith
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/faith
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: faith
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/faith <> caves-1623/204/rhino/faith
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15507, now:15517)
+> > > > > - Include path found, including - caves-1623/204/rhino/roundtrip
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/roundtrip
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: roundtrip
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/roundtrip <> caves-1623/204/rhino/roundtrip
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15517, now:15523)
+> > > > > - Include path found, including - caves-1623/204/rhino/wotnoconnection
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/wotnoconnection
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: wotnoconnection
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/wotnoconnection <> caves-1623/204/rhino/wotnoconnection
+[<Cave: 1623-204>]
+> > > > > > LEGS: 11 (previous: 15523, now:15534)
+> > > > > - Include path found, including - caves-1623/204/rhino/grater
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/grater
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: grater
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/grater <> caves-1623/204/rhino/grater
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15534, now:15538)
+> > > > > - Include path found, including - caves-1623/204/rhino/uncrimped
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/uncrimped
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: uncrimped
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/uncrimped <> caves-1623/204/rhino/uncrimped
+[<Cave: 1623-204>]
+> > > > > > LEGS: 0 (previous: 15538, now:15538)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: beyondbelief
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/beyondbelief <> caves-1623/204/rhino/beyondbelief
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15538, now:15548)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: beyondbelief2
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/beyondbelief2 <> caves-1623/204/rhino/beyondbelief2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15548, now:15569)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: beyondbelief3
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/beyondbelief3 <> caves-1623/204/rhino/beyondbelief3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 15569, now:15577)
+> > > > > - Include path found, including - caves-1623/204/rhino/hangingontofaith
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hangingontofaith
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: hangingontofaith
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/hangingontofaith <> caves-1623/204/rhino/hangingontofaith
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 15577, now:15591)
+> > > > > - Include path found, including - caves-1623/204/rhino/shanks
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/shanks
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: shanks
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/shanks <> caves-1623/204/rhino/shanks
+[<Cave: 1623-204>]
+> > > > > > LEGS: 25 (previous: 15591, now:15616)
+> > > > > - Include path found, including - caves-1623/204/rhino/nonconformism
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/nonconformism
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: nonconformism
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/nonconformism <> caves-1623/204/rhino/nonconformism
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15616, now:15619)
+> > > > > - Include path found, including - caves-1623/204/rhino/spittersend
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/spittersend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: spittersend
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/spittersend <> caves-1623/204/rhino/spittersend
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15619, now:15624)
+> > > > > - Include path found, including - caves-1623/204/rhino/hollow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hollow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: hollow
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/rhino/hollow <> caves-1623/204/rhino/hollow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15624, now:15633)
+> > > > > LEGS: 308 (previous: 15325, now:15633)
+> > > > - Include path found, including - caves-1623/204/subsoil/allsubsoil
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/204 <> caves-1623/204/subsoil/allsubsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: allsubsoil
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/allsubsoil
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/subsoil/subsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: subsoil
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/subsoil <> caves-1623/204/subsoil/subsoil
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 15633, now:15652)
+> > > > > - Include path found, including - caves-1623/204/subsoil/subsoil2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: subsoil2
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/subsoil2 <> caves-1623/204/subsoil/subsoil2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 32 (previous: 15652, now:15684)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippohollows
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippohollows
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: hippohollows
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/hippohollows <> caves-1623/204/subsoil/hippohollows
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15684, now:15696)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fatworm
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/fatworm <> caves-1623/204/subsoil/fatworm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15696, now:15708)
+> > > > > - Include path found, including - caves-1623/204/subsoil/heavilysoiled
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/heavilysoiled
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: heavilysoiled
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/subsoil/heavilysoiled <> caves-1623/204/subsoil/heavilysoiled
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15708, now:15720)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: earthenware
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/earthenware <> caves-1623/204/subsoil/earthenware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15720, now:15732)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fatworm2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/fatworm2 <> caves-1623/204/subsoil/fatworm2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15732, now:15753)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: fatworm3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/fatworm3 <> caves-1623/204/subsoil/fatworm3
+[<Cave: 1623-204>]
+> > > > > > ! Wallet ; ref 2004#34 - NOT found in survexscansfolders caves-1623/204/subsoil/fatworm3
+> > > > > > LEGS: 15 (previous: 15753, now:15768)
+> > > > > - Include path found, including - caves-1623/204/subsoil/thinrift
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/thinrift
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: thinrift
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/thinrift <> caves-1623/204/subsoil/thinrift
+[<Cave: 1623-204>]
+> > > > > > ! Wallet ; ref 2004#35 - NOT found in survexscansfolders caves-1623/204/subsoil/thinrift
+> > > > > > LEGS: 6 (previous: 15768, now:15774)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: earthenware2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/earthenware2 <> caves-1623/204/subsoil/earthenware2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 15774, now:15798)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: earthenware3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/earthenware3 <> caves-1623/204/subsoil/earthenware3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 15798, now:15816)
+> > > > > - Include path found, including - caves-1623/204/subsoil/chimney
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/chimney
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: chimney
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/chimney <> caves-1623/204/subsoil/chimney
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15816, now:15823)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: hardware
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/hardware <> caves-1623/204/subsoil/hardware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15823, now:15835)
+> > > > > - Include path found, including - caves-1623/204/subsoil/someware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/someware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: someware
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/someware <> caves-1623/204/subsoil/someware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 33 (previous: 15835, now:15868)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: software
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/software <> caves-1623/204/subsoil/software
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15868, now:15872)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-43a
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: qm04_43a
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/hardware_QM04-43a <> caves-1623/204/subsoil/hardware_QM04-43a
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15872, now:15874)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-38b
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: qm04_38b
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/hardware_QM04-38b <> caves-1623/204/subsoil/hardware_QM04-38b
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15874, now:15878)
+> > > > > - Include path found, including - caves-1623/204/subsoil/nightsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/nightsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: nightsoil
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/nightsoil <> caves-1623/204/subsoil/nightsoil
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15878, now:15884)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippocratic
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: hippocratic
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/hippocratic <> caves-1623/204/subsoil/hippocratic
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15884, now:15905)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippocratic2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: hippocratic2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/hippocratic2 <> caves-1623/204/subsoil/hippocratic2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 15905, now:15925)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: software2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/software2 <> caves-1623/204/subsoil/software2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 15925, now:15954)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: software3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/software3 <> caves-1623/204/subsoil/software3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15954, now:15961)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: whereoware
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/whereoware <> caves-1623/204/subsoil/whereoware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 31 (previous: 15961, now:15992)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: whereoware2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/whereoware2 <> caves-1623/204/subsoil/whereoware2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15992, now:15995)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: whereoware3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/whereoware3 <> caves-1623/204/subsoil/whereoware3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15995, now:16002)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: whereoware4
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/whereoware4 <> caves-1623/204/subsoil/whereoware4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 16002, now:16011)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: whereoware5
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/whereoware5 <> caves-1623/204/subsoil/whereoware5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 16011, now:16013)
+> > > > > - Include path found, including - caves-1623/204/subsoil/wareforartthou
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: wareforartthou
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/wareforartthou <> caves-1623/204/subsoil/wareforartthou
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 16013, now:16041)
+> > > > > - Include path found, including - caves-1623/204/subsoil/wareforartthou2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: wareforartthou2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/wareforartthou2 <> caves-1623/204/subsoil/wareforartthou2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16041, now:16062)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: stupidhole
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/stupidhole <> caves-1623/204/subsoil/stupidhole
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 16062, now:16071)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: stupidhole2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/stupidhole2 <> caves-1623/204/subsoil/stupidhole2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16071, now:16092)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: stupidhole3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/stupidhole3 <> caves-1623/204/subsoil/stupidhole3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 16092, now:16099)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: granddayout
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/granddayout <> caves-1623/204/subsoil/granddayout
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 16099, now:16113)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: granddayout2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/granddayout2 <> caves-1623/204/subsoil/granddayout2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 51 (previous: 16113, now:16164)
+> > > > > - Include path found, including - caves-1623/204/subsoil/birdonawire
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: birdonawire
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/birdonawire <> caves-1623/204/subsoil/birdonawire
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 16164, now:16170)
+> > > > > - Include path found, including - caves-1623/204/subsoil/birdonawire2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: birdonawire2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/birdonawire2 <> caves-1623/204/subsoil/birdonawire2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 16170, now:16175)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: granddayout3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subsoil/granddayout3 <> caves-1623/204/subsoil/granddayout3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 16175, now:16177)
+> > > > > LEGS: 544 (previous: 15633, now:16177)
+> > > > - Include path found, including - caves-1623/204/subway/subway
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/204/204 <> caves-1623/204/subway/subway
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for: subway
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/subway
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/subway/apocalypse
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/apocalypse
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: apocalypse
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/apocalypse <> caves-1623/204/subway/apocalypse
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 16177, now:16190)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: thetube
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/thetube <> caves-1623/204/subway/thetube
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16190, now:16211)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: thetube2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/thetube2 <> caves-1623/204/subway/thetube2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 16211, now:16234)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: thetube3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/thetube3 <> caves-1623/204/subway/thetube3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 16234, now:16262)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: thetube4
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/thetube4 <> caves-1623/204/subway/thetube4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 35 (previous: 16262, now:16297)
+> > > > > - Include path found, including - caves-1623/204/subway/morningtoncrescent
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/morningtoncrescent
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for: morningtoncrescent
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/subway/morningtoncrescent <> caves-1623/204/subway/morningtoncrescent
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 16297, now:16312)
+> > > > > LEGS: 135 (previous: 16177, now:16312)
+[<Cave: 1623-204>]
+> > > > - Begin found for: slimylink
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > LEGS: 0 (previous: 16312, now:16312)
+> > > - Include path found, including - caves-1623/258/258
+> > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - MEM:49.84375 Reading. parent:kataster/1623 <> caves-1623/258/258
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - Begin found for: 258
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/258
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkeyall
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkeyall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey <> caves-1623/258/stonemonkey/stonemonkey
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 17 (previous: 16312, now:16329)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey2 <> caves-1623/258/stonemonkey/stonemonkey2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16329, now:16334)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey3 <> caves-1623/258/stonemonkey/stonemonkey3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16334, now:16348)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey4
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey4
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey4 <> caves-1623/258/stonemonkey/stonemonkey4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 13 (previous: 16348, now:16361)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey5
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey5
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey5 <> caves-1623/258/stonemonkey/stonemonkey5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 9 (previous: 16361, now:16370)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey6
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey6
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey6 <> caves-1623/258/stonemonkey/stonemonkey6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16370, now:16375)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey7
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey7
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey7 <> caves-1623/258/stonemonkey/stonemonkey7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16375, now:16380)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey8
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey8
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey8
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey8 <> caves-1623/258/stonemonkey/stonemonkey8
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16380, now:16390)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey9
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey9
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: stonemonkey9
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stonemonkey/stonemonkey9 <> caves-1623/258/stonemonkey/stonemonkey9
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16390, now:16394)
+> > > > - Include path found, including - caves-1623/258/hydra/hydra
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hydra
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Include path found, including - caves-1623/258/hydra/kraken
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kraken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: kraken
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/kraken <> caves-1623/258/hydra/kraken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16394, now:16408)
+> > > > > - Include path found, including - caves-1623/258/hydra/tentacle
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/tentacle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: tentacle
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/tentacle <> caves-1623/258/hydra/tentacle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 8 (previous: 16408, now:16416)
+> > > > > - Include path found, including - caves-1623/258/hydra/livingthedream
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/livingthedream
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: livingthedream
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/livingthedream <> caves-1623/258/hydra/livingthedream
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 30 (previous: 16416, now:16446)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers <> caves-1623/258/hydra/slackers
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 75 (previous: 16446, now:16521)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers2 <> caves-1623/258/hydra/slackers2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 18 (previous: 16521, now:16539)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers3 <> caves-1623/258/hydra/slackers3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16539, now:16545)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers4
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers4
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers4 <> caves-1623/258/hydra/slackers4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 26 (previous: 16545, now:16571)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers5
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers5
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers5 <> caves-1623/258/hydra/slackers5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 31 (previous: 16571, now:16602)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers6
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers6
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers6 <> caves-1623/258/hydra/slackers6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16602, now:16606)
+> > > > > - Include path found, including - caves-1623/258/hydra/wrongcustard
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/wrongcustard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: wrongcustard
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/wrongcustard <> caves-1623/258/hydra/wrongcustard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16606, now:16613)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers7
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackers7
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackers7 <> caves-1623/258/hydra/slackers7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 3 (previous: 16613, now:16616)
+> > > > > - Include path found, including - caves-1623/258/hydra/lobsterpot
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lobsterpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: lobsterpot
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/lobsterpot <> caves-1623/258/hydra/lobsterpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16616, now:16626)
+> > > > > - Include path found, including - caves-1623/258/hydra/kippercock
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kippercock
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: kippercock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/kippercock <> caves-1623/258/hydra/kippercock
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16626, now:16640)
+> > > > > - Include path found, including - caves-1623/258/hydra/indianropetrick
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/indianropetrick
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: indianropetrick
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/indianropetrick <> caves-1623/258/hydra/indianropetrick
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16640, now:16646)
+> > > > > - Include path found, including - caves-1623/258/hydra/songoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: songoftheearth
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: part1
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 13 (previous: 16646, now:16659)
+> > > > > - Include path found, including - caves-1623/258/hydra/dontstopmenow
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/dontstopmenow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: dontstopmenow
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/dontstopmenow <> caves-1623/258/hydra/dontstopmenow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 24 (previous: 16659, now:16683)
+> > > > > - Include path found, including - caves-1623/258/hydra/screamer
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/screamer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: screamer
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/screamer <> caves-1623/258/hydra/screamer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16683, now:16688)
+> > > > > - Include path found, including - caves-1623/258/hydra/papawpassage
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/papawpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: papawpassage
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/papawpassage <> caves-1623/258/hydra/papawpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 3 (previous: 16688, now:16691)
+> > > > > - Include path found, including - caves-1623/258/hydra/therestherub
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/therestherub
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: therestherub
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/therestherub <> caves-1623/258/hydra/therestherub
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 12 (previous: 16691, now:16703)
+> > > > > - Include path found, including - caves-1623/258/hydra/biglad
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/biglad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: biglad
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/biglad <> caves-1623/258/hydra/biglad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 28 (previous: 16703, now:16731)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackerstidyup1
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackerstidyup1
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackerstidyup1 <> caves-1623/258/hydra/slackerstidyup1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16731, now:16737)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackerstidyup2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: slackerstidyup2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/slackerstidyup2 <> caves-1623/258/hydra/slackerstidyup2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16737, now:16744)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: snakecharmer
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/snakecharmer <> caves-1623/258/hydra/snakecharmer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 27 (previous: 16744, now:16771)
+> > > > > - Include path found, including - caves-1623/258/hydra/mastercave
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/mastercave
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: mastercave
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/mastercave <> caves-1623/258/hydra/mastercave
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16771, now:16775)
+> > > > > - Include path found, including - caves-1623/258/hydra/gryke-of-the-earth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/gryke-of-the-earth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: gryke-of-the-earth
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/gryke-of-the-earth <> caves-1623/258/hydra/gryke-of-the-earth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 12 (previous: 16775, now:16787)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: snakecharmer2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/snakecharmer2 <> caves-1623/258/hydra/snakecharmer2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16787, now:16809)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: snakecharmer3
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/snakecharmer3 <> caves-1623/258/hydra/snakecharmer3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 15 (previous: 16809, now:16824)
+> > > > > - Include path found, including - caves-1623/258/hydra/hipstersreturn
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hipstersreturn
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: hipstersreturn
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/hipstersreturn <> caves-1623/258/hydra/hipstersreturn
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16824, now:16834)
+> > > > > - Include path found, including - caves-1623/258/hydra/beckoning_silence
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/beckoning_silence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: beckoning_silence
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/beckoning_silence <> caves-1623/258/hydra/beckoning_silence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16834, now:16856)
+> > > > > - Include path found, including - caves-1623/258/hydra/theloserlido
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/theloserlido
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: theloserlido
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/theloserlido <> caves-1623/258/hydra/theloserlido
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16856, now:16878)
+> > > > > - Include path found, including - caves-1623/258/hydra/bahamastunnel
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/bahamastunnel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: bahamastunnel
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/bahamastunnel <> caves-1623/258/hydra/bahamastunnel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16878, now:16885)
+> > > > > - Include path found, including - caves-1623/258/hydra/unfathomablestupidity
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/unfathomablestupidity
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: unfathomablestupidity
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/unfathomablestupidity <> caves-1623/258/hydra/unfathomablestupidity
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16885, now:16890)
+> > > > > - Include path found, including - caves-1623/258/hydra/lower_snakebite
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lower_snakebite
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: lower_snakebite
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/lower_snakebite <> caves-1623/258/hydra/lower_snakebite
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16890, now:16900)
+> > > > > - Include path found, including - caves-1623/258/hydra/radiosilence
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/radiosilence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: radiosilence
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/radiosilence <> caves-1623/258/hydra/radiosilence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16900, now:16907)
+> > > > > - Include path found, including - caves-1623/258/hydra/scumoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scumoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: scumoftheearth
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/scumoftheearth <> caves-1623/258/hydra/scumoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 512 (previous: 16907, now:17419)
+> > > > > - Include path found, including - caves-1623/258/hydra/scum2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scum2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for: scum2
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hydra/scum2 <> caves-1623/258/hydra/scum2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 75 (previous: 17419, now:17494)
+> > > > - Include path found, including - caves-1623/258/1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: 1
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/1 <> caves-1623/258/1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17494, now:17498)
+> > > > - Include path found, including - caves-1623/258/2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: 2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/2 <> caves-1623/258/2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 24 (previous: 17498, now:17522)
+> > > > - Include path found, including - caves-1623/258/ribsknodel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: ribsknodel
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/ribsknodel <> caves-1623/258/ribsknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 18 (previous: 17522, now:17540)
+> > > > - Include path found, including - caves-1623/258/ribsknodel2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: ribsknodel2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/ribsknodel2 <> caves-1623/258/ribsknodel2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17540, now:17543)
+> > > > - Include path found, including - caves-1623/258/skrautlink
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/skrautlink
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: skrautlink
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/skrautlink <> caves-1623/258/skrautlink
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 1 (previous: 17543, now:17544)
+> > > > - Include path found, including - caves-1623/258/sauerkraut
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/sauerkraut
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: sauerkraut
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/sauerkraut <> caves-1623/258/sauerkraut
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17544, now:17548)
+> > > > - Include path found, including - caves-1623/258/gknodel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/gknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: gknodel
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/gknodel <> caves-1623/258/gknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 17548, now:17564)
+> > > > - Include path found, including - caves-1623/258/literalnorth
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: literalnorth
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/literalnorth <> caves-1623/258/literalnorth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 17564, now:17581)
+> > > > - Include path found, including - caves-1623/258/squirrel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/squirrel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: squirrel
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/squirrel <> caves-1623/258/squirrel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17581, now:17591)
+> > > > - Include path found, including - caves-1623/258/oompah
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: oompah
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/oompah <> caves-1623/258/oompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17591, now:17596)
+> > > > - Include path found, including - caves-1623/258/apfelstrudel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/apfelstrudel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: apfelstrudel
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/apfelstrudel <> caves-1623/258/apfelstrudel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 18 (previous: 17596, now:17614)
+> > > > - Include path found, including - caves-1623/258/literalnorth2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: literalnorth2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/literalnorth2 <> caves-1623/258/literalnorth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 17614, now:17616)
+> > > > - Include path found, including - caves-1623/258/literalnorth3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: literalnorth3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/literalnorth3 <> caves-1623/258/literalnorth3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17616, now:17620)
+> > > > - Include path found, including - caves-1623/258/maxpleasure1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: maxpleasure1
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/maxpleasure1 <> caves-1623/258/maxpleasure1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 24 (previous: 17620, now:17644)
+> > > > - Include path found, including - caves-1623/258/dubiouspleasure
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/dubiouspleasure
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: dubiouspleasure
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/dubiouspleasure <> caves-1623/258/dubiouspleasure
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17644, now:17654)
+> > > > - Include path found, including - caves-1623/258/maxpleasure2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: maxpleasure2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/maxpleasure2 <> caves-1623/258/maxpleasure2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 37 (previous: 17654, now:17691)
+> > > > - Include path found, including - caves-1623/258/hedonismhighway
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hedonismhighway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: hedonismhighway
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hedonismhighway <> caves-1623/258/hedonismhighway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17691, now:17695)
+> > > > - Include path found, including - caves-1623/258/flyinghigh
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flyinghigh
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/flyinghigh <> caves-1623/258/flyinghigh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 17695, now:17718)
+> > > > - Include path found, including - caves-1623/258/flyinghigh2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flyinghigh2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/flyinghigh2 <> caves-1623/258/flyinghigh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17718, now:17723)
+> > > > - Include path found, including - caves-1623/258/pantinsales
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/pantinsales
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: pantinsales
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/pantinsales <> caves-1623/258/pantinsales
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17723, now:17728)
+> > > > - Include path found, including - caves-1623/258/maxpleasure3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: maxpleasure3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/maxpleasure3 <> caves-1623/258/maxpleasure3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 42 (previous: 17728, now:17770)
+> > > > - Include path found, including - caves-1623/258/maxpleasure4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: maxpleasure4
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/maxpleasure4 <> caves-1623/258/maxpleasure4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17770, now:17773)
+> > > > - Include path found, including - caves-1623/258/literalnorth4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: literalnorth4
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/literalnorth4 <> caves-1623/258/literalnorth4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17773, now:17779)
+> > > > - Include path found, including - caves-1623/258/maxpleasure5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: maxpleasure5
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/maxpleasure5 <> caves-1623/258/maxpleasure5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17779, now:17782)
+> > > > - Include path found, including - caves-1623/258/justforalaugh
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: justforalaugh
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/justforalaugh <> caves-1623/258/justforalaugh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 17782, now:17805)
+> > > > - Include path found, including - caves-1623/258/letsgetnaked
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/letsgetnaked
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: letsgetnaked
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/letsgetnaked <> caves-1623/258/letsgetnaked
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 17805, now:17827)
+> > > > - Include path found, including - caves-1623/258/maxpleasure6
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: maxpleasure6
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/maxpleasure6 <> caves-1623/258/maxpleasure6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17827, now:17830)
+> > > > - Include path found, including - caves-1623/258/justforalaugh2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: justforalaugh2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/justforalaugh2 <> caves-1623/258/justforalaugh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17830, now:17836)
+> > > > - Include path found, including - caves-1623/258/loompah
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/loompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: loompah
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/loompah <> caves-1623/258/loompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17836, now:17841)
+> > > > - Include path found, including - caves-1623/258/delicious1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: delicious1
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/delicious1 <> caves-1623/258/delicious1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 17841, now:17843)
+> > > > - Include path found, including - caves-1623/258/delicious2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: delicious2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/delicious2 <> caves-1623/258/delicious2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17843, now:17853)
+> > > > - Include path found, including - caves-1623/258/darkfumblings
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/darkfumblings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: darkfumblings
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/darkfumblings <> caves-1623/258/darkfumblings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17853, now:17859)
+> > > > - Include path found, including - caves-1623/258/bouldersurfer
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/bouldersurfer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: bouldersurfer
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/bouldersurfer <> caves-1623/258/bouldersurfer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 17859, now:17880)
+> > > > - Include path found, including - caves-1623/258/naughtynaughty
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: naughtynaughty
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/naughtynaughty <> caves-1623/258/naughtynaughty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 37 (previous: 17880, now:17917)
+> > > > - Include path found, including - caves-1623/258/flapjackchoke
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flapjackchoke
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flapjackchoke
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/flapjackchoke <> caves-1623/258/flapjackchoke
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 17917, now:17928)
+> > > > - Include path found, including - caves-1623/258/rockyroad
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/rockyroad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: rockyroad
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/rockyroad <> caves-1623/258/rockyroad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 46 (previous: 17928, now:17974)
+> > > > - Include path found, including - caves-1623/258/flyinghigh3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flyinghigh3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/flyinghigh3 <> caves-1623/258/flyinghigh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17974, now:17984)
+> > > > - Include path found, including - caves-1623/258/gravityalwayswins
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/gravityalwayswins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: gravityalwayswins
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/gravityalwayswins <> caves-1623/258/gravityalwayswins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 17984, now:18005)
+> > > > - Include path found, including - caves-1623/258/thinredline
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thinredline
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thinredline <> caves-1623/258/thinredline
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 18005, now:18011)
+> > > > - Include path found, including - caves-1623/258/blindandbroken
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/blindandbroken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: blindandbroken
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/blindandbroken <> caves-1623/258/blindandbroken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18011, now:18019)
+> > > > - Include path found, including - caves-1623/258/franklyfreezing
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: franklyfreezing
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/franklyfreezing <> caves-1623/258/franklyfreezing
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18019, now:18027)
+> > > > - Include path found, including - caves-1623/258/franklyfreezing2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: franklyfreezing2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/franklyfreezing2 <> caves-1623/258/franklyfreezing2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18027, now:18043)
+> > > > - Include path found, including - caves-1623/258/literalnorth5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: literalnorth5
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/literalnorth5 <> caves-1623/258/literalnorth5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18043, now:18047)
+> > > > - Include path found, including - caves-1623/258/naughtynaughty2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: naughtynaughty2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/naughtynaughty2 <> caves-1623/258/naughtynaughty2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 26 (previous: 18047, now:18073)
+> > > > - Include path found, including - caves-1623/258/thinredline2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thinredline2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thinredline2 <> caves-1623/258/thinredline2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 18073, now:18083)
+> > > > - Include path found, including - caves-1623/258/toomuch
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/toomuch
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: toomuch
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/toomuch <> caves-1623/258/toomuch
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 18083, now:18095)
+> > > > - Include path found, including - caves-1623/258/sleepingbeauty
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/sleepingbeauty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: sleepingbeauty
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/sleepingbeauty <> caves-1623/258/sleepingbeauty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18095, now:18099)
+> > > > - Include path found, including - caves-1623/258/usualsuspects
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: usualsuspects
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: 1
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 27 (previous: 18099, now:18126)
+> > > > - Include path found, including - caves-1623/258/marconianempire1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/marconianempire1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: marconianempire1
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/marconianempire1 <> caves-1623/258/marconianempire1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18126, now:18140)
+> > > > - Include path found, including - caves-1623/258/stomachulsa
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: stomachulsa
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stomachulsa <> caves-1623/258/stomachulsa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18140, now:18157)
+> > > > - Include path found, including - caves-1623/258/dampsquib
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/dampsquib
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: dampsquib
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/dampsquib <> caves-1623/258/dampsquib
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18157, now:18164)
+> > > > - Include path found, including - caves-1623/258/stomachulsa2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: stomachulsa2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stomachulsa2 <> caves-1623/258/stomachulsa2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18164, now:18172)
+> > > > - Include path found, including - caves-1623/258/cleadjackpot
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/cleadjackpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: cleadjackpot
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/cleadjackpot <> caves-1623/258/cleadjackpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18172, now:18186)
+> > > > - Include path found, including - caves-1623/258/alphabetsoup
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/alphabetsoup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: alphabetsoup
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/alphabetsoup <> caves-1623/258/alphabetsoup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18186, now:18197)
+> > > > - Include path found, including - caves-1623/258/goodygoody
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/goodygoody
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: goodygoody
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/goodygoody <> caves-1623/258/goodygoody
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 63 (previous: 18197, now:18260)
+> > > > - Include path found, including - caves-1623/258/atobtoc
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/atobtoc
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: atobtoc
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/atobtoc <> caves-1623/258/atobtoc
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18260, now:18271)
+> > > > - Include path found, including - caves-1623/258/stringtheory
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/stringtheory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: stringtheory
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/stringtheory <> caves-1623/258/stringtheory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 18271, now:18292)
+> > > > - Include path found, including - caves-1623/258/konigsbergpassage
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsbergpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: konigsbergpassage
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/konigsbergpassage <> caves-1623/258/konigsbergpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 35 (previous: 18292, now:18327)
+> > > > - Include path found, including - caves-1623/258/usualsuspects4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: usualsuspects4
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/usualsuspects4 <> caves-1623/258/usualsuspects4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18327, now:18341)
+> > > > - Include path found, including - caves-1623/258/usualsuspects5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: usualsuspects5
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/usualsuspects5 <> caves-1623/258/usualsuspects5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18341, now:18349)
+> > > > - Include path found, including - caves-1623/258/usualsuspects6
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: usualsuspects6
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/usualsuspects6 <> caves-1623/258/usualsuspects6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18349, now:18362)
+> > > > - Include path found, including - caves-1623/258/sovein
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: sovein
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/sovein <> caves-1623/258/sovein
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18362, now:18379)
+> > > > - Include path found, including - caves-1623/258/konigsberg2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: konigsberg2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/konigsberg2 <> caves-1623/258/konigsberg2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 18379, now:18389)
+> > > > - Include path found, including - caves-1623/258/konigsberg3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: konigsberg3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/konigsberg3 <> caves-1623/258/konigsberg3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 19 (previous: 18389, now:18408)
+> > > > - Include path found, including - caves-1623/258/fallempire
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/fallempire
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: fallempire
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/fallempire <> caves-1623/258/fallempire
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18408, now:18415)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: pigeondroppings
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/pigeondroppings <> caves-1623/258/pigeondroppings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18415, now:18432)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: pigeondroppings2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/pigeondroppings2 <> caves-1623/258/pigeondroppings2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18432, now:18449)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: pigeondroppings3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/pigeondroppings3 <> caves-1623/258/pigeondroppings3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 26 (previous: 18449, now:18475)
+> > > > - Include path found, including - caves-1623/258/trident
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: trident
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/trident <> caves-1623/258/trident
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 15 (previous: 18475, now:18490)
+> > > > - Include path found, including - caves-1623/258/hastespeed
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/hastespeed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: hastespeed
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/hastespeed <> caves-1623/258/hastespeed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 18490, now:18512)
+> > > > - Include path found, including - caves-1623/258/straightchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: straightchoice
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/straightchoice <> caves-1623/258/straightchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 25 (previous: 18512, now:18537)
+> > > > - Include path found, including - caves-1623/258/arcticangle
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/arcticangle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: arcticangle
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/arcticangle <> caves-1623/258/arcticangle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 19 (previous: 18537, now:18556)
+> > > > - Include path found, including - caves-1623/258/straightchoiceexposed
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoiceexposed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: straightchoiceexposed
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/straightchoiceexposed <> caves-1623/258/straightchoiceexposed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 18556, now:18561)
+> > > > - Include path found, including - caves-1623/258/beerandsunshine
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/beerandsunshine
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: beerandsunshine
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/beerandsunshine <> caves-1623/258/beerandsunshine
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18561, now:18564)
+> > > > - Include path found, including - caves-1623/258/trident2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: trident2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/trident2 <> caves-1623/258/trident2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18564, now:18571)
+> > > > - Include path found, including - caves-1623/258/konigsberg4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: konigsberg4
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/konigsberg4 <> caves-1623/258/konigsberg4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 18571, now:18593)
+> > > > - Include path found, including - caves-1623/258/sovein2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: sovein2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/sovein2 <> caves-1623/258/sovein2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18593, now:18600)
+> > > > - Include path found, including - caves-1623/258/downtoearth
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: downtoearth
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/downtoearth <> caves-1623/258/downtoearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18600, now:18603)
+> > > > - Include path found, including - caves-1623/258/konigsberg5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: konigsberg5
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/konigsberg5 <> caves-1623/258/konigsberg5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 29 (previous: 18603, now:18632)
+> > > > - Include path found, including - caves-1623/258/downtoearth2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: downtoearth2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/downtoearth2 <> caves-1623/258/downtoearth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18632, now:18643)
+> > > > - Include path found, including - caves-1623/258/flyinghigh4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flyinghigh4
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/flyinghigh4 <> caves-1623/258/flyinghigh4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18643, now:18647)
+> > > > - Include path found, including - caves-1623/258/flyinghigh5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flyinghigh5
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/flyinghigh5 <> caves-1623/258/flyinghigh5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18647, now:18658)
+> > > > - Include path found, including - caves-1623/258/gawbypass
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/gawbypass
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: gawbypass
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/gawbypass <> caves-1623/258/gawbypass
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18658, now:18666)
+> > > > - Include path found, including - caves-1623/258/iceflow
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/iceflow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: iceflow
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/iceflow <> caves-1623/258/iceflow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 18666, now:18686)
+> > > > - Include path found, including - caves-1623/258/rampant
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/rampant
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: rampant
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/rampant <> caves-1623/258/rampant
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 18686, now:18698)
+> > > > - Include path found, including - caves-1623/258/tagbolts
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/tagbolts
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: tagbolta
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/tagbolts <> caves-1623/258/tagbolts
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 1 (previous: 18698, now:18699)
+> > > > - Include path found, including - caves-1623/258/popcornrift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/popcornrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: popcornrift
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/popcornrift <> caves-1623/258/popcornrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18699, now:18715)
+> > > > - Include path found, including - caves-1623/258/westsidestory
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/westsidestory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: westsidestory
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/westsidestory <> caves-1623/258/westsidestory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 18715, now:18721)
+> > > > - Include path found, including - caves-1623/258/sovein3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: sovein3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/sovein3 <> caves-1623/258/sovein3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 18721, now:18723)
+> > > > - Include path found, including - caves-1623/258/intothinair
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/intothinair
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: intothinair
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/intothinair <> caves-1623/258/intothinair
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18723, now:18736)
+> > > > - Include path found, including - caves-1623/258/tenthousandbusstops
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/tenthousandbusstops
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: tenthousandbusstops
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/tenthousandbusstops <> caves-1623/258/tenthousandbusstops
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18736, now:18743)
+> > > > - Include path found, including - caves-1623/258/bobon
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/bobon
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: bobon
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/bobon <> caves-1623/258/bobon
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18743, now:18756)
+> > > > - Include path found, including - caves-1623/258/aboveandbeyond
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/aboveandbeyond
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: aboveandbeyond
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/aboveandbeyond <> caves-1623/258/aboveandbeyond
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 18756, now:18779)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thirtyninesteps
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thirtyninesteps <> caves-1623/258/thirtyninesteps
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 39 (previous: 18779, now:18818)
+> > > > - Include path found, including - caves-1623/258/marchofthepenguins
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/marchofthepenguins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: marchofthepenguins
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/marchofthepenguins <> caves-1623/258/marchofthepenguins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 40 (previous: 18818, now:18858)
+> > > > - Include path found, including - caves-1623/258/aboveandbeyond2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/aboveandbeyond2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: aboveandbeyond2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/aboveandbeyond2 <> caves-1623/258/aboveandbeyond2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 28 (previous: 18858, now:18886)
+> > > > - Include path found, including - caves-1623/258/thatsthewaytodoit
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thatsthewaytodoit
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thatsthewaytodoit
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thatsthewaytodoit <> caves-1623/258/thatsthewaytodoit
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 31 (previous: 18886, now:18917)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thirtyninesteps2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thirtyninesteps2 <> caves-1623/258/thirtyninesteps2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18917, now:18920)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thirtyninesteps3
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thirtyninesteps3 <> caves-1623/258/thirtyninesteps3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18920, now:18924)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thirtyninesteps4
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/thirtyninesteps4 <> caves-1623/258/thirtyninesteps4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 18924, now:18926)
+> > > > - Include path found, including - caves-1623/258/itsbehindyou
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/itsbehindyou
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: itsbehindyou
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/itsbehindyou <> caves-1623/258/itsbehindyou
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18926, now:18934)
+> > > > - Include path found, including - caves-1623/258/procrastination
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/procrastination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: procrastination
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/procrastination <> caves-1623/258/procrastination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18934, now:18950)
+> > > > - Include path found, including - caves-1623/258/climbofthepenguins1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/climbofthepenguins1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: climbofthepenguins1
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/climbofthepenguins1 <> caves-1623/258/climbofthepenguins1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18950, now:18953)
+> > > > - Include path found, including - caves-1623/258/climbofthepenguins2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/climbofthepenguins2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: climbofthepenguins2
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/climbofthepenguins2 <> caves-1623/258/climbofthepenguins2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18953, now:18964)
+> > > > - Include path found, including - caves-1623/258/penguinacrobatics
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinacrobatics
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: penguinacrobatics
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/penguinacrobatics <> caves-1623/258/penguinacrobatics
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 86 (previous: 18964, now:19050)
+> > > > - Include path found, including - caves-1623/258/penguinrift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: penguinrift
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/penguinrift <> caves-1623/258/penguinrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19050, now:19070)
+> > > > - Include path found, including - caves-1623/258/innerflapcontinuation
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/innerflapcontinuation
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: innerflapcontinuation
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/innerflapcontinuation <> caves-1623/258/innerflapcontinuation
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19070, now:19090)
+> > > > - Include path found, including - caves-1623/258/suicidalvampyre
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/suicidalvampyre
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: suicidalvampyre
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/suicidalvampyre <> caves-1623/258/suicidalvampyre
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19090, now:19094)
+> > > > - Include path found, including - caves-1623/258/bringontheclowns
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/bringontheclowns
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: bringontheclowns
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/bringontheclowns <> caves-1623/258/bringontheclowns
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19094, now:19102)
+> > > > - Include path found, including - caves-1623/258/determination
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/determination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: determination
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/determination <> caves-1623/258/determination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19102, now:19110)
+> > > > - Include path found, including - caves-1623/258/determination2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/determination2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: determination2
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/determination2 <> caves-1623/258/determination2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19110, now:19127)
+> > > > - Include path found, including - caves-1623/258/surfergirl
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/surfergirl
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: surfergirl
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/surfergirl <> caves-1623/258/surfergirl
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19127, now:19131)
+> > > > - Include path found, including - caves-1623/258/bringontheclowns2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/bringontheclowns2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: bringontheclowns2
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/bringontheclowns2 <> caves-1623/258/bringontheclowns2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19131, now:19136)
+> > > > - Include path found, including - caves-1623/258/numberofthebeast
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/numberofthebeast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: numberofthebeast
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/numberofthebeast <> caves-1623/258/numberofthebeast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 19136, now:19149)
+> > > > - Include path found, including - caves-1623/258/numberofthebeast2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/numberofthebeast2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: numberofthebeast2
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/numberofthebeast2 <> caves-1623/258/numberofthebeast2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19149, now:19153)
+> > > > - Include path found, including - caves-1623/258/justforalaugh3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: justforalaugh3
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/justforalaugh3 <> caves-1623/258/justforalaugh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 19153, now:19155)
+> > > > - Include path found, including - caves-1623/258/downgrade
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/downgrade
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: downgrade
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/downgrade <> caves-1623/258/downgrade
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 19155, now:19177)
+> > > > - Include path found, including - caves-1623/258/boomboom
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/boomboom
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: boomboom
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/boomboom <> caves-1623/258/boomboom
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19177, now:19185)
+> > > > - Include path found, including - caves-1623/258/window
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/window
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: window
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/window <> caves-1623/258/window
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 19185, now:19199)
+> > > > - Include path found, including - caves-1623/258/crossword
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/crossword
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: crossword
+> > > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/crossword <> caves-1623/258/crossword
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 39 (previous: 19199, now:19238)
+> > > > - Include path found, including - caves-1623/258/oompharift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.85546875 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompharift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: oompharift
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/258/oompharift <> caves-1623/258/oompharift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 19238, now:19250)
+> > > > - Include path found, including - caves-1623/258/withintheabove
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.859375 Reading. parent:caves-1623/258/258 <> caves-1623/258/withintheabove
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: withintheabove
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/258/withintheabove <> caves-1623/258/withintheabove
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19250, now:19258)
+> > > > - Include path found, including - caves-1623/258/trireme
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.859375 Reading. parent:caves-1623/258/258 <> caves-1623/258/trireme
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: trireme
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/258/trireme <> caves-1623/258/trireme
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19258, now:19263)
+> > > > - Include path found, including - caves-1623/258/ducksonice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.859375 Reading. parent:caves-1623/258/258 <> caves-1623/258/ducksonice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: ducksonice
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/258/ducksonice <> caves-1623/258/ducksonice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19263, now:19280)
+> > > > - Include path found, including - caves-1623/258/coldladyslegs1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.859375 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldladyslegs1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: coldladyslegs1
+> > > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/coldladyslegs1 <> caves-1623/258/coldladyslegs1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 51 (previous: 19280, now:19331)
+> > > > - Include path found, including - caves-1623/258/coldfinger
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: coldfinger
+> > > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/coldfinger <> caves-1623/258/coldfinger
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 15 (previous: 19331, now:19346)
+> > > > - Include path found, including - caves-1623/258/coldfinger2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: coldfinger2
+> > > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/coldfinger2 <> caves-1623/258/coldfinger2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19346, now:19352)
+> > > > - Include path found, including - caves-1623/258/coldfinger3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: coldfinger3
+> > > > > > - MEM:49.86328125 Reading. parent:caves-1623/258/coldfinger3 <> caves-1623/258/coldfinger3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19352, now:19369)
+> > > > - Include path found, including - caves-1623/258/thewrongchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8671875 Reading. parent:caves-1623/258/258 <> caves-1623/258/thewrongchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thewrongchoice
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/thewrongchoice <> caves-1623/258/thewrongchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 27 (previous: 19369, now:19396)
+> > > > - Include path found, including - caves-1623/258/nochoiceatall
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/nochoiceatall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: nochoiceatall
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/nochoiceatall <> caves-1623/258/nochoiceatall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 19396, now:19408)
+> > > > - Include path found, including - caves-1623/258/nochoiceatall2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/nochoiceatall2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: nochoiceatall2
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/nochoiceatall2 <> caves-1623/258/nochoiceatall2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19408, now:19413)
+> > > > - Include path found, including - caves-1623/258/generalscrot
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/generalscrot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: generalscrot
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/generalscrot <> caves-1623/258/generalscrot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 19413, now:19416)
+> > > > - Include path found, including - caves-1623/258/feckingtight
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/feckingtight
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: feckingtight
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/feckingtight <> caves-1623/258/feckingtight
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19416, now:19424)
+> > > > - Include path found, including - caves-1623/258/grikeexpectations
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/grikeexpectations
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: grikeexpectations
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/grikeexpectations <> caves-1623/258/grikeexpectations
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 19424, now:19438)
+> > > > - Include path found, including - caves-1623/258/inferno
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/inferno
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: inferno
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/inferno <> caves-1623/258/inferno
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19438, now:19458)
+> > > > - Include path found, including - caves-1623/258/anthemusa
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/anthemusa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: anthemusa
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/anthemusa <> caves-1623/258/anthemusa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19458, now:19475)
+> > > > - Include path found, including - caves-1623/258/flashhard
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flashhard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flashhard
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/flashhard <> caves-1623/258/flashhard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19475, now:19479)
+> > > > - Include path found, including - caves-1623/258/flashhard2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/flashhard2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: flashhard2
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/flashhard2 <> caves-1623/258/flashhard2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 9 (previous: 19479, now:19488)
+> > > > - Include path found, including - caves-1623/258/claytonscockup
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/claytonscockup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: claytonscockup
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/claytonscockup <> caves-1623/258/claytonscockup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 19488, now:19495)
+> > > > - Include path found, including - caves-1623/258/penguinfellatio2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinfellatio2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: penguinfellatio2
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/penguinfellatio2 <> caves-1623/258/penguinfellatio2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 19495, now:19506)
+> > > > - Include path found, including - caves-1623/258/daftchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: daftchoice
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/daftchoice <> caves-1623/258/daftchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 38 (previous: 19506, now:19544)
+> > > > - Include path found, including - caves-1623/258/daftchoice2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: daftchoice2
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/daftchoice2 <> caves-1623/258/daftchoice2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19544, now:19552)
+> > > > - Include path found, including - caves-1623/258/daftchoice3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: daftchoice3
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/daftchoice3 <> caves-1623/258/daftchoice3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19552, now:19558)
+> > > > - Include path found, including - caves-1623/258/whatwouldyourmothersay
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/whatwouldyourmothersay
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: whatwouldyourmothersay
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/whatwouldyourmothersay <> caves-1623/258/whatwouldyourmothersay
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 19558, now:19574)
+> > > > - Include path found, including - caves-1623/258/wrongway
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/wrongway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: wrongway
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/wrongway <> caves-1623/258/wrongway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 51 (previous: 19574, now:19625)
+> > > > - Include path found, including - caves-1623/258/not_the_beast
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/not_the_beast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: not_the_beast
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/not_the_beast <> caves-1623/258/not_the_beast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 19625, now:19635)
+> > > > - Include path found, including - caves-1623/258/riggermortis
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/riggermortis
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: riggermortis
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/riggermortis <> caves-1623/258/riggermortis
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 34 (previous: 19635, now:19669)
+> > > > - Include path found, including - caves-1623/258/thebeastloop
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/thebeastloop
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: thebeastloop
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/thebeastloop <> caves-1623/258/thebeastloop
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19669, now:19674)
+> > > > - Include path found, including - caves-1623/258/beastsideleads
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/beastsideleads
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: beastsideleads
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/beastsideleads <> caves-1623/258/beastsideleads
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 19674, now:19677)
+> > > > - Include path found, including - caves-1623/258/corroborate
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/258 <> caves-1623/258/corroborate
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for: corroborate1
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/258/corroborate <> caves-1623/258/corroborate
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19677, now:19683)
+> > > > LEGS: 3371 (previous: 16312, now:19683)
+> > > - Include path found, including - caves-1623/264/264
+> > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > - MEM:49.87109375 Reading. parent:kataster/1623 <> caves-1623/264/264
+[<Cave: 1623-264>]
+> > > > - Begin found for: 264
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/264 <> caves-1623/264/264
+[<Cave: 1623-264>]
+> > > > - Include path found, including - caves-1623/264/lower_balkon/lower_balkon
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/264 <> caves-1623/264/lower_balkon/lower_balkon
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: lower_balkon
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lower_balkon
+[<Cave: 1623-264>]
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/naturecalls
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/naturecalls
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: naturecalls
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/naturecalls <> caves-1623/264/lower_balkon/naturecalls
+[<Cave: 1623-264>]
+> > > > > > LEGS: 9 (previous: 19683, now:19692)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mash
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: mash
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/mash <> caves-1623/264/lower_balkon/mash
+[<Cave: 1623-264>]
+> > > > > > LEGS: 48 (previous: 19692, now:19740)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mash2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: mash2
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/mash2 <> caves-1623/264/lower_balkon/mash2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 65 (previous: 19740, now:19805)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/hangman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: hangman
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/hangman <> caves-1623/264/lower_balkon/hangman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 145 (previous: 19805, now:19950)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangmansdaughter
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: hangmansdaughter
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/hangmansdaughter <> caves-1623/264/lower_balkon/hangmansdaughter
+[<Cave: 1623-264>]
+> > > > > > LEGS: 217 (previous: 19950, now:20167)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/prangman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/prangman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: prangman
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/prangman <> caves-1623/264/lower_balkon/prangman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 55 (previous: 20167, now:20222)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/snailtrail
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/snailtrail
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: snailtrail
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/snailtrail <> caves-1623/264/lower_balkon/snailtrail
+[<Cave: 1623-264>]
+> > > > > > LEGS: 206 (previous: 20222, now:20428)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/sluggish
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/sluggish
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: sluggish
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/sluggish <> caves-1623/264/lower_balkon/sluggish
+[<Cave: 1623-264>]
+> > > > > > LEGS: 173 (previous: 20428, now:20601)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mudslope
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: mudslope
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/mudslope <> caves-1623/264/lower_balkon/mudslope
+[<Cave: 1623-264>]
+> > > > > > LEGS: 241 (previous: 20601, now:20842)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/choked
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/choked
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: choked
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/choked <> caves-1623/264/lower_balkon/choked
+[<Cave: 1623-264>]
+> > > > > > LEGS: 152 (previous: 20842, now:20994)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mudslope2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: mudslope2
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/mudslope2 <> caves-1623/264/lower_balkon/mudslope2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 255 (previous: 20994, now:21249)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mongolrally
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mongolrally
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: mongolrally
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/mongolrally <> caves-1623/264/lower_balkon/mongolrally
+[<Cave: 1623-264>]
+> > > > > > LEGS: 398 (previous: 21249, now:21647)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/littleboy
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboy
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: littleboy
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/littleboy <> caves-1623/264/lower_balkon/littleboy
+[<Cave: 1623-264>]
+> > > > > > LEGS: 1169 (previous: 21647, now:22816)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/floodland
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/floodland
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: floodland
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/floodland <> caves-1623/264/lower_balkon/floodland
+[<Cave: 1623-264>]
+> > > > > > LEGS: 93 (previous: 22816, now:22909)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/catlitter
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/catlitter
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: catlitter
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/catlitter <> caves-1623/264/lower_balkon/catlitter
+[<Cave: 1623-264>]
+> > > > > > LEGS: 7 (previous: 22909, now:22916)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/myopia
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: myopia
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/myopia <> caves-1623/264/lower_balkon/myopia
+[<Cave: 1623-264>]
+> > > > > > LEGS: 11 (previous: 22916, now:22927)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: pitstop
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/pitstop <> caves-1623/264/lower_balkon/pitstop
+[<Cave: 1623-264>]
+> > > > > > LEGS: 56 (previous: 22927, now:22983)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/safencomfortable
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/safencomfortable
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: safencomfortable
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/safencomfortable <> caves-1623/264/lower_balkon/safencomfortable
+[<Cave: 1623-264>]
+> > > > > > LEGS: 43 (previous: 22983, now:23026)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/turnbacktime
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/turnbacktime
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: turnbacktime
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/turnbacktime <> caves-1623/264/lower_balkon/turnbacktime
+[<Cave: 1623-264>]
+> > > > > > LEGS: 21 (previous: 23026, now:23047)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: pitstop_2
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/pitstop_2 <> caves-1623/264/lower_balkon/pitstop_2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 2 (previous: 23047, now:23049)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_3
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: pitstop_3
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/pitstop_3 <> caves-1623/264/lower_balkon/pitstop_3
+[<Cave: 1623-264>]
+> > > > > > LEGS: 7 (previous: 23049, now:23056)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_4
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: pitstop_4
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/pitstop_4 <> caves-1623/264/lower_balkon/pitstop_4
+[<Cave: 1623-264>]
+> > > > > > LEGS: 9 (previous: 23056, now:23065)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/suctioncup
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/suctioncup
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: suctioncup
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/suctioncup <> caves-1623/264/lower_balkon/suctioncup
+[<Cave: 1623-264>]
+> > > > > > LEGS: 371 (previous: 23065, now:23436)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/onedirection
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/onedirection
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: onedirection
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/onedirection <> caves-1623/264/lower_balkon/onedirection
+[<Cave: 1623-264>]
+> > > > > > LEGS: 28 (previous: 23436, now:23464)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/scoopyloopy
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/scoopyloopy
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: scoopyloopy
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/scoopyloopy <> caves-1623/264/lower_balkon/scoopyloopy
+[<Cave: 1623-264>]
+> > > > > > LEGS: 12 (previous: 23464, now:23476)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/2cold2think
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/2cold2think
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: 2cold2think
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/2cold2think <> caves-1623/264/lower_balkon/2cold2think
+[<Cave: 1623-264>]
+> > > > > > LEGS: 64 (previous: 23476, now:23540)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mush
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mush
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: mush
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/mush <> caves-1623/264/lower_balkon/mush
+[<Cave: 1623-264>]
+> > > > > > LEGS: 465 (previous: 23540, now:24005)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/rubberman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubberman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: rubberman
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/rubberman <> caves-1623/264/lower_balkon/rubberman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 217 (previous: 24005, now:24222)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/rubbermanstream
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubbermanstream
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: rubbermanstream
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/rubbermanstream <> caves-1623/264/lower_balkon/rubbermanstream
+[<Cave: 1623-264>]
+> > > > > > LEGS: 86 (previous: 24222, now:24308)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/camploop
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/camploop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: camploop
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/camploop <> caves-1623/264/lower_balkon/camploop
+[<Cave: 1623-264>]
+> > > > > > LEGS: 35 (previous: 24308, now:24343)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/waterhole
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/waterhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: waterhole
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/waterhole <> caves-1623/264/lower_balkon/waterhole
+[<Cave: 1623-264>]
+> > > > > > LEGS: 18 (previous: 24343, now:24361)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboyboltclimbs
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: littleboyboltclimbs
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/littleboyboltclimbs <> caves-1623/264/lower_balkon/littleboyboltclimbs
+[<Cave: 1623-264>]
+> > > > > > LEGS: 4 (previous: 24361, now:24365)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: lbbeneaththeboulders
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lbbeneaththeboulders <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+[<Cave: 1623-264>]
+> > > > > > LEGS: 10 (previous: 24365, now:24375)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/ntdwyt
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ntdwyt
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: ntdwyt
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/ntdwyt <> caves-1623/264/lower_balkon/ntdwyt
+[<Cave: 1623-264>]
+> > > > > > LEGS: 6 (previous: 24375, now:24381)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/northernpowerhouse
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: northernpowerhouse
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/northernpowerhouse <> caves-1623/264/lower_balkon/northernpowerhouse
+[<Cave: 1623-264>]
+> > > > > > LEGS: 202 (previous: 24381, now:24583)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: youdontknowyourebeautiful
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/youdontknowyourebeautiful <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+[<Cave: 1623-264>]
+> > > > > > LEGS: 237 (previous: 24583, now:24820)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/microscopicthunder
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/microscopicthunder
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: microscopicthunder
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/microscopicthunder <> caves-1623/264/lower_balkon/microscopicthunder
+[<Cave: 1623-264>]
+> > > > > > LEGS: 62 (previous: 24820, now:24882)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ichfuhlenichts
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: ichfuhlenichts
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/ichfuhlenichts <> caves-1623/264/lower_balkon/ichfuhlenichts
+[<Cave: 1623-264>]
+> > > > > > LEGS: 118 (previous: 24882, now:25000)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/einfach
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/einfach
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: einfach
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/einfach <> caves-1623/264/lower_balkon/einfach
+[<Cave: 1623-264>]
+> > > > > > LEGS: 20 (previous: 25000, now:25020)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lipstickdipstick
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: lipstickdipstick
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lipstickdipstick <> caves-1623/264/lower_balkon/lipstickdipstick
+[<Cave: 1623-264>]
+> > > > > > LEGS: 19 (previous: 25020, now:25039)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/medusasmaze
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: medusasmaze
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/medusasmaze <> caves-1623/264/lower_balkon/medusasmaze
+[<Cave: 1623-264>]
+> > > > > > LEGS: 32 (previous: 25039, now:25071)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/medusasmaze2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: medusasmaze2
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/medusasmaze2 <> caves-1623/264/lower_balkon/medusasmaze2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 33 (previous: 25071, now:25104)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/wheresthemilk
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/wheresthemilk
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: wheresthemilk
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/wheresthemilk <> caves-1623/264/lower_balkon/wheresthemilk
+[<Cave: 1623-264>]
+> > > > > > LEGS: 6 (previous: 25104, now:25110)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/drunkdrivers
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/drunkdrivers
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: drunkdrivers
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/drunkdrivers <> caves-1623/264/lower_balkon/drunkdrivers
+[<Cave: 1623-264>]
+> > > > > > LEGS: 3 (previous: 25110, now:25113)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/custardcavalry
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/custardcavalry
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: custardcavalry
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/custardcavalry <> caves-1623/264/lower_balkon/custardcavalry
+[<Cave: 1623-264>]
+> > > > > > LEGS: 2 (previous: 25113, now:25115)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/myopia2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for: myopia2
+> > > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lower_balkon/myopia2 <> caves-1623/264/lower_balkon/myopia2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 3 (previous: 25115, now:25118)
+> > > > > LEGS: 5435 (previous: 19683, now:25118)
+> > > > - Include path found, including - caves-1623/264/horizontalentrance
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/horizontalentrance
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: horizontalentrance
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/horizontalentrance <> caves-1623/264/horizontalentrance
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25118, now:25126)
+> > > > - Include path found, including - caves-1623/264/entrancepitch1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: entrancepitch1
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/entrancepitch1 <> caves-1623/264/entrancepitch1
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25126, now:25129)
+> > > > - Include path found, including - caves-1623/264/entrancepitch2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: entrancepitch2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/entrancepitch2 <> caves-1623/264/entrancepitch2
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25129, now:25134)
+> > > > - Include path found, including - caves-1623/264/roomwithaview
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: roomwithaview
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/roomwithaview <> caves-1623/264/roomwithaview
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 25134, now:25144)
+> > > > - Include path found, including - caves-1623/264/roommop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/roommop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: roommop
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/roommop <> caves-1623/264/roommop
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25144, now:25147)
+> > > > - Include path found, including - caves-1623/264/roomwithaview2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: roomwithaview2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/roomwithaview2 <> caves-1623/264/roomwithaview2
+[<Cave: 1623-264>]
+> > > > > LEGS: 20 (previous: 25147, now:25167)
+> > > > - Include path found, including - caves-1623/264/smashcrashpassage
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/smashcrashpassage
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: smashcrashpassage
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/smashcrashpassage <> caves-1623/264/smashcrashpassage
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25167, now:25179)
+> > > > - Include path found, including - caves-1623/264/crashmop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/crashmop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: crashmop
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/crashmop <> caves-1623/264/crashmop
+[<Cave: 1623-264>]
+> > > > > LEGS: 26 (previous: 25179, now:25205)
+> > > > - Include path found, including - caves-1623/264/liarsbakery
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/liarsbakery
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: liarsbakery
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/liarsbakery <> caves-1623/264/liarsbakery
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 25205, now:25220)
+> > > > - Include path found, including - caves-1623/264/pitpot
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pitpot
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/pitpot <> caves-1623/264/pitpot
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25220, now:25222)
+> > > > - Include path found, including - caves-1623/264/lemonsnout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: lemonsnout
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lemonsnout <> caves-1623/264/lemonsnout
+[<Cave: 1623-264>]
+> > > > > LEGS: 27 (previous: 25222, now:25249)
+> > > > - Include path found, including - caves-1623/264/leedsbypass
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: leedsbypass
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/leedsbypass <> caves-1623/264/leedsbypass
+[<Cave: 1623-264>]
+> > > > > LEGS: 37 (previous: 25249, now:25286)
+> > > > - Include path found, including - caves-1623/264/pitpot2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pitpot2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/pitpot2 <> caves-1623/264/pitpot2
+[<Cave: 1623-264>]
+> > > > > LEGS: 13 (previous: 25286, now:25299)
+> > > > - Include path found, including - caves-1623/264/pitpot3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pitpot3
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/pitpot3 <> caves-1623/264/pitpot3
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25299, now:25304)
+> > > > - Include path found, including - caves-1623/264/amalgamation
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/amalgamation
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: amalgamation
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/amalgamation <> caves-1623/264/amalgamation
+[<Cave: 1623-264>]
+> > > > > LEGS: 48 (previous: 25304, now:25352)
+> > > > - Include path found, including - caves-1623/264/darkarts
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkarts
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkarts
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/darkarts <> caves-1623/264/darkarts
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25352, now:25363)
+> > > > - Include path found, including - caves-1623/264/darkartsII
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsII
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkartsii
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/darkartsII <> caves-1623/264/darkartsII
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 25363, now:25373)
+> > > > - Include path found, including - caves-1623/264/darkartsI
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsI
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkartsi
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/darkartsI <> caves-1623/264/darkartsI
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 25373, now:25388)
+> > > > - Include path found, including - caves-1623/264/leedsbypass2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: leedsbypass2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/leedsbypass2 <> caves-1623/264/leedsbypass2
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25388, now:25400)
+> > > > - Include path found, including - caves-1623/264/darkartsiii
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiii
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkartsiii
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/darkartsiii <> caves-1623/264/darkartsiii
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25400, now:25405)
+> > > > - Include path found, including - caves-1623/264/scrottytubei
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubei
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: scrottytubei
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/scrottytubei <> caves-1623/264/scrottytubei
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25405, now:25408)
+> > > > - Include path found, including - caves-1623/264/scrottytubeii
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubeii
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: scrottytubeii
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/scrottytubeii <> caves-1623/264/scrottytubeii
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25408, now:25415)
+> > > > - Include path found, including - caves-1623/264/lemonsnoutrosyringpiece
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnoutrosyringpiece
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: lemonsnoutrosyringpiece
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lemonsnoutrosyringpiece <> caves-1623/264/lemonsnoutrosyringpiece
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25415, now:25421)
+> > > > - Include path found, including - caves-1623/264/pointlesssniffing
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointlesssniffing
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pointlesssniffing
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/pointlesssniffing <> caves-1623/264/pointlesssniffing
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25421, now:25423)
+> > > > - Include path found, including - caves-1623/264/deadbatpitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: deadbatpitch
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/deadbatpitch <> caves-1623/264/deadbatpitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25423, now:25430)
+> > > > - Include path found, including - caves-1623/264/deadbatpitchconn
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitchconn
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: deadbatpitchconn
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/deadbatpitchconn <> caves-1623/264/deadbatpitchconn
+[<Cave: 1623-264>]
+> > > > > LEGS: 1 (previous: 25430, now:25431)
+> > > > - Include path found, including - caves-1623/264/lemoncrapout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemoncrapout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: lemoncrapout
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/lemoncrapout <> caves-1623/264/lemoncrapout
+[<Cave: 1623-264>]
+> > > > > LEGS: 16 (previous: 25431, now:25447)
+> > > > - Include path found, including - caves-1623/264/farside
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/farside
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: farside
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/farside <> caves-1623/264/farside
+[<Cave: 1623-264>]
+> > > > > LEGS: 77 (previous: 25447, now:25524)
+> > > > - Include path found, including - caves-1623/264/turtlehead
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtlehead
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: turtlehead
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/turtlehead <> caves-1623/264/turtlehead
+[<Cave: 1623-264>]
+> > > > > LEGS: 48 (previous: 25524, now:25572)
+> > > > - Include path found, including - caves-1623/264/turtleheadco
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtleheadco
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: turtleheadco
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/turtleheadco <> caves-1623/264/turtleheadco
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25572, now:25578)
+> > > > - Include path found, including - caves-1623/264/leedsbypass3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: leedsbypass3
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/leedsbypass3 <> caves-1623/264/leedsbypass3
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25578, now:25581)
+> > > > - Include path found, including - caves-1623/264/hiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplenty
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hiltiaplenty
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/hiltiaplenty <> caves-1623/264/hiltiaplenty
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 25581, now:25585)
+> > > > - Include path found, including - caves-1623/264/spanner
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/spanner
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: spanner
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/spanner <> caves-1623/264/spanner
+[<Cave: 1623-264>]
+> > > > > LEGS: 14 (previous: 25585, now:25599)
+> > > > - Include path found, including - caves-1623/264/cathedralchasm
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: cathedralchasm
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/cathedralchasm <> caves-1623/264/cathedralchasm
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25599, now:25610)
+> > > > - Include path found, including - caves-1623/264/cathedralLC1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: cathedrallc1
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/cathedralLC1 <> caves-1623/264/cathedralLC1
+[<Cave: 1623-264>]
+> > > > > LEGS: 1 (previous: 25610, now:25611)
+> > > > - Include path found, including - caves-1623/264/cathedralLC2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: cathedrallc2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/cathedralLC2 <> caves-1623/264/cathedralLC2
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25611, now:25619)
+> > > > - Include path found, including - caves-1623/264/avalancheexperience
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/avalancheexperience
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: avalancheexperience
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/avalancheexperience <> caves-1623/264/avalancheexperience
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 25619, now:25638)
+> > > > - Include path found, including - caves-1623/264/pitch59b
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitch59b
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pitch59b
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/pitch59b <> caves-1623/264/pitch59b
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25638, now:25655)
+> > > > - Include path found, including - caves-1623/264/noserock
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: noserock
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/noserock <> caves-1623/264/noserock
+[<Cave: 1623-264>]
+> > > > > LEGS: 39 (previous: 25655, now:25694)
+> > > > - Include path found, including - caves-1623/264/einundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/einundzwanzig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: einundzwanzig
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/einundzwanzig <> caves-1623/264/einundzwanzig
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25694, now:25706)
+> > > > - Include path found, including - caves-1623/264/icecock
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: icecock
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/icecock <> caves-1623/264/icecock
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25706, now:25717)
+> > > > - Include path found, including - caves-1623/264/noserock2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: noserock2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/noserock2 <> caves-1623/264/noserock2
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25717, now:25723)
+> > > > - Include path found, including - caves-1623/264/northhole
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: northhole
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/northhole <> caves-1623/264/northhole
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25723, now:25740)
+> > > > - Include path found, including - caves-1623/264/icecock2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: icecock2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/icecock2 <> caves-1623/264/icecock2
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25740, now:25747)
+> > > > - Include path found, including - caves-1623/264/gosserwager
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: gosserwager
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/gosserwager <> caves-1623/264/gosserwager
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25747, now:25755)
+> > > > - Include path found, including - caves-1623/264/gosserwager2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: gosserwager2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/gosserwager2 <> caves-1623/264/gosserwager2
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25755, now:25761)
+> > > > - Include path found, including - caves-1623/264/frozennorth
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: frozennorth
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/frozennorth <> caves-1623/264/frozennorth
+[<Cave: 1623-264>]
+> > > > > LEGS: 18 (previous: 25761, now:25779)
+> > > > - Include path found, including - caves-1623/264/frozennorth2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: frozennorth2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/frozennorth2 <> caves-1623/264/frozennorth2
+[<Cave: 1623-264>]
+> > > > > LEGS: 25 (previous: 25779, now:25804)
+> > > > - Include path found, including - caves-1623/264/icecockLC1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: icecocklc1
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/icecockLC1 <> caves-1623/264/icecockLC1
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25804, now:25807)
+> > > > - Include path found, including - caves-1623/264/icecockLC2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: icecocklc2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/icecockLC2 <> caves-1623/264/icecockLC2
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25807, now:25809)
+> > > > - Include path found, including - caves-1623/264/bipedal
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedal
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: bipedal
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/bipedal <> caves-1623/264/bipedal
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25809, now:25811)
+> > > > - Include path found, including - caves-1623/264/frozennorth3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: frozennorth3
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/frozennorth3 <> caves-1623/264/frozennorth3
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25811, now:25817)
+> > > > - Include path found, including - caves-1623/264/rabbitwarrens
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrens
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: rabbitwarrens
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/rabbitwarrens <> caves-1623/264/rabbitwarrens
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 25817, now:25836)
+> > > > - Include path found, including - caves-1623/264/digdug
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/digdug
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: digdug
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/digdug <> caves-1623/264/digdug
+[<Cave: 1623-264>]
+> > > > > LEGS: 57 (previous: 25836, now:25893)
+> > > > - Include path found, including - caves-1623/264/beyonddigdug
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyonddigdug
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: beyonddigdug
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/beyonddigdug <> caves-1623/264/beyonddigdug
+[<Cave: 1623-264>]
+> > > > > LEGS: 16 (previous: 25893, now:25909)
+> > > > - Include path found, including - caves-1623/264/beyondthunderdome
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyondthunderdome
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: beyondthunderdome
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/beyondthunderdome <> caves-1623/264/beyondthunderdome
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25909, now:25926)
+> > > > - Include path found, including - caves-1623/264/pubicsynthesis
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/pubicsynthesis
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pubicsynthesis
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/pubicsynthesis <> caves-1623/264/pubicsynthesis
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25926, now:25933)
+> > > > - Include path found, including - caves-1623/264/hiltiaplentypitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentypitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hiltiaplentypitch
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/hiltiaplentypitch <> caves-1623/264/hiltiaplentypitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 38 (previous: 25933, now:25971)
+> > > > - Include path found, including - caves-1623/264/hiltiaplentychamber
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentychamber
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hiltiaplentychamber
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/hiltiaplentychamber <> caves-1623/264/hiltiaplentychamber
+[<Cave: 1623-264>]
+> > > > > LEGS: 44 (previous: 25971, now:26015)
+> > > > - Include path found, including - caves-1623/264/ulsagrotto
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/ulsagrotto
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: ulsagrotto
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/ulsagrotto <> caves-1623/264/ulsagrotto
+[<Cave: 1623-264>]
+> > > > > LEGS: 73 (previous: 26015, now:26088)
+> > > > - Include path found, including - caves-1623/264/sponge_chamber
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: sponge_chamber
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/sponge_chamber <> caves-1623/264/sponge_chamber
+[<Cave: 1623-264>]
+> > > > > LEGS: 56 (previous: 26088, now:26144)
+> > > > - Include path found, including - caves-1623/264/sponge_chamber2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: sponge_chamber2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/sponge_chamber2 <> caves-1623/264/sponge_chamber2
+[<Cave: 1623-264>]
+> > > > > LEGS: 31 (previous: 26144, now:26175)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: bipedalpassage
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/bipedalpassage <> caves-1623/264/bipedalpassage
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26175, now:26205)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: bipedalpassage2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/bipedalpassage2 <> caves-1623/264/bipedalpassage2
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 26205, now:26220)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: bipedalpassage3
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/bipedalpassage3 <> caves-1623/264/bipedalpassage3
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26220, now:26224)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: bipedalpassage4
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/bipedalpassage4 <> caves-1623/264/bipedalpassage4
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26224, now:26231)
+> > > > - Include path found, including - caves-1623/264/icecock3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: icecock3
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/icecock3 <> caves-1623/264/icecock3
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26231, now:26235)
+> > > > - Include path found, including - caves-1623/264/northhole2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: northhole2
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/northhole2 <> caves-1623/264/northhole2
+[<Cave: 1623-264>]
+> > > > > LEGS: 9 (previous: 26235, now:26244)
+> > > > - Include path found, including - caves-1623/264/frozennorth4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: frozennorth4
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/frozennorth4 <> caves-1623/264/frozennorth4
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26244, now:26251)
+> > > > - Include path found, including - caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: rabbitwarrenstoeinundzwanzig
+> > > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/rabbitwarrenstoeinundzwanzig <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 26251, now:26257)
+> > > > - Include path found, including - caves-1623/264/gosserwager3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: gosserwager3
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/gosserwager3 <> caves-1623/264/gosserwager3
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26257, now:26267)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage5
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage5
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: bipedalpassage5
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/bipedalpassage5 <> caves-1623/264/bipedalpassage5
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26267, now:26271)
+> > > > - Include path found, including - caves-1623/264/gosserwager4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: gosserwager4
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/gosserwager4 <> caves-1623/264/gosserwager4
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26271, now:26275)
+> > > > - Include path found, including - caves-1623/264/belowhiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: belowhiltiaplenty
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/belowhiltiaplenty <> caves-1623/264/belowhiltiaplenty
+[<Cave: 1623-264>]
+> > > > > LEGS: 38 (previous: 26275, now:26313)
+> > > > - Include path found, including - caves-1623/264/belowhiltiaplenty2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: belowhiltiaplenty2
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/belowhiltiaplenty2 <> caves-1623/264/belowhiltiaplenty2
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 26313, now:26315)
+> > > > - Include path found, including - caves-1623/264/penguinfellatio
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/penguinfellatio
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: penguinfellatio
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/penguinfellatio <> caves-1623/264/penguinfellatio
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26315, now:26323)
+> > > > - Include path found, including - caves-1623/264/voyeur
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/voyeur
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: voyeur
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/voyeur <> caves-1623/264/voyeur
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26323, now:26330)
+> > > > - Include path found, including - caves-1623/264/darkartsiv
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiv
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkartsiv
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/darkartsiv <> caves-1623/264/darkartsiv
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26330, now:26334)
+> > > > - Include path found, including - caves-1623/264/darkartsv
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsv
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkartsv
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/darkartsv <> caves-1623/264/darkartsv
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26334, now:26339)
+> > > > - Include path found, including - caves-1623/264/darkartsvi
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsvi
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: darkartsvi
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/darkartsvi <> caves-1623/264/darkartsvi
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26339, now:26344)
+> > > > - Include path found, including - caves-1623/264/tightyorkshireman
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/tightyorkshireman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: tightyorkshireman
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/tightyorkshireman <> caves-1623/264/tightyorkshireman
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26344, now:26352)
+> > > > - Include path found, including - caves-1623/264/swingers
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/swingers
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: swingers
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/swingers <> caves-1623/264/swingers
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26352, now:26357)
+> > > > - Include path found, including - caves-1623/264/crushedplumbspitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/crushedplumbspitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: crushedplumbspitch
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/crushedplumbspitch <> caves-1623/264/crushedplumbspitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26357, now:26362)
+> > > > - Include path found, including - caves-1623/264/tinaturnersmerkin
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/tinaturnersmerkin
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: tinaturnersmerkin
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/tinaturnersmerkin <> caves-1623/264/tinaturnersmerkin
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 26362, now:26373)
+> > > > - Include path found, including - caves-1623/264/underexcitment
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/underexcitment
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: underexcitment
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/underexcitment <> caves-1623/264/underexcitment
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26373, now:26383)
+> > > > - Include path found, including - caves-1623/264/consolidation
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/consolidation
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: consolidation
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/consolidation <> caves-1623/264/consolidation
+[<Cave: 1623-264>]
+> > > > > LEGS: 59 (previous: 26383, now:26442)
+> > > > - Include path found, including - caves-1623/264/oneshotwonder
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/oneshotwonder
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: oneshotwonder
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/oneshotwonder <> caves-1623/264/oneshotwonder
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26442, now:26472)
+> > > > - Include path found, including - caves-1623/264/longdrop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: longdrop
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/longdrop <> caves-1623/264/longdrop
+[<Cave: 1623-264>]
+> > > > > LEGS: 20 (previous: 26472, now:26492)
+> > > > - Include path found, including - caves-1623/264/northern_straight
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/northern_straight
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: northernstraight
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/northern_straight <> caves-1623/264/northern_straight
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26492, now:26522)
+> > > > - Include path found, including - caves-1623/264/snowhole
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9609375 Reading. parent:caves-1623/264/264 <> caves-1623/264/snowhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: snowhole
+> > > > > > - MEM:49.9609375 Reading. parent:caves-1623/264/snowhole <> caves-1623/264/snowhole
+[<Cave: 1623-264>]
+> > > > > LEGS: 55 (previous: 26522, now:26577)
+> > > > - Include path found, including - caves-1623/264/roundabout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9609375 Reading. parent:caves-1623/264/264 <> caves-1623/264/roundabout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: roundabout
+> > > > > > - MEM:49.9609375 Reading. parent:caves-1623/264/roundabout <> caves-1623/264/roundabout
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26577, now:26607)
+> > > > - Include path found, including - caves-1623/264/caving101
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.96484375 Reading. parent:caves-1623/264/264 <> caves-1623/264/caving101
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: caving101
+> > > > > > - MEM:49.96484375 Reading. parent:caves-1623/264/caving101 <> caves-1623/264/caving101
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 26607, now:26609)
+> > > > - Include path found, including - caves-1623/264/doublescoop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.96484375 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: doublescoop
+> > > > > > - MEM:49.96484375 Reading. parent:caves-1623/264/doublescoop <> caves-1623/264/doublescoop
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26609, now:26619)
+> > > > - Include path found, including - caves-1623/264/doublescoop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.96484375 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: doublescoop2
+> > > > > > - MEM:49.96484375 Reading. parent:caves-1623/264/doublescoop2 <> caves-1623/264/doublescoop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26619, now:26627)
+> > > > - Include path found, including - caves-1623/264/fatmanscoop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.96875 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: fatmanscoop
+> > > > > > - MEM:49.96875 Reading. parent:caves-1623/264/fatmanscoop <> caves-1623/264/fatmanscoop
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26627, now:26637)
+> > > > - Include path found, including - caves-1623/264/fatmanscoop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.96875 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: fatmanscoop2
+> > > > > > - MEM:49.96875 Reading. parent:caves-1623/264/fatmanscoop2 <> caves-1623/264/fatmanscoop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 26637, now:26640)
+> > > > - Include path found, including - caves-1623/264/badattitude
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.96875 Reading. parent:caves-1623/264/264 <> caves-1623/264/badattitude
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: badattitude
+> > > > > > - MEM:49.97265625 Reading. parent:caves-1623/264/badattitude <> caves-1623/264/badattitude
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 26640, now:26652)
+> > > > - Include path found, including - caves-1623/264/lets_be_appalling
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.97265625 Reading. parent:caves-1623/264/264 <> caves-1623/264/lets_be_appalling
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: lets_be_appalling
+> > > > > > - MEM:49.97265625 Reading. parent:caves-1623/264/lets_be_appalling <> caves-1623/264/lets_be_appalling
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 26652, now:26671)
+> > > > - Include path found, including - caves-1623/264/cant_stop_bat_country
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.97265625 Reading. parent:caves-1623/264/264 <> caves-1623/264/cant_stop_bat_country
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: cant_stop_bat_country
+> > > > > > - MEM:49.97265625 Reading. parent:caves-1623/264/cant_stop_bat_country <> caves-1623/264/cant_stop_bat_country
+[<Cave: 1623-264>]
+> > > > > LEGS: 26 (previous: 26671, now:26697)
+> > > > - Include path found, including - caves-1623/264/watertorture
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.97265625 Reading. parent:caves-1623/264/264 <> caves-1623/264/watertorture
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: watertorture
+> > > > > > - MEM:49.9765625 Reading. parent:caves-1623/264/watertorture <> caves-1623/264/watertorture
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26697, now:26701)
+> > > > - Include path found, including - caves-1623/264/keepsongiving
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9765625 Reading. parent:caves-1623/264/264 <> caves-1623/264/keepsongiving
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: keepsongiving
+> > > > > > - MEM:49.98046875 Reading. parent:caves-1623/264/keepsongiving <> caves-1623/264/keepsongiving
+[<Cave: 1623-264>]
+> > > > > LEGS: 13 (previous: 26701, now:26714)
+> > > > - Include path found, including - caves-1623/264/hiltigalactica
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98046875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltigalactica
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hiltigalactica
+> > > > > > - MEM:50.00390625 Reading. parent:caves-1623/264/hiltigalactica <> caves-1623/264/hiltigalactica
+[<Cave: 1623-264>]
+> > > > > LEGS: 247 (previous: 26714, now:26961)
+> > > > - Include path found, including - caves-1623/264/cathedralchasm2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: cathedralchasm2
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/cathedralchasm2 <> caves-1623/264/cathedralchasm2
+[<Cave: 1623-264>]
+> > > > > LEGS: 195 (previous: 26961, now:27156)
+> > > > - Include path found, including - caves-1623/264/longdrop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: longdrop2
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/longdrop2 <> caves-1623/264/longdrop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 92 (previous: 27156, now:27248)
+> > > > - Include path found, including - caves-1623/264/sloppyseconds1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: sloppyseconds1
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/sloppyseconds1 <> caves-1623/264/sloppyseconds1
+[<Cave: 1623-264>]
+> > > > > LEGS: 40 (previous: 27248, now:27288)
+> > > > - Include path found, including - caves-1623/264/galactica
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/galactica
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: galactica
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/galactica <> caves-1623/264/galactica
+[<Cave: 1623-264>]
+> > > > > LEGS: 23 (previous: 27288, now:27311)
+> > > > - Include path found, including - caves-1623/264/sloppyseconds2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: sloppyseconds2
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/sloppyseconds2 <> caves-1623/264/sloppyseconds2
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 27311, now:27322)
+> > > > - Include path found, including - caves-1623/264/nothingtosee
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: nothingtosee
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/nothingtosee <> caves-1623/264/nothingtosee
+[<Cave: 1623-264>]
+> > > > > LEGS: 22 (previous: 27322, now:27344)
+> > > > - Include path found, including - caves-1623/264/the_mendips
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_mendips
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: the_mendips
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/the_mendips <> caves-1623/264/the_mendips
+[<Cave: 1623-264>]
+> > > > > LEGS: 257 (previous: 27344, now:27601)
+> > > > - Include path found, including - caves-1623/264/mysterious_schlag
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/mysterious_schlag
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: mysterious_schlag
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/mysterious_schlag <> caves-1623/264/mysterious_schlag
+[<Cave: 1623-264>]
+> > > > > LEGS: 33 (previous: 27601, now:27634)
+> > > > - Include path found, including - caves-1623/264/pointless_dig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointless_dig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: pointless_dig
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/pointless_dig <> caves-1623/264/pointless_dig
+[<Cave: 1623-264>]
+> > > > > LEGS: 21 (previous: 27634, now:27655)
+> > > > - Include path found, including - caves-1623/264/secondwind
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondwind
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: secondwind
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/secondwind <> caves-1623/264/secondwind
+[<Cave: 1623-264>]
+> > > > > LEGS: 28 (previous: 27655, now:27683)
+> > > > - Include path found, including - caves-1623/264/secondhand
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondhand
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: secondhand
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/secondhand <> caves-1623/264/secondhand
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 27683, now:27689)
+> > > > - Include path found, including - caves-1623/264/dog_end_series
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/dog_end_series
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: dog_end_series
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/dog_end_series <> caves-1623/264/dog_end_series
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 27689, now:27701)
+> > > > - Include path found, including - caves-1623/264/nothing2see
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothing2see
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: nothing2see
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/nothing2see <> caves-1623/264/nothing2see
+[<Cave: 1623-264>]
+> > > > > LEGS: 18 (previous: 27701, now:27719)
+> > > > - Include path found, including - caves-1623/264/nothingtosee3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: nothingtosee3
+> > > > > > - MEM:50.0078125 Reading. parent:caves-1623/264/nothingtosee3 <> caves-1623/264/nothingtosee3
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 27719, now:27738)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_bones_pitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.01171875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_bones_pitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hilti_nts_bones_pitch
+> > > > > > - MEM:50.01171875 Reading. parent:caves-1623/264/hilti_nts_bones_pitch <> caves-1623/264/hilti_nts_bones_pitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 52 (previous: 27738, now:27790)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_near_bats
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.015625 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_bats
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hilti_nts_near_bats
+> > > > > > - MEM:50.015625 Reading. parent:caves-1623/264/hilti_nts_near_bats <> caves-1623/264/hilti_nts_near_bats
+[<Cave: 1623-264>]
+> > > > > LEGS: 44 (previous: 27790, now:27834)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_near_start
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.015625 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_start
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: hilti_nts_near_start
+> > > > > > - MEM:50.015625 Reading. parent:caves-1623/264/hilti_nts_near_start <> caves-1623/264/hilti_nts_near_start
+[<Cave: 1623-264>]
+> > > > > LEGS: 46 (previous: 27834, now:27880)
+> > > > - Include path found, including - caves-1623/264/the_backslash
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:50.015625 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_backslash
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for: the_backslash
+> > > > > > - MEM:50.015625 Reading. parent:caves-1623/264/the_backslash <> caves-1623/264/the_backslash
+[<Cave: 1623-264>]
+> > > > > LEGS: 21 (previous: 27880, now:27901)
+> > > > LEGS: 8218 (previous: 19683, now:27901)
+> - Include path found, including - surface/1623/allsurface
+> - NO Match in DB (i) for a cave for surface/1623/allsurface
+> > - MEM:50.015625 Reading. parent:kataster/1623 <> surface/1623/allsurface
+> > - Include path found, including - surface/1623/allplateau
+> > - NO Match in DB (i) for a cave for surface/1623/allplateau
+> > > - MEM:50.015625 Reading. parent:kataster/1623 <> surface/1623/allplateau
+> > > - Include path found, including - surface/1623/p108
+> > > - NO Match in DB (i) for a cave for surface/1623/p108
+> > > > - MEM:50.015625 Reading. parent:kataster/1623 <> surface/1623/p108
+> > > > - No match (b) for surface/1623/108surf
+> > > > - Begin found for: 108surf
+> > > > > - MEM:50.015625 Reading. parent:surface/1623/p108 <> surface/1623/p108
+> > > > LEGS: 8 (previous: 27901, now:27909)
+> > > - Include path found, including - surface/1623/bogen
+> > > - NO Match in DB (i) for a cave for surface/1623/bogen
+> > > > - MEM:50.015625 Reading. parent:kataster/1623 <> surface/1623/bogen
+> > > > - No match (b) for surface/1623/2006-06
+> > > > - Begin found for: 2006-06
+> > > > > - MEM:50.015625 Reading. parent:surface/1623/bogen <> surface/1623/bogen
+> > > > LEGS: 8 (previous: 27909, now:27917)
+> > > - Include path found, including - surface/1623/164surf
+> > > - NO Match in DB (i) for a cave for surface/1623/164surf
+> > > > - MEM:50.015625 Reading. parent:kataster/1623 <> surface/1623/164surf
+> > > > - No match (b) for surface/1623/164Surf
+> > > > - Begin found for: 164surf
+> > > > > - MEM:50.02734375 Reading. parent:surface/1623/164surf <> surface/1623/164surf
+> > > > LEGS: 18 (previous: 27917, now:27935)
+> > > - Include path found, including - surface/1623/172to171a
+> > > - NO Match in DB (i) for a cave for surface/1623/172to171a
+> > > > - MEM:50.03125 Reading. parent:kataster/1623 <> surface/1623/172to171a
+> > > > - No match (b) for surface/1623/172to171a
+> > > > - Begin found for: 172to171a
+> > > > > - MEM:50.03125 Reading. parent:surface/1623/172to171a <> surface/1623/172to171a
+> > > > LEGS: 11 (previous: 27935, now:27946)
+> > > - Include path found, including - surface/1623/182area
+> > > - NO Match in DB (i) for a cave for surface/1623/182area
+> > > > - MEM:50.03515625 Reading. parent:kataster/1623 <> surface/1623/182area
+> > > > - No match (b) for surface/1623/182toTC
+> > > > - Begin found for: 182totc
+> > > > > - MEM:50.03515625 Reading. parent:surface/1623/182area <> surface/1623/182area
+> > > > LEGS: 39 (previous: 27946, now:27985)
+> > > - Include path found, including - surface/1623/186totc
+> > > - NO Match in DB (i) for a cave for surface/1623/186totc
+> > > > - MEM:50.03515625 Reading. parent:kataster/1623 <> surface/1623/186totc
+> > > > - No match (b) for surface/1623/186toTC
+> > > > - Begin found for: 186totc
+> > > > > - MEM:50.03515625 Reading. parent:surface/1623/186totc <> surface/1623/186totc
+> > > > LEGS: 21 (previous: 27985, now:28006)
+> > > - Include path found, including - surface/1623/b4surf
+> > > - NO Match in DB (i) for a cave for surface/1623/b4surf
+> > > > - MEM:50.03515625 Reading. parent:kataster/1623 <> surface/1623/b4surf
+> > > > - No match (b) for surface/1623/b4surf
+> > > > - Begin found for: b4surf
+> > > > > - MEM:50.03515625 Reading. parent:surface/1623/b4surf <> surface/1623/b4surf
+> > > > LEGS: 3 (previous: 28006, now:28009)
+> > > - Include path found, including - surface/1623/colto11
+> > > - NO Match in DB (i) for a cave for surface/1623/colto11
+> > > > - MEM:50.0390625 Reading. parent:kataster/1623 <> surface/1623/colto11
+> > > > - No match (b) for surface/1623/colto11
+> > > > - Begin found for: colto11
+> > > > > - MEM:50.04296875 Reading. parent:surface/1623/colto11 <> surface/1623/colto11
+> > > > LEGS: 10 (previous: 28009, now:28019)
+> > > - Include path found, including - surface/1623/2006-72_to_spit
+> > > - NO Match in DB (i) for a cave for surface/1623/2006-72_to_spit
+> > > > - MEM:50.04296875 Reading. parent:kataster/1623 <> surface/1623/2006-72_to_spit
+> > > > - No match (b) for surface/1623/2006-72_to_spit
+> > > > - Begin found for: 2006-72_to_spit
+> > > > > - MEM:50.046875 Reading. parent:surface/1623/2006-72_to_spit <> surface/1623/2006-72_to_spit
+> > > > LEGS: 11 (previous: 28019, now:28030)
+> > > - Include path found, including - surface/1623/colto97
+> > > - NO Match in DB (i) for a cave for surface/1623/colto97
+> > > > - MEM:50.0546875 Reading. parent:kataster/1623 <> surface/1623/colto97
+> > > > - No match (b) for surface/1623/145to145c
+> > > > - Begin found for: 145to145c
+> > > > > - MEM:50.06640625 Reading. parent:surface/1623/colto97 <> surface/1623/colto97
+> > > > LEGS: 5 (previous: 28030, now:28035)
+> > > - Include path found, including - surface/1623/near06
+> > > - NO Match in DB (i) for a cave for surface/1623/near06
+> > > > - MEM:50.06640625 Reading. parent:kataster/1623 <> surface/1623/near06
+> > > > - No match (b) for surface/1623/near06
+> > > > - Begin found for: near06
+> > > > > - MEM:50.06640625 Reading. parent:surface/1623/near06 <> surface/1623/near06
+> > > > LEGS: 7 (previous: 28035, now:28042)
+> > > - Include path found, including - surface/1623/near06_2005
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2005
+> > > > - MEM:50.06640625 Reading. parent:kataster/1623 <> surface/1623/near06_2005
+> > > > - No match (b) for surface/1623/near06_2005
+> > > > - Begin found for: near06_2005
+> > > > > - MEM:50.06640625 Reading. parent:surface/1623/near06_2005 <> surface/1623/near06_2005
+> > > > LEGS: 7 (previous: 28042, now:28049)
+> > > - Include path found, including - surface/1623/99to2004-01
+> > > - NO Match in DB (i) for a cave for surface/1623/99to2004-01
+> > > > - MEM:50.0703125 Reading. parent:kataster/1623 <> surface/1623/99to2004-01
+> > > > - No match (b) for surface/1623/99to2004-01
+> > > > - Begin found for: 99to2004-01
+> > > > > - MEM:50.0703125 Reading. parent:surface/1623/99to2004-01 <> surface/1623/99to2004-01
+> > > > LEGS: 3 (previous: 28049, now:28052)
+> > > - Include path found, including - surface/1623/near06_2006
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2006
+> > > > - MEM:50.0703125 Reading. parent:kataster/1623 <> surface/1623/near06_2006
+> > > > - No match (b) for surface/1623/99ob02_to_2005-93
+> > > > - Begin found for: 99ob02_to_2005-93
+> > > > > - MEM:50.09765625 Reading. parent:surface/1623/near06_2006 <> surface/1623/near06_2006
+> > > > LEGS: 4 (previous: 28052, now:28056)
+> > > - Include path found, including - surface/1623/near06_2007
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2007
+> > > > - MEM:50.09765625 Reading. parent:kataster/1623 <> surface/1623/near06_2007
+> > > > - No match (b) for surface/1623/2007-70_to_271
+> > > > - Begin found for: 2007-70_to_271
+> > > > > - MEM:50.09765625 Reading. parent:surface/1623/near06_2007 <> surface/1623/near06_2007
+> > > > LEGS: 3 (previous: 28056, now:28059)
+> > > - Include path found, including - surface/1623/104surf
+> > > - NO Match in DB (i) for a cave for surface/1623/104surf
+> > > > - MEM:50.09765625 Reading. parent:kataster/1623 <> surface/1623/104surf
+> > > > - No match (b) for surface/1623/104surf
+> > > > - Begin found for: 104surf
+> > > > > - MEM:50.09765625 Reading. parent:surface/1623/104surf <> surface/1623/104surf
+> > > > LEGS: 3 (previous: 28059, now:28062)
+> > > - Include path found, including - surface/1623/nasetotc
+> > > - NO Match in DB (i) for a cave for surface/1623/nasetotc
+> > > > - MEM:50.09765625 Reading. parent:kataster/1623 <> surface/1623/nasetotc
+> > > > - No match (b) for surface/1623/nasetotc
+> > > > - Begin found for: nasetotc
+> > > > > - MEM:50.09765625 Reading. parent:surface/1623/nasetotc <> surface/1623/nasetotc
+> > > > LEGS: 13 (previous: 28062, now:28075)
+> > > - Include path found, including - surface/1623/neartc
+> > > - NO Match in DB (i) for a cave for surface/1623/neartc
+> > > > - MEM:50.1015625 Reading. parent:kataster/1623 <> surface/1623/neartc
+> > > > - No match (b) for surface/1623/TCto90
+> > > > - Begin found for: tcto90
+> > > > > - MEM:50.1015625 Reading. parent:surface/1623/neartc <> surface/1623/neartc
+> > > > ! Unparsed [*set]: 'decimal ./' surface/1623/neartc
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+> > > > LEGS: 13 (previous: 28075, now:28088)
+> > > - Include path found, including - surface/1623/tcto171
+> > > - NO Match in DB (i) for a cave for surface/1623/tcto171
+> > > > - MEM:50.12109375 Reading. parent:kataster/1623 <> surface/1623/tcto171
+> > > > - No match (b) for surface/1623/TCto171etc
+> > > > - Begin found for: tcto171etc
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/tcto171 <> surface/1623/tcto171
+> > > > LEGS: 29 (previous: 28088, now:28117)
+> > > - Include path found, including - surface/1623/tctocol
+> > > - NO Match in DB (i) for a cave for surface/1623/tctocol
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/tctocol
+> > > > - No match (b) for surface/1623/TCtoCol
+> > > > - Begin found for: tctocol
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/tctocol <> surface/1623/tctocol
+> > > > LEGS: 12 (previous: 28117, now:28129)
+> > > - Include path found, including - surface/1623/36tob4
+> > > - NO Match in DB (i) for a cave for surface/1623/36tob4
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/36tob4
+> > > > - No match (b) for surface/1623/36tob4
+> > > > - Begin found for: 36tob4
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/36tob4 <> surface/1623/36tob4
+> > > > LEGS: 8 (previous: 28129, now:28137)
+> > > - Include path found, including - surface/1623/107-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/107-to-2012-70
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/107-to-2012-70
+> > > > - No match (b) for surface/1623/107to201270
+> > > > - Begin found for: 107to201270
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/107-to-2012-70 <> surface/1623/107-to-2012-70
+> > > > LEGS: 5 (previous: 28137, now:28142)
+> > > - Include path found, including - surface/1623/157-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/157-to-2012-70
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/157-to-2012-70
+> > > > - No match (b) for surface/1623/157to201270
+> > > > - Begin found for: 157to201270
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/157-to-2012-70 <> surface/1623/157-to-2012-70
+> > > > LEGS: 6 (previous: 28142, now:28148)
+> > - Include path found, including - surface/1623/allnrkh
+> > - NO Match in DB (i) for a cave for surface/1623/allnrkh
+> > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/allnrkh
+> > > - Include path found, including - surface/1623/136to147
+> > > - NO Match in DB (i) for a cave for surface/1623/136to147
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/136to147
+> > > > - No match (b) for surface/1623/136to147
+> > > > - Begin found for: 136to147
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/136to147 <> surface/1623/136to147
+> > > > LEGS: 15 (previous: 28148, now:28163)
+> > > - Include path found, including - surface/1623/147vor
+> > > - NO Match in DB (i) for a cave for surface/1623/147vor
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/147vor
+> > > > - No match (b) for surface/1623/147vor
+> > > > - Begin found for: 147vor
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/147vor <> surface/1623/147vor
+> > > > LEGS: 22 (previous: 28163, now:28185)
+> > > - Include path found, including - surface/1623/162to163
+> > > - NO Match in DB (i) for a cave for surface/1623/162to163
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/162to163
+> > > > - No match (b) for surface/1623/surfnr161
+> > > > - Begin found for: surfnr161
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/162to163 <> surface/1623/162to163
+> > > > LEGS: 25 (previous: 28185, now:28210)
+> > > - Include path found, including - surface/1623/180-161c
+> > > - NO Match in DB (i) for a cave for surface/1623/180-161c
+> > > > - MEM:50.140625 Reading. parent:kataster/1623 <> surface/1623/180-161c
+> > > > - No match (b) for surface/1623/180to161c
+> > > > - Begin found for: 180to161c
+> > > > > - MEM:50.140625 Reading. parent:surface/1623/180-161c <> surface/1623/180-161c
+> > > > LEGS: 10 (previous: 28210, now:28220)
+> > > - Include path found, including - surface/1623/161etof
+> > > - NO Match in DB (i) for a cave for surface/1623/161etof
+> > > > - MEM:50.140625 Reading. parent:kataster/1623 <> surface/1623/161etof
+> > > > - No match (b) for surface/1623/161etof
+> > > > - Begin found for: 161etof
+> > > > > - MEM:50.140625 Reading. parent:surface/1623/161etof <> surface/1623/161etof
+> > > > LEGS: 6 (previous: 28220, now:28226)
+> > > - Include path found, including - surface/1623/161ftod
+> > > - NO Match in DB (i) for a cave for surface/1623/161ftod
+> > > > - MEM:50.140625 Reading. parent:kataster/1623 <> surface/1623/161ftod
+> > > > - No match (b) for surface/1623/161ftod
+> > > > - Begin found for: 161ftod
+> > > > > - MEM:50.140625 Reading. parent:surface/1623/161ftod <> surface/1623/161ftod
+> > > > LEGS: 25 (previous: 28226, now:28251)
+> > > - Include path found, including - surface/1623/161etog
+> > > - NO Match in DB (i) for a cave for surface/1623/161etog
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/161etog
+> > > > - No match (b) for surface/1623/161etog
+> > > > - Begin found for: 161etog
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/161etog <> surface/1623/161etog
+> > > > LEGS: 30 (previous: 28251, now:28281)
+> > > - Include path found, including - surface/1623/kansurf
+> > > - NO Match in DB (i) for a cave for surface/1623/kansurf
+> > > > - MEM:50.1484375 Reading. parent:kataster/1623 <> surface/1623/kansurf
+> > > > - No match (b) for surface/1623/KanSurf
+> > > > - Begin found for: kansurf
+> > > > > - MEM:50.1484375 Reading. parent:surface/1623/kansurf <> surface/1623/kansurf
+> > > > LEGS: 14 (previous: 28281, now:28295)
+> > > - Include path found, including - surface/1623/p136
+> > > - NO Match in DB (i) for a cave for surface/1623/p136
+> > > > - MEM:50.15234375 Reading. parent:kataster/1623 <> surface/1623/p136
+> > > > - No match (b) for surface/1623/136surf
+> > > > - Begin found for: 136surf
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/p136 <> surface/1623/p136
+> > > > LEGS: 15 (previous: 28295, now:28310)
+> > > - Include path found, including - surface/1623/p156
+> > > - NO Match in DB (i) for a cave for surface/1623/p156
+> > > > - MEM:50.15625 Reading. parent:kataster/1623 <> surface/1623/p156
+> > > > - No match (b) for surface/1623/01to156
+> > > > - Begin found for: 01to156
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/p156 <> surface/1623/p156
+> > > > LEGS: 4 (previous: 28310, now:28314)
+> > > - Include path found, including - surface/1623/surf161
+> > > - NO Match in DB (i) for a cave for surface/1623/surf161
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/surf161
+> > > > - No match (b) for surface/1623/Surf161
+> > > > - Begin found for: surf161
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/surf161 <> surface/1623/surf161
+> > > > LEGS: 28 (previous: 28314, now:28342)
+> > > - Include path found, including - surface/1623/vd1-161d
+> > > - NO Match in DB (i) for a cave for surface/1623/vd1-161d
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/vd1-161d
+> > > > - No match (b) for surface/1623/vd1to161d
+> > > > - Begin found for: vd1to161d
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/vd1-161d <> surface/1623/vd1-161d
+> > > > LEGS: 38 (previous: 28342, now:28380)
+> > > - No match (b) for surface/1623/162bodge
+> > > - Begin found for: 162bodge
+> > > > - MEM:50.1640625 Reading. parent:surface/1623/allnrkh <> surface/1623/allnrkh
+> > > LEGS: 0 (previous: 28380, now:28380)
+> > - Include path found, including - surface/1623/allhinter
+> > - NO Match in DB (i) for a cave for surface/1623/allhinter
+> > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/allhinter
+> > > - Include path found, including - surface/1623/steinsrf
+> > > - NO Match in DB (i) for a cave for surface/1623/steinsrf
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/steinsrf
+> > > > - No match (b) for surface/1623/steinsrf
+> > > > - Begin found for: steinsrf
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/steinsrf <> surface/1623/steinsrf
+> > > > LEGS: 21 (previous: 28380, now:28401)
+> > > - Include path found, including - surface/1623/204atoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204atoc
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/204atoc
+> > > > - No match (b) for surface/1623/204atoc
+> > > > - Begin found for: 204atoc
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/204atoc <> surface/1623/204atoc
+> > > > LEGS: 17 (previous: 28401, now:28418)
+> > > - Include path found, including - surface/1623/204d
+> > > - NO Match in DB (i) for a cave for surface/1623/204d
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/204d
+> > > > - No match (b) for surface/1623/204d
+> > > > - Begin found for: 204d
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/204d <> surface/1623/204d
+> > > > LEGS: 13 (previous: 28418, now:28431)
+> > > - Include path found, including - surface/1623/204etoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204etoc
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/204etoc
+> > > > - No match (b) for surface/1623/204etoc
+> > > > - Begin found for: 204etoc
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/204etoc <> surface/1623/204etoc
+> > > > LEGS: 6 (previous: 28431, now:28437)
+> > > - Include path found, including - surface/1623/204ato239
+> > > - NO Match in DB (i) for a cave for surface/1623/204ato239
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/204ato239
+> > > > - No match (b) for surface/1623/204ato239
+> > > > - Begin found for: 204ato239
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/204ato239 <> surface/1623/204ato239
+> > > > LEGS: 10 (previous: 28437, now:28447)
+> > > - No match (b) for surface/1623/204cbodge
+> > > - Begin found for: 204cbodge
+> > > > - MEM:50.1640625 Reading. parent:surface/1623/allhinter <> surface/1623/allhinter
+> > > LEGS: 0 (previous: 28447, now:28447)
+> > - Include path found, including - surface/1623/allnr41
+> > - NO Match in DB (i) for a cave for surface/1623/allnr41
+> > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/allnr41
+> > > - Include path found, including - surface/1623/p78
+> > > - NO Match in DB (i) for a cave for surface/1623/p78
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/p78
+> > > > - No match (b) for surface/1623/schwabsurf
+> > > > - Begin found for: schwabsurf
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/p78 <> surface/1623/p78
+> > > > ! Unparsed [*set]: 'blank () ,' surface/1623/p78
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+> > > > LEGS: 52 (previous: 28447, now:28499)
+> > > - Include path found, including - surface/1623/78to78d
+> > > - NO Match in DB (i) for a cave for surface/1623/78to78d
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/78to78d
+> > > > - No match (b) for surface/1623/E4
+> > > > - Begin found for: e4
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/78to78d <> surface/1623/78to78d
+> > > > LEGS: 23 (previous: 28499, now:28522)
+> > > - Include path found, including - surface/1623/domsurf
+> > > - NO Match in DB (i) for a cave for surface/1623/domsurf
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/domsurf
+> > > > - No match (b) for surface/1623/dominosurf
+> > > > - Begin found for: dominosurf
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/domsurf <> surface/1623/domsurf
+> > > > LEGS: 28 (previous: 28522, now:28550)
+> > > - Include path found, including - surface/1623/sonnausn
+> > > - NO Match in DB (i) for a cave for surface/1623/sonnausn
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/sonnausn
+> > > > - No match (b) for surface/1623/sonnausn
+> > > > - Begin found for: sonnausn
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/sonnausn <> surface/1623/sonnausn
+> > > > LEGS: 14 (previous: 28550, now:28564)
+> > > - Include path found, including - surface/1623/41toBunt
+> > > - NO Match in DB (i) for a cave for surface/1623/41toBunt
+> > > > - MEM:50.1640625 Reading. parent:kataster/1623 <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/Hillside
+> > > > - Begin found for: hillside
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/82
+> > > > - Begin found for: 82
+> > > > > - MEM:50.1640625 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > LEGS: 33 (previous: 28564, now:28597)
+> > > - Include path found, including - surface/1623/lookfut
+> > > - NO Match in DB (i) for a cave for surface/1623/lookfut
+> > > > - MEM:50.16796875 Reading. parent:kataster/1623 <> surface/1623/lookfut
+> > > > - No match (b) for surface/1623/LookFutile
+> > > > - Begin found for: lookfutile
+> > > > > - MEM:50.16796875 Reading. parent:surface/1623/lookfut <> surface/1623/lookfut
+> > > > LEGS: 24 (previous: 28597, now:28621)
+> > > - Include path found, including - surface/1623/nipple
+> > > - NO Match in DB (i) for a cave for surface/1623/nipple
+> > > > - MEM:50.16796875 Reading. parent:kataster/1623 <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/nipple
+> > > > - Begin found for: nipple
+> > > > > - MEM:50.16796875 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/fix
+> > > > - Begin found for: fix
+> > > > > - MEM:50.16796875 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > LEGS: 1 (previous: 28693, now:28694)
+> > > - Include path found, including - surface/1623/p155
+> > > - NO Match in DB (i) for a cave for surface/1623/p155
+> > > > - MEM:50.16796875 Reading. parent:kataster/1623 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/Nipto155
+> > > > - Begin found for: nipto155
+> > > > > - MEM:50.16796875 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for: pt1
+> > > > > - MEM:50.16796875 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > LEGS: 23 (previous: 28694, now:28717)
+> > > - Include path found, including - surface/1623/L8to158
+> > > - NO Match in DB (i) for a cave for surface/1623/L8to158
+> > > > - MEM:50.16796875 Reading. parent:kataster/1623 <> surface/1623/L8to158
+> > > > - No match (b) for surface/1623/L8to158
+> > > > - Begin found for: l8to158
+> > > > > - MEM:50.16796875 Reading. parent:surface/1623/L8to158 <> surface/1623/L8to158
+> > > > LEGS: 17 (previous: 28717, now:28734)
+> > > - Include path found, including - surface/1623/stoger
+> > > - NO Match in DB (i) for a cave for surface/1623/stoger
+> > > > - MEM:50.16796875 Reading. parent:kataster/1623 <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/Stogerweg
+> > > > - Begin found for: stogerweg
+> > > > > - MEM:50.17578125 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for: pt1
+> > > > > - MEM:50.17578125 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > LEGS: 38 (previous: 28734, now:28772)
+> > > - Include path found, including - surface/1623/228ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/228ausn
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/228ausn
+> > > > - No match (b) for surface/1623/228ausn
+> > > > - Begin found for: 228ausn
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/228ausn <> surface/1623/228ausn
+> > > > LEGS: 7 (previous: 28772, now:28779)
+> > > - Include path found, including - surface/1623/31ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/31ausn
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/31ausn
+> > > > - No match (b) for surface/1623/31ausn
+> > > > - Begin found for: 31ausn
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/31ausn <> surface/1623/31ausn
+> > > > LEGS: 3 (previous: 28779, now:28782)
+> > - Include path found, including - surface/1623/allnr40
+> > - NO Match in DB (i) for a cave for surface/1623/allnr40
+> > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/allnr40
+> > > - Include path found, including - surface/1623/weisausn
+> > > - NO Match in DB (i) for a cave for surface/1623/weisausn
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/weisausn
+> > > > - No match (b) for surface/1623/weisausn
+> > > > - Begin found for: weisausn
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/weisausn <> surface/1623/weisausn
+> > > > LEGS: 3 (previous: 28782, now:28785)
+> > > - Include path found, including - surface/1623/2002-W-02surf
+> > > - NO Match in DB (i) for a cave for surface/1623/2002-W-02surf
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/2002-W-02surf
+> > > > - No match (b) for surface/1623/2002-w-02surf
+> > > > - Begin found for: 2002-w-02surf
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/2002-W-02surf <> surface/1623/2002-W-02surf
+> > > > LEGS: 2 (previous: 28785, now:28787)
+> > > - Include path found, including - surface/1623/eissurf
+> > > - NO Match in DB (i) for a cave for surface/1623/eissurf
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/eissurf
+> > > > - No match (b) for surface/1623/EisSurf
+> > > > - Begin found for: eissurf
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/eissurf <> surface/1623/eissurf
+> > > > LEGS: 13 (previous: 28787, now:28800)
+> > > - Include path found, including - surface/1623/40ftoe
+> > > - NO Match in DB (i) for a cave for surface/1623/40ftoe
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/40ftoe
+> > > > - No match (b) for surface/1623/gruensurf
+> > > > - Begin found for: gruensurf
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/40ftoe <> surface/1623/40ftoe
+> > > > LEGS: 7 (previous: 28800, now:28807)
+> > > - Include path found, including - surface/1623/40to88
+> > > - NO Match in DB (i) for a cave for surface/1623/40to88
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/40to88
+> > > > - No match (b) for surface/1623/40to88
+> > > > - Begin found for: 40to88
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/40to88 <> surface/1623/40to88
+> > > > LEGS: 15 (previous: 28807, now:28822)
+> > > - Include path found, including - surface/1623/e6ausen
+> > > - NO Match in DB (i) for a cave for surface/1623/e6ausen
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/e6ausen
+> > > > - No match (b) for surface/1623/e6ausen
+> > > > - Begin found for: e6ausen
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/e6ausen <> surface/1623/e6ausen
+> > > > LEGS: 10 (previous: 28822, now:28832)
+> > > - Include path found, including - surface/1623/vfhmdata
+> > > - NO Match in DB (i) for a cave for surface/1623/vfhmdata
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/vfhmdata
+> > > > - No match (b) for surface/1623/VfHMdata
+> > > > - Begin found for: vfhmdata
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/vfhmdata <> surface/1623/vfhmdata
+> > > > LEGS: 105 (previous: 28832, now:28937)
+> > > - Include path found, including - surface/1623/40ents
+> > > - NO Match in DB (i) for a cave for surface/1623/40ents
+> > > > - MEM:50.1953125 Reading. parent:kataster/1623 <> surface/1623/40ents
+> > > > - No match (b) for surface/1623/40entlink
+> > > > - Begin found for: 40entlink
+> > > > > - MEM:50.1953125 Reading. parent:surface/1623/40ents <> surface/1623/40ents
+> > > > LEGS: 12 (previous: 28937, now:28949)
+> - Include path found, including - fixedpts/gps/tracks/alltracks
+> - NO Match in DB (i) for a cave for fixedpts/gps/tracks/alltracks
+> > - MEM:50.1953125 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/alltracks
+> > - Include path found, including - fixedpts/gps/tracks/carpark-204
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-204
+> > > - MEM:50.1953125 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-204
+> > > - No match (b) for fixedpts/gps/tracks/carpark-204
+> > > - Begin found for: carpark-204
+> > > > - MEM:50.2265625 Reading. parent:fixedpts/gps/tracks/carpark-204 <> fixedpts/gps/tracks/carpark-204
+> > > LEGS: 0 (previous: 28949, now:28949)
+> > - Include path found, including - fixedpts/gps/tracks/carpark-40
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-40
+> > > - MEM:50.2265625 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-40
+> > > - No match (b) for fixedpts/gps/tracks/carpark-40
+> > > - Begin found for: carpark-40
+> > > > - MEM:50.2265625 Reading. parent:fixedpts/gps/tracks/carpark-40 <> fixedpts/gps/tracks/carpark-40
+> > > LEGS: 0 (previous: 28949, now:28949)
+> LEGS: 28949 (previous: 0, now:28949)
+ - Include path found, including - gpx/2017/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2017/svx/all_gpx
+> - MEM:50.2265625 Reading. parent:1623 <> gpx/2017/svx/all_gpx
+> - Include path found, including - gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> - NO Match in DB (i) for a cave for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - MEM:50.2265625 Reading. parent:1623 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - Begin found for: car-park-to-stone-bridge_psargent-2017-08-06
+> > > - MEM:50.35546875 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/track0
+> > - Begin found for: track0
+> > > - MEM:50.35546875 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:50.35546875 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > LEGS: 70 (previous: 28949, now:29019)
+ - Include path found, including - gpx/2017/additional_info
+ - NO Match in DB (i) for a cave for gpx/2017/additional_info
+> - MEM:50.3671875 Reading. parent:1623 <> gpx/2017/additional_info
+ - Include path found, including - gpx/2018/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2018/svx/all_gpx
+> - MEM:50.3671875 Reading. parent:1623 <> gpx/2018/svx/all_gpx
+> - Include path found, including - gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - MEM:50.3671875 Reading. parent:1623 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - Begin found for: balkon-to-organhoehle_aday-2018-07-12
+> > > - MEM:50.3671875 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:50.3671875 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:50.3671875 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > LEGS: 253 (previous: 29019, now:29272)
+> - Include path found, including - gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - MEM:50.37109375 Reading. parent:1623 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - Begin found for: fischgesicht-to-painted-track_aday-2018-07-12
+> > > - MEM:50.37890625 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:50.37890625 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:50.37890625 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > LEGS: 297 (previous: 29272, now:29569)
+> - Include path found, including - gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - MEM:50.46484375 Reading. parent:1623 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - Begin found for: gschwandalm-to-car-park_aday-2018-07-12
+> > > - MEM:50.53515625 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:50.53515625 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:50.53515625 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > LEGS: 721 (previous: 29569, now:30290)
+> - Include path found, including - gpx/2018/svx/painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - MEM:50.765625 Reading. parent:1623 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - Begin found for: painted-track_aday-2018-07-12
+> > > - MEM:50.765625 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:50.765625 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:50.765625 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > LEGS: 696 (previous: 30290, now:30986)
+> - Include path found, including - gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - MEM:50.99609375 Reading. parent:1623 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - Begin found for: prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > > - MEM:51.0703125 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:51.0703125 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:51.0703125 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > LEGS: 934 (previous: 30986, now:31920)
+> - Include path found, including - gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - MEM:51.37890625 Reading. parent:1623 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - Begin found for: prospecting-near-organhoehle_aday-2018-07-12
+> > > - MEM:51.49609375 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:51.49609375 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:51.49609375 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > LEGS: 1144 (previous: 31920, now:33064)
+> - Include path found, including - gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - MEM:51.83984375 Reading. parent:1623 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - Begin found for: prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > > - MEM:52.12890625 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:52.12890625 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:52.12890625 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > LEGS: 1858 (previous: 33064, now:34922)
+> - Include path found, including - gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - MEM:52.7109375 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - Begin found for: stone-bridge-to-balkon_aday-2018-07-12
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > LEGS: 187 (previous: 34922, now:35109)
+> - Include path found, including - gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - MEM:52.71484375 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - Begin found for: stone-bridge-to-fischgesicht_aday-2018-07-12
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > LEGS: 262 (previous: 35109, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_aday-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - MEM:52.71484375 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - Begin found for: waypoints_aday-2018-07-11
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-11 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - MEM:52.71484375 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - Begin found for: waypoints_aday-2018-07-12
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-12 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_jtoft-2018-07-14
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - MEM:52.71484375 Reading. parent:1623 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - No match (b) for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - Begin found for: waypoints_jtoft-2018-07-14
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/waypoints_jtoft-2018-07-14 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - MEM:52.71484375 Reading. parent:1623 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - Begin found for: waypoints_mshinwell-2018-07-11
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/waypoints_mshinwell-2018-07-11 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> - NO Match in DB (i) for a cave for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - MEM:52.71484375 Reading. parent:1623 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - Begin found for: west-of-plateau_cdensham-2018-07-15
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for: track0
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for: seg0
+> > > - MEM:52.71484375 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > LEGS: 1402 (previous: 35371, now:36773)
+ - Include path found, including - kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+ - NO Match in DB (i) for a cave for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - MEM:52.9453125 Reading. parent:1623 <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - No match (b) for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - Begin found for: kataster-boundaries
+> > - MEM:52.96484375 Reading. parent:kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> LEGS: 0 (previous: 36773, now:36773)
diff --git a/mem-1.log b/mem-1.log
new file mode 100644
index 0000000..84e1bc7
--- /dev/null
+++ b/mem-1.log
@@ -0,0 +1,13399 @@
+ - MEM:41.578125 Reading. parent:1623 <> 1623
+ - Include path found, including - kataster/1623
+ - NO Match in DB (i) for a cave for kataster/1623
+> - MEM:41.5859375 Reading. parent:1623 <> kataster/1623
+> - No match (b) for kataster/1623
+> - Begin found for:1623, creating new SurvexBlock
+> > - MEM:41.5859375 Reading. parent:kataster/1623 <> kataster/1623
+> - Include path found, including - fixedpts/allfixedpts
+> - NO Match in DB (i) for a cave for fixedpts/allfixedpts
+> > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/allfixedpts
+> > - Include path found, including - fixedpts/gps/allgps
+> > - NO Match in DB (i) for a cave for fixedpts/gps/allgps
+> > > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/gps/allgps
+> > > - Include path found, including - fixedpts/gps/gps96
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps96
+> > > > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/gps/gps96
+> > > > - No match (b) for fixedpts/gps/GPS96
+> > > > - Begin found for:gps96, creating new SurvexBlock
+> > > > > - MEM:41.5859375 Reading. parent:fixedpts/gps/gps96 <> fixedpts/gps/gps96
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps98
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps98
+> > > > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/gps/gps98
+> > > > - No match (b) for fixedpts/gps/GPS98
+> > > > - Begin found for:gps98, creating new SurvexBlock
+> > > > > - MEM:41.5859375 Reading. parent:fixedpts/gps/gps98 <> fixedpts/gps/gps98
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps00
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps00
+> > > > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/gps/gps00
+> > > > - No match (b) for fixedpts/gps/gps00
+> > > > - Begin found for:gps00, creating new SurvexBlock
+> > > > > - MEM:41.5859375 Reading. parent:fixedpts/gps/gps00 <> fixedpts/gps/gps00
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps01
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps01
+> > > > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/gps/gps01
+> > > > - No match (b) for fixedpts/gps/gps01
+> > > > - Begin found for:gps01, creating new SurvexBlock
+> > > > > - MEM:41.5859375 Reading. parent:fixedpts/gps/gps01 <> fixedpts/gps/gps01
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps02
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02
+> > > > - MEM:41.5859375 Reading. parent:kataster/1623 <> fixedpts/gps/gps02
+> > > > - No match (b) for fixedpts/gps/gps02
+> > > > - Begin found for:gps02, creating new SurvexBlock
+> > > > > - MEM:41.5859375 Reading. parent:fixedpts/gps/gps02 <> fixedpts/gps/gps02
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps02olly
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02olly
+> > > > - MEM:41.63671875 Reading. parent:kataster/1623 <> fixedpts/gps/gps02olly
+> > > > - No match (b) for fixedpts/gps/gps02olly
+> > > > - Begin found for:gps02olly, creating new SurvexBlock
+> > > > > - MEM:41.640625 Reading. parent:fixedpts/gps/gps02olly <> fixedpts/gps/gps02olly
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps03
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03
+> > > > - MEM:41.640625 Reading. parent:kataster/1623 <> fixedpts/gps/gps03
+> > > > - No match (b) for fixedpts/gps/gps03
+> > > > - Begin found for:gps03, creating new SurvexBlock
+> > > > > - MEM:41.640625 Reading. parent:fixedpts/gps/gps03 <> fixedpts/gps/gps03
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps03_bis
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03_bis
+> > > > - MEM:41.640625 Reading. parent:kataster/1623 <> fixedpts/gps/gps03_bis
+> > > > - No match (b) for fixedpts/gps/gps03_bis
+> > > > - Begin found for:gps03_bis, creating new SurvexBlock
+> > > > > - MEM:41.640625 Reading. parent:fixedpts/gps/gps03_bis <> fixedpts/gps/gps03_bis
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps04
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps04
+> > > > - MEM:41.78515625 Reading. parent:kataster/1623 <> fixedpts/gps/gps04
+> > > > - No match (b) for fixedpts/gps/gps04
+> > > > - Begin found for:gps04, creating new SurvexBlock
+> > > > > - MEM:41.78515625 Reading. parent:fixedpts/gps/gps04 <> fixedpts/gps/gps04
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps05dave
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05dave
+> > > > - MEM:41.78515625 Reading. parent:kataster/1623 <> fixedpts/gps/gps05dave
+> > > - Include path found, including - fixedpts/gps/gps05
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05
+> > > > - MEM:41.78515625 Reading. parent:kataster/1623 <> fixedpts/gps/gps05
+> > > - Include path found, including - fixedpts/gps/gps06
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps06
+> > > > - MEM:41.78515625 Reading. parent:kataster/1623 <> fixedpts/gps/gps06
+> > > > - No match (b) for fixedpts/gps/gps06
+> > > > - Begin found for:gps06, creating new SurvexBlock
+> > > > > - MEM:41.78515625 Reading. parent:fixedpts/gps/gps06 <> fixedpts/gps/gps06
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps07
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps07
+> > > > - MEM:41.78515625 Reading. parent:kataster/1623 <> fixedpts/gps/gps07
+> > > > - No match (b) for fixedpts/gps/gps07
+> > > > - Begin found for:gps07, creating new SurvexBlock
+> > > > > - MEM:41.7890625 Reading. parent:fixedpts/gps/gps07 <> fixedpts/gps/gps07
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps09
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps09
+> > > > - MEM:41.85546875 Reading. parent:kataster/1623 <> fixedpts/gps/gps09
+> > > - Include path found, including - fixedpts/gps/gps10
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps10
+> > > > - MEM:41.85546875 Reading. parent:kataster/1623 <> fixedpts/gps/gps10
+> > > - Include path found, including - fixedpts/gps/gps11
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps11
+> > > > - MEM:41.85546875 Reading. parent:kataster/1623 <> fixedpts/gps/gps11
+> > > - Include path found, including - fixedpts/gps/gps12
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps12
+> > > > - MEM:41.85546875 Reading. parent:kataster/1623 <> fixedpts/gps/gps12
+> > > - Include path found, including - fixedpts/gps/gps14
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps14
+> > > > - MEM:41.86328125 Reading. parent:kataster/1623 <> fixedpts/gps/gps14
+> > > - Include path found, including - fixedpts/gps/gps15
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps15
+> > > > - MEM:41.86328125 Reading. parent:kataster/1623 <> fixedpts/gps/gps15
+> > > - Include path found, including - fixedpts/gps/gps16
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps16
+> > > > - MEM:41.86328125 Reading. parent:kataster/1623 <> fixedpts/gps/gps16
+> > > - Include path found, including - fixedpts/gps/gps17
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps17
+> > > > - MEM:41.86328125 Reading. parent:kataster/1623 <> fixedpts/gps/gps17
+> > > - Include path found, including - fixedpts/gps/gps18
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps18
+> > > > - MEM:41.86328125 Reading. parent:kataster/1623 <> fixedpts/gps/gps18
+> > - Include path found, including - fixedpts/nils2000
+> > - NO Match in DB (i) for a cave for fixedpts/nils2000
+> > > - MEM:41.86328125 Reading. parent:kataster/1623 <> fixedpts/nils2000
+> > - Include path found, including - fixedpts/laser
+> > - NO Match in DB (i) for a cave for fixedpts/laser
+> > > - MEM:41.88671875 Reading. parent:kataster/1623 <> fixedpts/laser
+> > > - No match (b) for fixedpts/Laser
+> > > - Begin found for:laser, creating new SurvexBlock
+> > > > - MEM:41.88671875 Reading. parent:fixedpts/laser <> fixedpts/laser
+> > > LEGS: 0 (previous: 0, now:0)
+> > - Include path found, including - fixedpts/fb-map
+> > - NO Match in DB (i) for a cave for fixedpts/fb-map
+> > > - MEM:41.88671875 Reading. parent:kataster/1623 <> fixedpts/fb-map
+> > - Include path found, including - fixedpts/misc
+> > - NO Match in DB (i) for a cave for fixedpts/misc
+> > > - MEM:41.88671875 Reading. parent:kataster/1623 <> fixedpts/misc
+> - Include path found, including - caves-1623/caves
+> - NO Match in DB (i) for a cave for caves-1623/caves
+> > - MEM:41.88671875 Reading. parent:kataster/1623 <> caves-1623/caves
+> > - Include path found, including - caves-1623/links
+> > - NO Match in DB (i) for a cave for caves-1623/links
+> > > - MEM:41.88671875 Reading. parent:kataster/1623 <> caves-1623/links
+> > - Include path found, including - caves-1623/18/18
+> > - Match in DB (i) for cave 1623-18.
+[<Cave: 1623-18>]
+> > > - MEM:42.2421875 Reading. parent:kataster/1623 <> caves-1623/18/18
+[<Cave: 1623-18>]
+> > > - Begin found for:18, creating new SurvexBlock
+> > > > - MEM:42.24609375 Reading. parent:caves-1623/18/18 <> caves-1623/18/18
+[<Cave: 1623-18>]
+> > > LEGS: 33 (previous: 0, now:33)
+> > - Include path found, including - caves-1623/31/31
+> > - Match in DB (i) for cave 1623-31.
+[<Cave: 1623-31>]
+> > > - MEM:42.27734375 Reading. parent:kataster/1623 <> caves-1623/31/31
+[<Cave: 1623-31>]
+> > > - Begin found for:31, creating new SurvexBlock
+> > > > - MEM:42.28125 Reading. parent:caves-1623/31/31 <> caves-1623/31/31
+[<Cave: 1623-31>]
+> > > - Include path found, including - caves-1623/31/elchalt
+> > > - Match in DB (i) for cave 1623-31.
+[<Cave: 1623-31>]
+> > > > - MEM:42.2890625 Reading. parent:caves-1623/31/31 <> caves-1623/31/elchalt
+[<Cave: 1623-31>]
+[<Cave: 1623-31>]
+> > > > - Begin found for:elchalt, creating new SurvexBlock
+> > > > > - MEM:42.30078125 Reading. parent:caves-1623/31/elchalt <> caves-1623/31/elchalt
+[<Cave: 1623-31>]
+> > > > LEGS: 30 (previous: 33, now:63)
+> > > LEGS: 30 (previous: 33, now:63)
+> > - Include path found, including - caves-1623/76/76
+> > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > - MEM:42.30859375 Reading. parent:kataster/1623 <> caves-1623/76/76
+[<Cave: 1623-76>]
+> > > - Begin found for:76, creating new SurvexBlock
+> > > > - MEM:42.31640625 Reading. parent:caves-1623/76/76 <> caves-1623/76/76
+[<Cave: 1623-76>]
+> > > - Include path found, including - caves-1623/76/entrance
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.32421875 Reading. parent:caves-1623/76/76 <> caves-1623/76/entrance
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:42.3359375 Reading. parent:caves-1623/76/entrance <> caves-1623/76/entrance
+[<Cave: 1623-76>]
+> > > > LEGS: 7 (previous: 63, now:70)
+> > > - Include path found, including - caves-1623/76/bitter
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.3671875 Reading. parent:caves-1623/76/76 <> caves-1623/76/bitter
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:bitter, creating new SurvexBlock
+> > > > > - MEM:42.37109375 Reading. parent:caves-1623/76/bitter <> caves-1623/76/bitter
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 70, now:79)
+> > > - Include path found, including - caves-1623/76/bent
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.375 Reading. parent:caves-1623/76/76 <> caves-1623/76/bent
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:bent, creating new SurvexBlock
+> > > > > - MEM:42.37890625 Reading. parent:caves-1623/76/bent <> caves-1623/76/bent
+[<Cave: 1623-76>]
+> > > > LEGS: 7 (previous: 79, now:86)
+> > > - Include path found, including - caves-1623/76/brave
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.3828125 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave, creating new SurvexBlock
+> > > > > - MEM:42.390625 Reading. parent:caves-1623/76/brave <> caves-1623/76/brave
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 86, now:121)
+> > > - Include path found, including - caves-1623/76/lovers
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.390625 Reading. parent:caves-1623/76/76 <> caves-1623/76/lovers
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:lovers, creating new SurvexBlock
+> > > > > - MEM:42.39453125 Reading. parent:caves-1623/76/lovers <> caves-1623/76/lovers
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 121, now:130)
+> > > - Include path found, including - caves-1623/76/saved
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.40234375 Reading. parent:caves-1623/76/76 <> caves-1623/76/saved
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:saved, creating new SurvexBlock
+> > > > > - MEM:42.40625 Reading. parent:caves-1623/76/saved <> caves-1623/76/saved
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 130, now:151)
+> > > - Include path found, including - caves-1623/76/brave2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.41015625 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave2, creating new SurvexBlock
+> > > > > - MEM:42.4140625 Reading. parent:caves-1623/76/brave2 <> caves-1623/76/brave2
+[<Cave: 1623-76>]
+> > > > LEGS: 19 (previous: 151, now:170)
+> > > - Include path found, including - caves-1623/76/brave3
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.41796875 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave3
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave3, creating new SurvexBlock
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/brave3 <> caves-1623/76/brave3
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 170, now:176)
+> > > - Include path found, including - caves-1623/76/brave4
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.4296875 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave4
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave4, creating new SurvexBlock
+> > > > > - MEM:42.43359375 Reading. parent:caves-1623/76/brave4 <> caves-1623/76/brave4
+[<Cave: 1623-76>]
+> > > > LEGS: 13 (previous: 176, now:189)
+> > > - Include path found, including - caves-1623/76/brave5
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.4375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave5
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave5, creating new SurvexBlock
+> > > > > - MEM:42.4375 Reading. parent:caves-1623/76/brave5 <> caves-1623/76/brave5
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 189, now:197)
+> > > - Include path found, including - caves-1623/76/brave6
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.44140625 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave6
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave6, creating new SurvexBlock
+> > > > > - MEM:42.44921875 Reading. parent:caves-1623/76/brave6 <> caves-1623/76/brave6
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 197, now:201)
+> > > - Include path found, including - caves-1623/76/brave7
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.44921875 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave7
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave7, creating new SurvexBlock
+> > > > > - MEM:42.484375 Reading. parent:caves-1623/76/brave7 <> caves-1623/76/brave7
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 201, now:211)
+> > > - Include path found, including - caves-1623/76/brave8
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.484375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave8
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave8, creating new SurvexBlock
+> > > > > - MEM:42.484375 Reading. parent:caves-1623/76/brave8 <> caves-1623/76/brave8
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 211, now:217)
+> > > - Include path found, including - caves-1623/76/keg
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.484375 Reading. parent:caves-1623/76/76 <> caves-1623/76/keg
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:keg, creating new SurvexBlock
+> > > > > - MEM:42.484375 Reading. parent:caves-1623/76/keg <> caves-1623/76/keg
+[<Cave: 1623-76>]
+> > > > LEGS: 18 (previous: 217, now:235)
+> > > - Include path found, including - caves-1623/76/tap
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.484375 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:tap, creating new SurvexBlock
+> > > > > - MEM:42.484375 Reading. parent:caves-1623/76/tap <> caves-1623/76/tap
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 235, now:256)
+> > > - Include path found, including - caves-1623/76/rift
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.484375 Reading. parent:caves-1623/76/76 <> caves-1623/76/rift
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:rift, creating new SurvexBlock
+> > > > > - MEM:42.49609375 Reading. parent:caves-1623/76/rift <> caves-1623/76/rift
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 256, now:271)
+> > > - Include path found, including - caves-1623/76/noways
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.5078125 Reading. parent:caves-1623/76/76 <> caves-1623/76/noways
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:noways, creating new SurvexBlock
+> > > > > - MEM:42.51953125 Reading. parent:caves-1623/76/noways <> caves-1623/76/noways
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 271, now:286)
+> > > - Include path found, including - caves-1623/76/pitch
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.53515625 Reading. parent:caves-1623/76/76 <> caves-1623/76/pitch
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:pitch, creating new SurvexBlock
+> > > > > - MEM:42.546875 Reading. parent:caves-1623/76/pitch <> caves-1623/76/pitch
+[<Cave: 1623-76>]
+> > > > LEGS: 12 (previous: 286, now:298)
+> > > - Include path found, including - caves-1623/76/boiling
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.56640625 Reading. parent:caves-1623/76/76 <> caves-1623/76/boiling
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:boiling, creating new SurvexBlock
+> > > > > - MEM:42.578125 Reading. parent:caves-1623/76/boiling <> caves-1623/76/boiling
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 298, now:313)
+> > > - Include path found, including - caves-1623/76/99
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.59375 Reading. parent:caves-1623/76/76 <> caves-1623/76/99
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:99, creating new SurvexBlock
+> > > > > - MEM:42.6015625 Reading. parent:caves-1623/76/99 <> caves-1623/76/99
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 313, now:319)
+> > > - Include path found, including - caves-1623/76/tap2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.6328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:tap2, creating new SurvexBlock
+> > > > > - MEM:42.640625 Reading. parent:caves-1623/76/tap2 <> caves-1623/76/tap2
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 319, now:325)
+> > > - Include path found, including - caves-1623/76/taprift
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.640625 Reading. parent:caves-1623/76/76 <> caves-1623/76/taprift
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:taprift, creating new SurvexBlock
+> > > > > - MEM:42.65234375 Reading. parent:caves-1623/76/taprift <> caves-1623/76/taprift
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 325, now:335)
+> > > - Include path found, including - caves-1623/76/pleasant
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.65234375 Reading. parent:caves-1623/76/76 <> caves-1623/76/pleasant
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:pleasant, creating new SurvexBlock
+> > > > > - MEM:42.65625 Reading. parent:caves-1623/76/pleasant <> caves-1623/76/pleasant
+[<Cave: 1623-76>]
+> > > > LEGS: 11 (previous: 335, now:346)
+> > > - Include path found, including - caves-1623/76/batman
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.66015625 Reading. parent:caves-1623/76/76 <> caves-1623/76/batman
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:batman, creating new SurvexBlock
+> > > > > - MEM:42.66796875 Reading. parent:caves-1623/76/batman <> caves-1623/76/batman
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 346, now:350)
+> > > - Include path found, including - caves-1623/76/pancake
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.66796875 Reading. parent:caves-1623/76/76 <> caves-1623/76/pancake
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:pancake, creating new SurvexBlock
+> > > > > - MEM:42.67578125 Reading. parent:caves-1623/76/pancake <> caves-1623/76/pancake
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 350, now:360)
+> > > - Include path found, including - caves-1623/76/loopy
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.67578125 Reading. parent:caves-1623/76/76 <> caves-1623/76/loopy
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:loopy, creating new SurvexBlock
+> > > > > - MEM:42.68359375 Reading. parent:caves-1623/76/loopy <> caves-1623/76/loopy
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 360, now:395)
+> > > - Include path found, including - caves-1623/76/spent
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.68359375 Reading. parent:caves-1623/76/76 <> caves-1623/76/spent
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:spent, creating new SurvexBlock
+> > > > > - MEM:42.69140625 Reading. parent:caves-1623/76/spent <> caves-1623/76/spent
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 395, now:405)
+> > > - Include path found, including - caves-1623/76/strange
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.6953125 Reading. parent:caves-1623/76/76 <> caves-1623/76/strange
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:strange, creating new SurvexBlock
+> > > > > - MEM:42.69921875 Reading. parent:caves-1623/76/strange <> caves-1623/76/strange
+[<Cave: 1623-76>]
+> > > > LEGS: 24 (previous: 405, now:429)
+> > > - Include path found, including - caves-1623/76/stranger
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.71875 Reading. parent:caves-1623/76/76 <> caves-1623/76/stranger
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:stranger, creating new SurvexBlock
+> > > > > - MEM:42.7265625 Reading. parent:caves-1623/76/stranger <> caves-1623/76/stranger
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 429, now:435)
+> > > - Include path found, including - caves-1623/76/waste
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.7265625 Reading. parent:caves-1623/76/76 <> caves-1623/76/waste
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:waste, creating new SurvexBlock
+> > > > > - MEM:42.76171875 Reading. parent:caves-1623/76/waste <> caves-1623/76/waste
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 435, now:444)
+> > > - Include path found, including - caves-1623/76/hotgkpitch
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.76171875 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgkpitch
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:hotgkpitch, creating new SurvexBlock
+> > > > > - MEM:42.76171875 Reading. parent:caves-1623/76/hotgkpitch <> caves-1623/76/hotgkpitch
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 444, now:452)
+> > > - Include path found, including - caves-1623/76/hotgk
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.76171875 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgk
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:hotgk, creating new SurvexBlock
+> > > > > - MEM:42.76171875 Reading. parent:caves-1623/76/hotgk <> caves-1623/76/hotgk
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 452, now:473)
+> > > - Include path found, including - caves-1623/76/fiesta
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.76171875 Reading. parent:caves-1623/76/76 <> caves-1623/76/fiesta
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:fiesta, creating new SurvexBlock
+> > > > > - MEM:42.76171875 Reading. parent:caves-1623/76/fiesta <> caves-1623/76/fiesta
+[<Cave: 1623-76>]
+> > > > LEGS: 31 (previous: 473, now:504)
+> > > - Include path found, including - caves-1623/76/holes
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.76171875 Reading. parent:caves-1623/76/76 <> caves-1623/76/holes
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:holes, creating new SurvexBlock
+> > > > > - MEM:42.765625 Reading. parent:caves-1623/76/holes <> caves-1623/76/holes
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 504, now:512)
+> > > - Include path found, including - caves-1623/76/boil2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.80859375 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:boil2, creating new SurvexBlock
+> > > > > - MEM:42.81640625 Reading. parent:caves-1623/76/boil2 <> caves-1623/76/boil2
+[<Cave: 1623-76>]
+> > > > LEGS: 3 (previous: 512, now:515)
+> > > - Include path found, including - caves-1623/76/boil3
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8203125 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil3
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:boil3, creating new SurvexBlock
+> > > > > - MEM:42.82421875 Reading. parent:caves-1623/76/boil3 <> caves-1623/76/boil3
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 515, now:519)
+> > > - Include path found, including - caves-1623/76/choss
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.828125 Reading. parent:caves-1623/76/76 <> caves-1623/76/choss
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:choss, creating new SurvexBlock
+> > > > > - MEM:42.8359375 Reading. parent:caves-1623/76/choss <> caves-1623/76/choss
+[<Cave: 1623-76>]
+> > > > LEGS: 5 (previous: 519, now:524)
+> > > - Include path found, including - caves-1623/76/brave9
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.83984375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave9
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave9, creating new SurvexBlock
+> > > > > - MEM:42.84375 Reading. parent:caves-1623/76/brave9 <> caves-1623/76/brave9
+[<Cave: 1623-76>]
+> > > > LEGS: 12 (previous: 524, now:536)
+> > > - Include path found, including - caves-1623/76/electric_upper
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.84765625 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_upper
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:electric_upper, creating new SurvexBlock
+> > > > > - MEM:42.8515625 Reading. parent:caves-1623/76/electric_upper <> caves-1623/76/electric_upper
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 536, now:571)
+> > > - Include path found, including - caves-1623/76/electric_lower
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.859375 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_lower
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:electric_lower, creating new SurvexBlock
+> > > > > - MEM:42.875 Reading. parent:caves-1623/76/electric_lower <> caves-1623/76/electric_lower
+[<Cave: 1623-76>]
+> > > > LEGS: 249 (previous: 571, now:820)
+> > > - Include path found, including - caves-1623/76/atomic
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.875 Reading. parent:caves-1623/76/76 <> caves-1623/76/atomic
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:atomic, creating new SurvexBlock
+> > > > > - MEM:42.875 Reading. parent:caves-1623/76/atomic <> caves-1623/76/atomic
+[<Cave: 1623-76>]
+> > > > LEGS: 65 (previous: 820, now:885)
+> > > LEGS: 822 (previous: 63, now:885)
+> > - Include path found, including - caves-1623/81/81
+> > - Match in DB (i) for cave 1623-81.
+[<Cave: 1623-81>]
+> > > - MEM:42.875 Reading. parent:kataster/1623 <> caves-1623/81/81
+[<Cave: 1623-81>]
+> > > - Begin found for:81, creating new SurvexBlock
+> > > > - MEM:42.875 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+[<Cave: 1623-81>]
+[<Cave: 1623-81>]
+> > > - Begin found for:oldcave, creating new SurvexBlock
+> > > > - MEM:42.875 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+[<Cave: 1623-81>]
+> > > LEGS: 10 (previous: 885, now:895)
+> > - Include path found, including - caves-1623/90/90
+> > - Match in DB (i) for cave 1623-90.
+[<Cave: 1623-90>]
+> > > - MEM:42.875 Reading. parent:kataster/1623 <> caves-1623/90/90
+[<Cave: 1623-90>]
+> > > - Begin found for:90, creating new SurvexBlock
+> > > > - MEM:42.87890625 Reading. parent:caves-1623/90/90 <> caves-1623/90/90
+[<Cave: 1623-90>]
+> > > LEGS: 1 (previous: 895, now:896)
+> > - Include path found, including - caves-1623/91/91
+> > - Match in DB (i) for cave 1623-91.
+[<Cave: 1623-91>]
+> > > - MEM:42.87890625 Reading. parent:kataster/1623 <> caves-1623/91/91
+[<Cave: 1623-91>]
+> > > - Begin found for:91, creating new SurvexBlock
+> > > > - MEM:42.8828125 Reading. parent:caves-1623/91/91 <> caves-1623/91/91
+[<Cave: 1623-91>]
+> > > LEGS: 1 (previous: 896, now:897)
+> > - Include path found, including - caves-1623/96/96
+> > - Match in DB (i) for cave 1623-96.
+[<Cave: 1623-96>]
+> > > - MEM:42.8828125 Reading. parent:kataster/1623 <> caves-1623/96/96
+[<Cave: 1623-96>]
+> > > - Begin found for:96, creating new SurvexBlock
+> > > > - MEM:42.88671875 Reading. parent:caves-1623/96/96 <> caves-1623/96/96
+[<Cave: 1623-96>]
+> > > LEGS: 8 (previous: 897, now:905)
+> > - Include path found, including - caves-1623/97/97
+> > - Match in DB (i) for cave 1623-97.
+[<Cave: 1623-97>]
+> > > - MEM:42.8984375 Reading. parent:kataster/1623 <> caves-1623/97/97
+[<Cave: 1623-97>]
+> > > - Begin found for:97, creating new SurvexBlock
+> > > > - MEM:42.90625 Reading. parent:caves-1623/97/97 <> caves-1623/97/97
+[<Cave: 1623-97>]
+> > > LEGS: 47 (previous: 905, now:952)
+> > - Include path found, including - caves-1623/101/101
+> > - Match in DB (i) for cave 1623-101.
+[<Cave: 1623-101>]
+> > > - MEM:42.91015625 Reading. parent:kataster/1623 <> caves-1623/101/101
+[<Cave: 1623-101>]
+> > > - Begin found for:101, creating new SurvexBlock
+> > > > - MEM:42.91015625 Reading. parent:caves-1623/101/101 <> caves-1623/101/101
+[<Cave: 1623-101>]
+> > > LEGS: 142 (previous: 952, now:1094)
+> > - Include path found, including - caves-1623/103/103
+> > - Match in DB (i) for cave 1623-103.
+[<Cave: 1623-103>]
+> > > - MEM:42.953125 Reading. parent:kataster/1623 <> caves-1623/103/103
+[<Cave: 1623-103>]
+> > > - Begin found for:103, creating new SurvexBlock
+> > > > - MEM:42.953125 Reading. parent:caves-1623/103/103 <> caves-1623/103/103
+[<Cave: 1623-103>]
+> > > LEGS: 1 (previous: 1094, now:1095)
+> > - Include path found, including - caves-1623/105/105
+> > - Match in DB (i) for cave 1623-105.
+[<Cave: 1623-105>]
+> > > - MEM:42.953125 Reading. parent:kataster/1623 <> caves-1623/105/105
+[<Cave: 1623-105>]
+> > > - Begin found for:105, creating new SurvexBlock
+> > > > - MEM:42.953125 Reading. parent:caves-1623/105/105 <> caves-1623/105/105
+[<Cave: 1623-105>]
+> > > LEGS: 2 (previous: 1095, now:1097)
+> > - Include path found, including - caves-1623/108/108
+> > - Match in DB (i) for cave 1623-108.
+[<Cave: 1623-108>]
+> > > - MEM:42.953125 Reading. parent:kataster/1623 <> caves-1623/108/108
+[<Cave: 1623-108>]
+> > > - Begin found for:108, creating new SurvexBlock
+> > > > - MEM:42.953125 Reading. parent:caves-1623/108/108 <> caves-1623/108/108
+[<Cave: 1623-108>]
+> > > LEGS: 1 (previous: 1097, now:1098)
+> > - Include path found, including - caves-1623/113/113
+> > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > - MEM:42.9765625 Reading. parent:kataster/1623 <> caves-1623/113/113
+[<Cave: 1623-113>]
+> > > - Begin found for:113, creating new SurvexBlock
+> > > > - MEM:42.9921875 Reading. parent:caves-1623/113/113 <> caves-1623/113/113
+[<Cave: 1623-113>]
+> > > - Include path found, including - caves-1623/113/haupt
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.00390625 Reading. parent:caves-1623/113/113 <> caves-1623/113/haupt
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > - MEM:43.0234375 Reading. parent:caves-1623/113/haupt <> caves-1623/113/haupt
+[<Cave: 1623-113>]
+> > > > LEGS: 98 (previous: 1098, now:1196)
+> > > - Include path found, including - caves-1623/113/oper
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.03515625 Reading. parent:caves-1623/113/113 <> caves-1623/113/oper
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for:oper, creating new SurvexBlock
+> > > > > - MEM:43.0390625 Reading. parent:caves-1623/113/oper <> caves-1623/113/oper
+[<Cave: 1623-113>]
+> > > > LEGS: 21 (previous: 1196, now:1217)
+> > > - Include path found, including - caves-1623/113/sumpf
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.0390625 Reading. parent:caves-1623/113/113 <> caves-1623/113/sumpf
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for:sumpf, creating new SurvexBlock
+> > > > > - MEM:43.05078125 Reading. parent:caves-1623/113/sumpf <> caves-1623/113/sumpf
+[<Cave: 1623-113>]
+> > > > LEGS: 38 (previous: 1217, now:1255)
+> > > LEGS: 157 (previous: 1098, now:1255)
+> > - Include path found, including - caves-1623/116/116
+> > - Match in DB (i) for cave 1623-116.
+[<Cave: 1623-116>]
+> > > - MEM:43.05078125 Reading. parent:kataster/1623 <> caves-1623/116/116
+[<Cave: 1623-116>]
+> > > - Begin found for:116, creating new SurvexBlock
+> > > > - MEM:43.05078125 Reading. parent:caves-1623/116/116 <> caves-1623/116/116
+[<Cave: 1623-116>]
+> > > LEGS: 41 (previous: 1255, now:1296)
+> > - Include path found, including - caves-1623/131/131
+> > - Match in DB (i) for cave 1623-131.
+[<Cave: 1623-131>]
+> > > - MEM:43.0546875 Reading. parent:kataster/1623 <> caves-1623/131/131
+[<Cave: 1623-131>]
+> > > - Begin found for:131, creating new SurvexBlock
+> > > > - MEM:43.0546875 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+[<Cave: 1623-131>]
+[<Cave: 1623-131>]
+> > > - Begin found for:part1, creating new SurvexBlock
+> > > > - MEM:43.0546875 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+[<Cave: 1623-131>]
+> > > LEGS: 32 (previous: 1296, now:1328)
+> > - Include path found, including - caves-1623/135/135
+> > - Match in DB (i) for cave 1623-135.
+[<Cave: 1623-135>]
+> > > - MEM:43.0546875 Reading. parent:kataster/1623 <> caves-1623/135/135
+[<Cave: 1623-135>]
+> > > - Begin found for:135, creating new SurvexBlock
+> > > > - MEM:43.0546875 Reading. parent:caves-1623/135/135 <> caves-1623/135/135
+[<Cave: 1623-135>]
+> > > LEGS: 2 (previous: 1328, now:1330)
+> > - Include path found, including - caves-1623/138/138
+> > - Match in DB (i) for cave 1623-138.
+[<Cave: 1623-138>]
+> > > - MEM:43.0546875 Reading. parent:kataster/1623 <> caves-1623/138/138
+[<Cave: 1623-138>]
+> > > - Begin found for:138, creating new SurvexBlock
+> > > > - MEM:43.0546875 Reading. parent:caves-1623/138/138 <> caves-1623/138/138
+[<Cave: 1623-138>]
+> > > LEGS: 2 (previous: 1330, now:1332)
+> > - Include path found, including - caves-1623/139/139
+> > - Match in DB (i) for cave 1623-139.
+[<Cave: 1623-139>]
+> > > - MEM:43.0546875 Reading. parent:kataster/1623 <> caves-1623/139/139
+[<Cave: 1623-139>]
+> > > - Begin found for:139, creating new SurvexBlock
+> > > > - MEM:43.0546875 Reading. parent:caves-1623/139/139 <> caves-1623/139/139
+[<Cave: 1623-139>]
+> > > LEGS: 2 (previous: 1332, now:1334)
+> > - Include path found, including - caves-1623/140/140
+> > - Match in DB (i) for cave 1623-140.
+[<Cave: 1623-140>]
+> > > - MEM:43.0546875 Reading. parent:kataster/1623 <> caves-1623/140/140
+[<Cave: 1623-140>]
+> > > - Begin found for:140, creating new SurvexBlock
+> > > > - MEM:43.0546875 Reading. parent:caves-1623/140/140 <> caves-1623/140/140
+[<Cave: 1623-140>]
+> > > LEGS: 1 (previous: 1334, now:1335)
+> > - Include path found, including - caves-1623/145/145
+> > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > - MEM:43.1015625 Reading. parent:kataster/1623 <> caves-1623/145/145
+[<Cave: 1623-145>]
+> > > - Begin found for:145, creating new SurvexBlock
+> > > > - MEM:43.11328125 Reading. parent:caves-1623/145/145 <> caves-1623/145/145
+[<Cave: 1623-145>]
+> > > - Include path found, including - caves-1623/145/resurvey2005/145-2005
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.125 Reading. parent:caves-1623/145/145 <> caves-1623/145/resurvey2005/145-2005
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:145-2005, creating new SurvexBlock
+> > > > > - MEM:43.14453125 Reading. parent:caves-1623/145/resurvey2005/145-2005 <> caves-1623/145/resurvey2005/145-2005
+[<Cave: 1623-145>]
+> > > > LEGS: 100 (previous: 1335, now:1435)
+> > > - Include path found, including - caves-1623/145/145cucc/part3
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.14453125 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part3, creating new SurvexBlock
+> > > > > - MEM:43.15625 Reading. parent:caves-1623/145/145cucc/part3 <> caves-1623/145/145cucc/part3
+[<Cave: 1623-145>]
+> > > > LEGS: 29 (previous: 1435, now:1464)
+> > > - Include path found, including - caves-1623/145/145cucc/part3to4
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.16015625 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3to4
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part3to4, creating new SurvexBlock
+> > > > > - MEM:43.16796875 Reading. parent:caves-1623/145/145cucc/part3to4 <> caves-1623/145/145cucc/part3to4
+[<Cave: 1623-145>]
+> > > > LEGS: 1 (previous: 1464, now:1465)
+> > > - Include path found, including - caves-1623/145/145cucc/part4
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.171875 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part4
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part4, creating new SurvexBlock
+> > > > > - MEM:43.17578125 Reading. parent:caves-1623/145/145cucc/part4 <> caves-1623/145/145cucc/part4
+[<Cave: 1623-145>]
+> > > > LEGS: 49 (previous: 1465, now:1514)
+> > > - Include path found, including - caves-1623/145/145cucc/part5
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part5
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part5, creating new SurvexBlock
+> > > > > - MEM:43.20703125 Reading. parent:caves-1623/145/145cucc/part5 <> caves-1623/145/145cucc/part5
+[<Cave: 1623-145>]
+> > > > LEGS: 9 (previous: 1514, now:1523)
+> > > LEGS: 188 (previous: 1335, now:1523)
+> > - Include path found, including - caves-1623/147/147
+> > - Match in DB (i) for cave 1623-147.
+[<Cave: 1623-147>]
+> > > - MEM:43.20703125 Reading. parent:kataster/1623 <> caves-1623/147/147
+[<Cave: 1623-147>]
+> > > - Begin found for:sflink, creating new SurvexBlock
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/147/147 <> caves-1623/147/147
+[<Cave: 1623-147>]
+> > > LEGS: 1 (previous: 1523, now:1524)
+> > - Include path found, including - caves-1623/148/148-2007
+> > - Match in DB (i) for cave 1623-148.
+[<Cave: 1623-148>]
+> > > - MEM:43.20703125 Reading. parent:kataster/1623 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+> > > - Begin found for:148, creating new SurvexBlock
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+[<Cave: 1623-148>]
+> > > - Begin found for:ent, creating new SurvexBlock
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+> > > LEGS: 12 (previous: 1524, now:1536)
+> > - Include path found, including - caves-1623/152/152
+> > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > - MEM:43.20703125 Reading. parent:kataster/1623 <> caves-1623/152/152
+[<Cave: 1623-152>]
+> > > - Begin found for:152, creating new SurvexBlock
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/152/152 <> caves-1623/152/152
+[<Cave: 1623-152>]
+> > > - Include path found, including - caves-1623/152/bananamain
+> > > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > > - MEM:43.20703125 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananamain
+[<Cave: 1623-152>]
+[<Cave: 1623-152>]
+> > > > - Begin found for:bananamain, creating new SurvexBlock
+> > > > > - MEM:43.21484375 Reading. parent:caves-1623/152/bananamain <> caves-1623/152/bananamain
+[<Cave: 1623-152>]
+> > > > LEGS: 43 (previous: 1536, now:1579)
+> > > - Include path found, including - caves-1623/152/bananacon
+> > > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > > - MEM:43.23046875 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananacon
+[<Cave: 1623-152>]
+[<Cave: 1623-152>]
+> > > > - Begin found for:bananacon, creating new SurvexBlock
+> > > > > - MEM:43.24609375 Reading. parent:caves-1623/152/bananacon <> caves-1623/152/bananacon
+[<Cave: 1623-152>]
+> > > > LEGS: 13 (previous: 1579, now:1592)
+> > > LEGS: 56 (previous: 1536, now:1592)
+> > - Include path found, including - caves-1623/157/157
+> > - Match in DB (i) for cave 1623-157.
+[<Cave: 1623-157>]
+> > > - MEM:43.25 Reading. parent:kataster/1623 <> caves-1623/157/157
+[<Cave: 1623-157>]
+> > > - Begin found for:157, creating new SurvexBlock
+> > > > - MEM:43.25390625 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+[<Cave: 1623-157>]
+[<Cave: 1623-157>]
+> > > - Begin found for:pt2, creating new SurvexBlock
+> > > > - MEM:43.28515625 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+[<Cave: 1623-157>]
+> > > LEGS: 0 (previous: 1605, now:1605)
+> > - Include path found, including - caves-1623/162/162
+> > - Match in DB (i) for cave 1623-162.
+[<Cave: 1623-162>]
+> > > - MEM:43.296875 Reading. parent:kataster/1623 <> caves-1623/162/162
+[<Cave: 1623-162>]
+> > > - Begin found for:162, creating new SurvexBlock
+> > > > - MEM:43.3125 Reading. parent:caves-1623/162/162 <> caves-1623/162/162
+[<Cave: 1623-162>]
+> > > LEGS: 20 (previous: 1605, now:1625)
+> > - Include path found, including - caves-1623/163/163
+> > - Match in DB (i) for cave 1623-163.
+[<Cave: 1623-163>]
+> > > - MEM:43.421875 Reading. parent:kataster/1623 <> caves-1623/163/163
+[<Cave: 1623-163>]
+> > > - Begin found for:163, creating new SurvexBlock
+> > > > - MEM:43.421875 Reading. parent:caves-1623/163/163 <> caves-1623/163/163
+[<Cave: 1623-163>]
+> > > LEGS: 5 (previous: 1625, now:1630)
+> > - Include path found, including - caves-1623/171/171
+> > - Match in DB (i) for cave 1623-171.
+[<Cave: 1623-171>]
+> > > - MEM:43.4296875 Reading. parent:kataster/1623 <> caves-1623/171/171
+[<Cave: 1623-171>]
+> > > - Begin found for:171, creating new SurvexBlock
+> > > > - MEM:43.46484375 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+[<Cave: 1623-171>]
+[<Cave: 1623-171>]
+> > > - Begin found for:main, creating new SurvexBlock
+> > > > - MEM:43.47265625 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+[<Cave: 1623-171>]
+> > > LEGS: 209 (previous: 1630, now:1839)
+> > - Include path found, including - caves-1623/172/172
+> > - Match in DB (i) for cave 1623-172.
+[<Cave: 1623-172>]
+> > > - MEM:43.4765625 Reading. parent:kataster/1623 <> caves-1623/172/172
+[<Cave: 1623-172>]
+> > > - Begin found for:172, creating new SurvexBlock
+> > > > - MEM:43.4765625 Reading. parent:caves-1623/172/172 <> caves-1623/172/172
+[<Cave: 1623-172>]
+> > > LEGS: 2 (previous: 1839, now:1841)
+> > - Include path found, including - caves-1623/174/174
+> > - Match in DB (i) for cave 1623-174.
+[<Cave: 1623-174>]
+> > > - MEM:43.578125 Reading. parent:kataster/1623 <> caves-1623/174/174
+[<Cave: 1623-174>]
+> > > - Begin found for:174, creating new SurvexBlock
+> > > > - MEM:43.58984375 Reading. parent:caves-1623/174/174 <> caves-1623/174/174
+[<Cave: 1623-174>]
+> > > LEGS: 1 (previous: 1841, now:1842)
+> > - Include path found, including - caves-1623/175/175
+> > - Match in DB (i) for cave 1623-175.
+[<Cave: 1623-175>]
+> > > - MEM:43.60546875 Reading. parent:kataster/1623 <> caves-1623/175/175
+[<Cave: 1623-175>]
+> > > - Begin found for:175, creating new SurvexBlock
+> > > > - MEM:43.609375 Reading. parent:caves-1623/175/175 <> caves-1623/175/175
+[<Cave: 1623-175>]
+> > > LEGS: 1 (previous: 1842, now:1843)
+> > - Include path found, including - caves-1623/176/176
+> > - Match in DB (i) for cave 1623-176.
+[<Cave: 1623-176>]
+> > > - MEM:43.62109375 Reading. parent:kataster/1623 <> caves-1623/176/176
+[<Cave: 1623-176>]
+> > > - Begin found for:176, creating new SurvexBlock
+> > > > - MEM:43.6328125 Reading. parent:caves-1623/176/176 <> caves-1623/176/176
+[<Cave: 1623-176>]
+> > > LEGS: 1 (previous: 1843, now:1844)
+> > - Include path found, including - caves-1623/182/182
+> > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > - MEM:43.6875 Reading. parent:kataster/1623 <> caves-1623/182/182
+[<Cave: 1623-182>]
+> > > - Begin found for:182, creating new SurvexBlock
+> > > > - MEM:43.7109375 Reading. parent:caves-1623/182/182 <> caves-1623/182/182
+[<Cave: 1623-182>]
+> > > - Include path found, including - caves-1623/182/entrance
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.734375 Reading. parent:caves-1623/182/182 <> caves-1623/182/entrance
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:43.78125 Reading. parent:caves-1623/182/entrance <> caves-1623/182/entrance
+[<Cave: 1623-182>]
+> > > > LEGS: 31 (previous: 1844, now:1875)
+> > > - Include path found, including - caves-1623/182/yorkrip
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.796875 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorkrip
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:yorkrip, creating new SurvexBlock
+> > > > > - MEM:43.8125 Reading. parent:caves-1623/182/yorkrip <> caves-1623/182/yorkrip
+[<Cave: 1623-182>]
+> > > > LEGS: 31 (previous: 1875, now:1906)
+> > > - Include path found, including - caves-1623/182/dottodot
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.82421875 Reading. parent:caves-1623/182/182 <> caves-1623/182/dottodot
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:dottodot, creating new SurvexBlock
+> > > > > - MEM:43.83203125 Reading. parent:caves-1623/182/dottodot <> caves-1623/182/dottodot
+[<Cave: 1623-182>]
+> > > > LEGS: 26 (previous: 1906, now:1932)
+> > > - Include path found, including - caves-1623/182/quark
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.8359375 Reading. parent:caves-1623/182/182 <> caves-1623/182/quark
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:quark, creating new SurvexBlock
+> > > > > - MEM:43.8515625 Reading. parent:caves-1623/182/quark <> caves-1623/182/quark
+[<Cave: 1623-182>]
+> > > > LEGS: 23 (previous: 1932, now:1955)
+> > > - Include path found, including - caves-1623/182/amnesia
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.94921875 Reading. parent:caves-1623/182/182 <> caves-1623/182/amnesia
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:amnesia, creating new SurvexBlock
+> > > > > - MEM:43.96484375 Reading. parent:caves-1623/182/amnesia <> caves-1623/182/amnesia
+[<Cave: 1623-182>]
+> > > > LEGS: 24 (previous: 1955, now:1979)
+> > > - Include path found, including - caves-1623/182/piezo
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.97265625 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:piezo, creating new SurvexBlock
+> > > > > - MEM:43.99609375 Reading. parent:caves-1623/182/piezo <> caves-1623/182/piezo
+[<Cave: 1623-182>]
+> > > > LEGS: 10 (previous: 1979, now:1989)
+> > > - Include path found, including - caves-1623/182/strike2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.0078125 Reading. parent:caves-1623/182/182 <> caves-1623/182/strike2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:strike2, creating new SurvexBlock
+> > > > > - MEM:44.01171875 Reading. parent:caves-1623/182/strike2 <> caves-1623/182/strike2
+[<Cave: 1623-182>]
+> > > > LEGS: 4 (previous: 1989, now:1993)
+> > > - Include path found, including - caves-1623/182/piezo2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.03125 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:piezo2, creating new SurvexBlock
+> > > > > - MEM:44.05078125 Reading. parent:caves-1623/182/piezo2 <> caves-1623/182/piezo2
+[<Cave: 1623-182>]
+> > > > LEGS: 10 (previous: 1993, now:2003)
+> > > - Include path found, including - caves-1623/182/ent2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.0703125 Reading. parent:caves-1623/182/182 <> caves-1623/182/ent2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:ent2, creating new SurvexBlock
+> > > > > - MEM:44.0859375 Reading. parent:caves-1623/182/ent2 <> caves-1623/182/ent2
+[<Cave: 1623-182>]
+> > > > LEGS: 9 (previous: 2003, now:2012)
+> > > - Include path found, including - caves-1623/182/yorktop
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.2109375 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorktop
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:yorktop, creating new SurvexBlock
+> > > > > - MEM:44.21484375 Reading. parent:caves-1623/182/yorktop <> caves-1623/182/yorktop
+[<Cave: 1623-182>]
+> > > > LEGS: 26 (previous: 2012, now:2038)
+> > > - Include path found, including - caves-1623/182/sump
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.22265625 Reading. parent:caves-1623/182/182 <> caves-1623/182/sump
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:sump, creating new SurvexBlock
+> > > > > - MEM:44.234375 Reading. parent:caves-1623/182/sump <> caves-1623/182/sump
+[<Cave: 1623-182>]
+> > > > LEGS: 8 (previous: 2038, now:2046)
+> > > - Include path found, including - caves-1623/182/overshel
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.25390625 Reading. parent:caves-1623/182/182 <> caves-1623/182/overshel
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:ott, creating new SurvexBlock
+> > > > > - MEM:44.26953125 Reading. parent:caves-1623/182/overshel <> caves-1623/182/overshel
+[<Cave: 1623-182>]
+> > > > LEGS: 16 (previous: 2046, now:2062)
+> > > - Include path found, including - caves-1623/182/claustro
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.28515625 Reading. parent:caves-1623/182/182 <> caves-1623/182/claustro
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:claustrolink, creating new SurvexBlock
+> > > > > - MEM:44.30078125 Reading. parent:caves-1623/182/claustro <> caves-1623/182/claustro
+[<Cave: 1623-182>]
+> > > > LEGS: 1 (previous: 2062, now:2063)
+> > > - Include path found, including - caves-1623/182/brutefor
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.31640625 Reading. parent:caves-1623/182/182 <> caves-1623/182/brutefor
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:brute, creating new SurvexBlock
+> > > > > - MEM:44.328125 Reading. parent:caves-1623/182/brutefor <> caves-1623/182/brutefor
+[<Cave: 1623-182>]
+> > > > LEGS: 16 (previous: 2063, now:2079)
+> > > LEGS: 235 (previous: 1844, now:2079)
+> > - Include path found, including - caves-1623/183/183
+> > - Match in DB (i) for cave 1623-183.
+[<Cave: 1623-183>]
+> > > - MEM:44.3359375 Reading. parent:kataster/1623 <> caves-1623/183/183
+[<Cave: 1623-183>]
+> > > - Begin found for:183, creating new SurvexBlock
+> > > > - MEM:44.33984375 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+[<Cave: 1623-183>]
+[<Cave: 1623-183>]
+> > > - Begin found for:upper, creating new SurvexBlock
+> > > > - MEM:44.3515625 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+[<Cave: 1623-183>]
+> > > LEGS: 21 (previous: 2079, now:2100)
+> > - Include path found, including - caves-1623/185/185
+> > - Match in DB (i) for cave 1623-185.
+[<Cave: 1623-185>]
+> > > - MEM:44.36328125 Reading. parent:kataster/1623 <> caves-1623/185/185
+[<Cave: 1623-185>]
+> > > - Begin found for:185, creating new SurvexBlock
+> > > > - MEM:44.375 Reading. parent:caves-1623/185/185 <> caves-1623/185/185
+[<Cave: 1623-185>]
+> > > LEGS: 20 (previous: 2100, now:2120)
+> > - Include path found, including - caves-1623/193/193
+> > - Match in DB (i) for cave 1623-193.
+[<Cave: 1623-193>]
+> > > - MEM:44.38671875 Reading. parent:kataster/1623 <> caves-1623/193/193
+[<Cave: 1623-193>]
+> > > - Begin found for:193, creating new SurvexBlock
+> > > > - MEM:44.390625 Reading. parent:caves-1623/193/193 <> caves-1623/193/193
+[<Cave: 1623-193>]
+> > > LEGS: 5 (previous: 2120, now:2125)
+> > - Include path found, including - caves-1623/195/195
+> > - Match in DB (i) for cave 1623-195.
+[<Cave: 1623-195>]
+> > > - MEM:44.40625 Reading. parent:kataster/1623 <> caves-1623/195/195
+[<Cave: 1623-195>]
+> > > - Begin found for:195, creating new SurvexBlock
+> > > > - MEM:44.41796875 Reading. parent:caves-1623/195/195 <> caves-1623/195/195
+[<Cave: 1623-195>]
+> > > LEGS: 4 (previous: 2125, now:2129)
+> > - Include path found, including - caves-1623/196/196
+> > - Match in DB (i) for cave 1623-196.
+[<Cave: 1623-196>]
+> > > - MEM:44.4375 Reading. parent:kataster/1623 <> caves-1623/196/196
+[<Cave: 1623-196>]
+> > > - Begin found for:196, creating new SurvexBlock
+> > > > - MEM:44.4375 Reading. parent:caves-1623/196/196 <> caves-1623/196/196
+[<Cave: 1623-196>]
+> > > LEGS: 3 (previous: 2129, now:2132)
+> > - Include path found, including - caves-1623/199/199
+> > - Match in DB (i) for cave 1623-199.
+[<Cave: 1623-199>]
+> > > - MEM:44.45703125 Reading. parent:kataster/1623 <> caves-1623/199/199
+[<Cave: 1623-199>]
+> > > - Begin found for:199, creating new SurvexBlock
+> > > > - MEM:44.4609375 Reading. parent:caves-1623/199/199 <> caves-1623/199/199
+[<Cave: 1623-199>]
+> > > LEGS: 5 (previous: 2132, now:2137)
+> > - Include path found, including - caves-1623/200/200
+> > - Match in DB (i) for cave 1623-200.
+[<Cave: 1623-200>]
+> > > - MEM:44.46875 Reading. parent:kataster/1623 <> caves-1623/200/200
+[<Cave: 1623-200>]
+> > > - Begin found for:200, creating new SurvexBlock
+> > > > - MEM:44.46875 Reading. parent:caves-1623/200/200 <> caves-1623/200/200
+[<Cave: 1623-200>]
+> > > LEGS: 4 (previous: 2137, now:2141)
+> > - Include path found, including - caves-1623/201/201
+> > - Match in DB (i) for cave 1623-201.
+[<Cave: 1623-201>]
+> > > - MEM:44.47265625 Reading. parent:kataster/1623 <> caves-1623/201/201
+[<Cave: 1623-201>]
+> > > - Begin found for:201, creating new SurvexBlock
+> > > > - MEM:44.48046875 Reading. parent:caves-1623/201/201 <> caves-1623/201/201
+[<Cave: 1623-201>]
+> > > LEGS: 2 (previous: 2141, now:2143)
+> > - Include path found, including - caves-1623/202/202
+> > - Match in DB (i) for cave 1623-202.
+[<Cave: 1623-202>]
+> > > - MEM:44.4921875 Reading. parent:kataster/1623 <> caves-1623/202/202
+[<Cave: 1623-202>]
+> > > - Begin found for:202, creating new SurvexBlock
+> > > > - MEM:44.5 Reading. parent:caves-1623/202/202 <> caves-1623/202/202
+[<Cave: 1623-202>]
+> > > LEGS: 14 (previous: 2143, now:2157)
+> > - Include path found, including - caves-1623/203/203
+> > - Match in DB (i) for cave 1623-203.
+[<Cave: 1623-203>]
+> > > - MEM:44.51171875 Reading. parent:kataster/1623 <> caves-1623/203/203
+[<Cave: 1623-203>]
+> > > - Begin found for:203, creating new SurvexBlock
+> > > > - MEM:44.515625 Reading. parent:caves-1623/203/203 <> caves-1623/203/203
+[<Cave: 1623-203>]
+> > > LEGS: 7 (previous: 2157, now:2164)
+> > - Include path found, including - caves-1623/205/205
+> > - Match in DB (i) for cave 1623-205.
+[<Cave: 1623-205>]
+> > > - MEM:44.53125 Reading. parent:kataster/1623 <> caves-1623/205/205
+[<Cave: 1623-205>]
+> > > - Begin found for:205, creating new SurvexBlock
+> > > > - MEM:44.55078125 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+[<Cave: 1623-205>]
+[<Cave: 1623-205>]
+> > > - Begin found for:1, creating new SurvexBlock
+> > > > - MEM:44.56640625 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+[<Cave: 1623-205>]
+> > > LEGS: 13 (previous: 2164, now:2177)
+> > - Include path found, including - caves-1623/206/206
+> > - Match in DB (i) for cave 1623-206.
+[<Cave: 1623-206>]
+> > > - MEM:44.57421875 Reading. parent:kataster/1623 <> caves-1623/206/206
+[<Cave: 1623-206>]
+> > > - Begin found for:206, creating new SurvexBlock
+> > > > - MEM:44.5859375 Reading. parent:caves-1623/206/206 <> caves-1623/206/206
+[<Cave: 1623-206>]
+> > > LEGS: 4 (previous: 2177, now:2181)
+> > - Include path found, including - caves-1623/207/207
+> > - Match in DB (i) for cave 1623-207.
+[<Cave: 1623-207>]
+> > > - MEM:44.59765625 Reading. parent:kataster/1623 <> caves-1623/207/207
+[<Cave: 1623-207>]
+> > > - Begin found for:207, creating new SurvexBlock
+> > > > - MEM:44.60546875 Reading. parent:caves-1623/207/207 <> caves-1623/207/207
+[<Cave: 1623-207>]
+> > > LEGS: 3 (previous: 2181, now:2184)
+> > - Include path found, including - caves-1623/208/208
+> > - Match in DB (i) for cave 1623-208.
+[<Cave: 1623-208>]
+> > > - MEM:44.6171875 Reading. parent:kataster/1623 <> caves-1623/208/208
+[<Cave: 1623-208>]
+> > > - Begin found for:208, creating new SurvexBlock
+> > > > - MEM:44.6328125 Reading. parent:caves-1623/208/208 <> caves-1623/208/208
+[<Cave: 1623-208>]
+> > > LEGS: 3 (previous: 2184, now:2187)
+> > - Include path found, including - caves-1623/209/209
+> > - Match in DB (i) for cave 1623-209.
+[<Cave: 1623-209>]
+> > > - MEM:44.6484375 Reading. parent:kataster/1623 <> caves-1623/209/209
+[<Cave: 1623-209>]
+> > > - Begin found for:209, creating new SurvexBlock
+> > > > - MEM:44.66015625 Reading. parent:caves-1623/209/209 <> caves-1623/209/209
+[<Cave: 1623-209>]
+> > > LEGS: 1 (previous: 2187, now:2188)
+> > - Include path found, including - caves-1623/215/215
+> > - Match in DB (i) for cave 1623-215.
+[<Cave: 1623-215>]
+> > > - MEM:44.6796875 Reading. parent:kataster/1623 <> caves-1623/215/215
+[<Cave: 1623-215>]
+> > > - Begin found for:215, creating new SurvexBlock
+> > > > - MEM:44.6875 Reading. parent:caves-1623/215/215 <> caves-1623/215/215
+[<Cave: 1623-215>]
+> > > LEGS: 5 (previous: 2188, now:2193)
+> > - Include path found, including - caves-1623/220/220
+> > - Match in DB (i) for cave 1623-220.
+[<Cave: 1623-220>]
+> > > - MEM:44.69921875 Reading. parent:kataster/1623 <> caves-1623/220/220
+[<Cave: 1623-220>]
+> > > - Begin found for:220, creating new SurvexBlock
+> > > > - MEM:44.7109375 Reading. parent:caves-1623/220/220 <> caves-1623/220/220
+[<Cave: 1623-220>]
+> > > LEGS: 1 (previous: 2193, now:2194)
+> > - Include path found, including - caves-1623/225/225
+> > - Match in DB (i) for cave 1623-225.
+[<Cave: 1623-225>]
+> > > - MEM:44.7265625 Reading. parent:kataster/1623 <> caves-1623/225/225
+[<Cave: 1623-225>]
+> > > - Begin found for:225, creating new SurvexBlock
+> > > > - MEM:44.73828125 Reading. parent:caves-1623/225/225 <> caves-1623/225/225
+[<Cave: 1623-225>]
+> > > LEGS: 1 (previous: 2194, now:2195)
+> > - Include path found, including - caves-1623/228/228
+> > - Match in DB (i) for cave 1623-228.
+[<Cave: 1623-228>]
+> > > - MEM:44.75 Reading. parent:kataster/1623 <> caves-1623/228/228
+[<Cave: 1623-228>]
+> > > - Begin found for:228, creating new SurvexBlock
+> > > > - MEM:44.76171875 Reading. parent:caves-1623/228/228 <> caves-1623/228/228
+[<Cave: 1623-228>]
+> > > LEGS: 5 (previous: 2195, now:2200)
+> > - Include path found, including - caves-1623/229/229
+> > - Match in DB (i) for cave 1623-229.
+[<Cave: 1623-229>]
+> > > - MEM:44.78125 Reading. parent:kataster/1623 <> caves-1623/229/229
+[<Cave: 1623-229>]
+> > > - Begin found for:229, creating new SurvexBlock
+> > > > - MEM:44.7890625 Reading. parent:caves-1623/229/229 <> caves-1623/229/229
+[<Cave: 1623-229>]
+> > > LEGS: 7 (previous: 2200, now:2207)
+> > - Include path found, including - caves-1623/231/231
+> > - Match in DB (i) for cave 1623-231.
+[<Cave: 1623-231>]
+> > > - MEM:44.8046875 Reading. parent:kataster/1623 <> caves-1623/231/231
+[<Cave: 1623-231>]
+> > > - Begin found for:231, creating new SurvexBlock
+> > > > - MEM:44.83203125 Reading. parent:caves-1623/231/231 <> caves-1623/231/231
+[<Cave: 1623-231>]
+> > > - Include path found, including - caves-1623/231/traun
+> > > - Match in DB (i) for cave 1623-231.
+[<Cave: 1623-231>]
+> > > > - MEM:44.8515625 Reading. parent:caves-1623/231/231 <> caves-1623/231/traun
+[<Cave: 1623-231>]
+[<Cave: 1623-231>]
+> > > > - Begin found for:traun, creating new SurvexBlock
+> > > > > - MEM:44.8984375 Reading. parent:caves-1623/231/traun <> caves-1623/231/traun
+[<Cave: 1623-231>]
+> > > > LEGS: 21 (previous: 2207, now:2228)
+> > > LEGS: 21 (previous: 2207, now:2228)
+> > - Include path found, including - caves-1623/232/232
+> > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > - MEM:44.9140625 Reading. parent:kataster/1623 <> caves-1623/232/232
+[<Cave: 1623-232>]
+> > > - Begin found for:232, creating new SurvexBlock
+> > > > - MEM:44.91796875 Reading. parent:caves-1623/232/232 <> caves-1623/232/232
+[<Cave: 1623-232>]
+> > > - Include path found, including - caves-1623/232/griess
+> > > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > > - MEM:44.9296875 Reading. parent:caves-1623/232/232 <> caves-1623/232/griess
+[<Cave: 1623-232>]
+[<Cave: 1623-232>]
+> > > > - Begin found for:griess, creating new SurvexBlock
+> > > > > - MEM:44.94140625 Reading. parent:caves-1623/232/griess <> caves-1623/232/griess
+[<Cave: 1623-232>]
+> > > > LEGS: 48 (previous: 2228, now:2276)
+> > > - Include path found, including - caves-1623/232/pille
+> > > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > > - MEM:44.98828125 Reading. parent:caves-1623/232/232 <> caves-1623/232/pille
+[<Cave: 1623-232>]
+[<Cave: 1623-232>]
+> > > > - Begin found for:pille, creating new SurvexBlock
+> > > > > - MEM:44.98828125 Reading. parent:caves-1623/232/pille <> caves-1623/232/pille
+[<Cave: 1623-232>]
+> > > > LEGS: 35 (previous: 2276, now:2311)
+> > > LEGS: 83 (previous: 2228, now:2311)
+> > - Include path found, including - caves-1623/233/233
+> > - Match in DB (i) for cave 1623-233.
+[<Cave: 1623-233>]
+> > > - MEM:44.99609375 Reading. parent:kataster/1623 <> caves-1623/233/233
+[<Cave: 1623-233>]
+> > > - Begin found for:233, creating new SurvexBlock
+> > > > - MEM:44.99609375 Reading. parent:caves-1623/233/233 <> caves-1623/233/233
+[<Cave: 1623-233>]
+> > > LEGS: 11 (previous: 2311, now:2322)
+> > - Include path found, including - caves-1623/234/234
+> > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > - MEM:45.00390625 Reading. parent:kataster/1623 <> caves-1623/234/234
+[<Cave: 1623-234>]
+> > > - Begin found for:234, creating new SurvexBlock
+> > > > - MEM:45.00390625 Reading. parent:caves-1623/234/234 <> caves-1623/234/234
+[<Cave: 1623-234>]
+> > > - Include path found, including - caves-1623/234/lefthand
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.0234375 Reading. parent:caves-1623/234/234 <> caves-1623/234/lefthand
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:lefthand, creating new SurvexBlock
+> > > > > - MEM:45.04296875 Reading. parent:caves-1623/234/lefthand <> caves-1623/234/lefthand
+[<Cave: 1623-234>]
+> > > > LEGS: 17 (previous: 2322, now:2339)
+> > > - Include path found, including - caves-1623/234/trunk
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.12109375 Reading. parent:caves-1623/234/234 <> caves-1623/234/trunk
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:trunk, creating new SurvexBlock
+> > > > > - MEM:45.1328125 Reading. parent:caves-1623/234/trunk <> caves-1623/234/trunk
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2339, now:2349)
+> > > - Include path found, including - caves-1623/234/flatulence
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.14453125 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:flatulence, creating new SurvexBlock
+> > > > > - MEM:45.17578125 Reading. parent:caves-1623/234/flatulence <> caves-1623/234/flatulence
+[<Cave: 1623-234>]
+> > > > LEGS: 58 (previous: 2349, now:2407)
+> > > - Include path found, including - caves-1623/234/flatulence2
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.1875 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence2
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:flatulence2, creating new SurvexBlock
+> > > > > - MEM:45.20703125 Reading. parent:caves-1623/234/flatulence2 <> caves-1623/234/flatulence2
+[<Cave: 1623-234>]
+> > > > LEGS: 27 (previous: 2407, now:2434)
+> > > - Include path found, including - caves-1623/234/sourtaste
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.22265625 Reading. parent:caves-1623/234/234 <> caves-1623/234/sourtaste
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:sourtaste, creating new SurvexBlock
+> > > > > - MEM:45.234375 Reading. parent:caves-1623/234/sourtaste <> caves-1623/234/sourtaste
+[<Cave: 1623-234>]
+> > > > LEGS: 8 (previous: 2434, now:2442)
+> > > - Include path found, including - caves-1623/234/pie
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.25 Reading. parent:caves-1623/234/234 <> caves-1623/234/pie
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:pie, creating new SurvexBlock
+> > > > > - MEM:45.265625 Reading. parent:caves-1623/234/pie <> caves-1623/234/pie
+[<Cave: 1623-234>]
+> > > > LEGS: 13 (previous: 2442, now:2455)
+> > > - Include path found, including - caves-1623/234/underhand
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.28125 Reading. parent:caves-1623/234/234 <> caves-1623/234/underhand
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:underhand, creating new SurvexBlock
+> > > > > - MEM:45.296875 Reading. parent:caves-1623/234/underhand <> caves-1623/234/underhand
+[<Cave: 1623-234>]
+> > > > LEGS: 7 (previous: 2455, now:2462)
+> > > - Include path found, including - caves-1623/234/flashgun
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.31640625 Reading. parent:caves-1623/234/234 <> caves-1623/234/flashgun
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:flashgun, creating new SurvexBlock
+> > > > > - MEM:45.33203125 Reading. parent:caves-1623/234/flashgun <> caves-1623/234/flashgun
+[<Cave: 1623-234>]
+> > > > LEGS: 4 (previous: 2462, now:2466)
+> > > - Include path found, including - caves-1623/234/piersquared
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.34765625 Reading. parent:caves-1623/234/234 <> caves-1623/234/piersquared
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:piersquared, creating new SurvexBlock
+> > > > > - MEM:45.3671875 Reading. parent:caves-1623/234/piersquared <> caves-1623/234/piersquared
+[<Cave: 1623-234>]
+> > > > LEGS: 37 (previous: 2466, now:2503)
+> > > - Include path found, including - caves-1623/234/weeweeland
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.38671875 Reading. parent:caves-1623/234/234 <> caves-1623/234/weeweeland
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:weeweeland, creating new SurvexBlock
+> > > > > - MEM:45.3984375 Reading. parent:caves-1623/234/weeweeland <> caves-1623/234/weeweeland
+[<Cave: 1623-234>]
+> > > > LEGS: 12 (previous: 2503, now:2515)
+> > > - Include path found, including - caves-1623/234/wowoland
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.4140625 Reading. parent:caves-1623/234/234 <> caves-1623/234/wowoland
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:wowoland, creating new SurvexBlock
+> > > > > - MEM:45.43359375 Reading. parent:caves-1623/234/wowoland <> caves-1623/234/wowoland
+[<Cave: 1623-234>]
+> > > > LEGS: 7 (previous: 2515, now:2522)
+> > > - Include path found, including - caves-1623/234/monster
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.4453125 Reading. parent:caves-1623/234/234 <> caves-1623/234/monster
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:monster, creating new SurvexBlock
+> > > > > - MEM:45.453125 Reading. parent:caves-1623/234/monster <> caves-1623/234/monster
+[<Cave: 1623-234>]
+> > > > LEGS: 5 (previous: 2522, now:2527)
+> > > - Include path found, including - caves-1623/234/spitswallow
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.48046875 Reading. parent:caves-1623/234/234 <> caves-1623/234/spitswallow
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:spitswallow, creating new SurvexBlock
+> > > > > - MEM:45.48828125 Reading. parent:caves-1623/234/spitswallow <> caves-1623/234/spitswallow
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2527, now:2537)
+> > > - Include path found, including - caves-1623/234/monstermunch
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.5 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:monstermunch, creating new SurvexBlock
+> > > > > - MEM:45.51171875 Reading. parent:caves-1623/234/monstermunch <> caves-1623/234/monstermunch
+[<Cave: 1623-234>]
+> > > > LEGS: 11 (previous: 2537, now:2548)
+> > > - Include path found, including - caves-1623/234/qm05-05c
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.56640625 Reading. parent:caves-1623/234/234 <> caves-1623/234/qm05-05c
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:qm05-05c, creating new SurvexBlock
+> > > > > - MEM:45.56640625 Reading. parent:caves-1623/234/qm05-05c <> caves-1623/234/qm05-05c
+[<Cave: 1623-234>]
+> > > > LEGS: 2 (previous: 2548, now:2550)
+> > > - Include path found, including - caves-1623/234/rubella
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.58203125 Reading. parent:caves-1623/234/234 <> caves-1623/234/rubella
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:rubella, creating new SurvexBlock
+> > > > > - MEM:45.58984375 Reading. parent:caves-1623/234/rubella <> caves-1623/234/rubella
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2550, now:2560)
+> > > - Include path found, including - caves-1623/234/monstermunch2
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.6640625 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch2
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:monstermunch2, creating new SurvexBlock
+> > > > > - MEM:45.67578125 Reading. parent:caves-1623/234/monstermunch2 <> caves-1623/234/monstermunch2
+[<Cave: 1623-234>]
+> > > > LEGS: 5 (previous: 2560, now:2565)
+> > > - Include path found, including - caves-1623/234/limopit
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.69140625 Reading. parent:caves-1623/234/234 <> caves-1623/234/limopit
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:limopit, creating new SurvexBlock
+> > > > > - MEM:45.70703125 Reading. parent:caves-1623/234/limopit <> caves-1623/234/limopit
+[<Cave: 1623-234>]
+> > > > LEGS: 6 (previous: 2565, now:2571)
+> > > - Include path found, including - caves-1623/234/passage
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.71875 Reading. parent:caves-1623/234/234 <> caves-1623/234/passage
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:passage, creating new SurvexBlock
+> > > > > - MEM:45.73828125 Reading. parent:caves-1623/234/passage <> caves-1623/234/passage
+[<Cave: 1623-234>]
+> > > > LEGS: 13 (previous: 2571, now:2584)
+> > > - Include path found, including - caves-1623/234/lastchancesaloon
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.75390625 Reading. parent:caves-1623/234/234 <> caves-1623/234/lastchancesaloon
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:lastchancesaloon, creating new SurvexBlock
+> > > > > - MEM:45.76953125 Reading. parent:caves-1623/234/lastchancesaloon <> caves-1623/234/lastchancesaloon
+[<Cave: 1623-234>]
+> > > > LEGS: 29 (previous: 2584, now:2613)
+> > > - Include path found, including - caves-1623/234/slapperpinkpot
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.80078125 Reading. parent:caves-1623/234/234 <> caves-1623/234/slapperpinkpot
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:slapperpinkpot, creating new SurvexBlock
+> > > > > - MEM:45.80859375 Reading. parent:caves-1623/234/slapperpinkpot <> caves-1623/234/slapperpinkpot
+[<Cave: 1623-234>]
+> > > > LEGS: 11 (previous: 2613, now:2624)
+> > > - Include path found, including - caves-1623/234/youshouldhaveneverletmebegin
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.96875 Reading. parent:caves-1623/234/234 <> caves-1623/234/youshouldhaveneverletmebegin
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:youshouldhaveneverletmebegin, creating new SurvexBlock
+> > > > > - MEM:45.97265625 Reading. parent:caves-1623/234/youshouldhaveneverletmebegin <> caves-1623/234/youshouldhaveneverletmebegin
+[<Cave: 1623-234>]
+> > > > LEGS: 14 (previous: 2624, now:2638)
+> > > - Include path found, including - caves-1623/234/mercurialsuppository
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.99609375 Reading. parent:caves-1623/234/234 <> caves-1623/234/mercurialsuppository
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:mercurialsuppository, creating new SurvexBlock
+> > > > > - MEM:46.00390625 Reading. parent:caves-1623/234/mercurialsuppository <> caves-1623/234/mercurialsuppository
+[<Cave: 1623-234>]
+> > > > LEGS: 9 (previous: 2638, now:2647)
+> > > LEGS: 325 (previous: 2322, now:2647)
+> > - Include path found, including - caves-1623/238/238
+> > - Match in DB (i) for cave 1623-238.
+[<Cave: 1623-238>]
+> > > - MEM:46.01953125 Reading. parent:kataster/1623 <> caves-1623/238/238
+[<Cave: 1623-238>]
+> > > - Begin found for:238, creating new SurvexBlock
+> > > > - MEM:46.02734375 Reading. parent:caves-1623/238/238 <> caves-1623/238/238
+[<Cave: 1623-238>]
+> > > LEGS: 11 (previous: 2647, now:2658)
+> > - Include path found, including - caves-1623/239/239
+> > - Match in DB (i) for cave 1623-239.
+[<Cave: 1623-239>]
+> > > - MEM:46.03515625 Reading. parent:kataster/1623 <> caves-1623/239/239
+[<Cave: 1623-239>]
+> > > - Begin found for:239, creating new SurvexBlock
+> > > > - MEM:46.08203125 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+[<Cave: 1623-239>]
+[<Cave: 1623-239>]
+> > > - Begin found for:rocknroll1, creating new SurvexBlock
+> > > > - MEM:46.09765625 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+[<Cave: 1623-239>]
+> > > LEGS: 32 (previous: 2658, now:2690)
+> > - Include path found, including - caves-1623/240/240
+> > - Match in DB (i) for cave 1623-240.
+[<Cave: 1623-240>]
+> > > - MEM:46.1875 Reading. parent:kataster/1623 <> caves-1623/240/240
+[<Cave: 1623-240>]
+> > > - Begin found for:240, creating new SurvexBlock
+> > > > - MEM:46.1875 Reading. parent:caves-1623/240/240 <> caves-1623/240/240
+[<Cave: 1623-240>]
+> > > LEGS: 7 (previous: 2690, now:2697)
+> > - Include path found, including - caves-1623/241/241
+> > - Match in DB (i) for cave 1623-241.
+[<Cave: 1623-241>]
+> > > - MEM:46.19140625 Reading. parent:kataster/1623 <> caves-1623/241/241
+[<Cave: 1623-241>]
+> > > - Begin found for:241, creating new SurvexBlock
+> > > > - MEM:46.1953125 Reading. parent:caves-1623/241/241 <> caves-1623/241/241
+[<Cave: 1623-241>]
+> > > LEGS: 8 (previous: 2697, now:2705)
+> > - Include path found, including - caves-1623/242/242
+> > - Match in DB (i) for cave 1623-242.
+[<Cave: 1623-242>]
+> > > - MEM:46.21484375 Reading. parent:kataster/1623 <> caves-1623/242/242
+[<Cave: 1623-242>]
+> > > - Begin found for:242, creating new SurvexBlock
+> > > > - MEM:46.23046875 Reading. parent:caves-1623/242/242 <> caves-1623/242/242
+[<Cave: 1623-242>]
+> > > LEGS: 6 (previous: 2705, now:2711)
+> > - Include path found, including - caves-1623/243/243
+> > - Match in DB (i) for cave 1623-243.
+[<Cave: 1623-243>]
+> > > - MEM:46.25 Reading. parent:kataster/1623 <> caves-1623/243/243
+[<Cave: 1623-243>]
+> > > - Begin found for:243, creating new SurvexBlock
+> > > > - MEM:46.2578125 Reading. parent:caves-1623/243/243 <> caves-1623/243/243
+[<Cave: 1623-243>]
+> > > LEGS: 14 (previous: 2711, now:2725)
+> > - Include path found, including - caves-1623/244/244
+> > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > - MEM:46.29296875 Reading. parent:kataster/1623 <> caves-1623/244/244
+[<Cave: 1623-244>]
+> > > - Begin found for:244, creating new SurvexBlock
+> > > > - MEM:46.3125 Reading. parent:caves-1623/244/244 <> caves-1623/244/244
+[<Cave: 1623-244>]
+> > > - Include path found, including - caves-1623/244/skinny
+> > > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > > - MEM:46.32421875 Reading. parent:caves-1623/244/244 <> caves-1623/244/skinny
+[<Cave: 1623-244>]
+[<Cave: 1623-244>]
+> > > > - Begin found for:skinny, creating new SurvexBlock
+> > > > > - MEM:46.3515625 Reading. parent:caves-1623/244/skinny <> caves-1623/244/skinny
+[<Cave: 1623-244>]
+> > > > LEGS: 25 (previous: 2725, now:2750)
+> > > - Include path found, including - caves-1623/244/gravity
+> > > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > > - MEM:46.3984375 Reading. parent:caves-1623/244/244 <> caves-1623/244/gravity
+[<Cave: 1623-244>]
+[<Cave: 1623-244>]
+> > > > - Begin found for:gravity, creating new SurvexBlock
+> > > > > - MEM:46.3984375 Reading. parent:caves-1623/244/gravity <> caves-1623/244/gravity
+[<Cave: 1623-244>]
+> > > > LEGS: 7 (previous: 2750, now:2757)
+> > > LEGS: 32 (previous: 2725, now:2757)
+> > - Include path found, including - caves-1623/245/245
+> > - Match in DB (i) for cave 1623-245.
+[<Cave: 1623-245>]
+> > > - MEM:46.4140625 Reading. parent:kataster/1623 <> caves-1623/245/245
+[<Cave: 1623-245>]
+> > > - Begin found for:245, creating new SurvexBlock
+> > > > - MEM:46.421875 Reading. parent:caves-1623/245/245 <> caves-1623/245/245
+[<Cave: 1623-245>]
+> > > LEGS: 24 (previous: 2757, now:2781)
+> > - Include path found, including - caves-1623/246/246
+> > - Match in DB (i) for cave 1623-246.
+[<Cave: 1623-246>]
+> > > - MEM:46.43359375 Reading. parent:kataster/1623 <> caves-1623/246/246
+[<Cave: 1623-246>]
+> > > - Begin found for:246, creating new SurvexBlock
+> > > > - MEM:46.44140625 Reading. parent:caves-1623/246/246 <> caves-1623/246/246
+[<Cave: 1623-246>]
+> > > LEGS: 7 (previous: 2781, now:2788)
+> > - Include path found, including - caves-1623/247/247
+> > - Match in DB (i) for cave 1623-247.
+[<Cave: 1623-247>]
+> > > - MEM:46.453125 Reading. parent:kataster/1623 <> caves-1623/247/247
+[<Cave: 1623-247>]
+> > > - Begin found for:247, creating new SurvexBlock
+> > > > - MEM:46.4609375 Reading. parent:caves-1623/247/247 <> caves-1623/247/247
+[<Cave: 1623-247>]
+> > > LEGS: 2 (previous: 2788, now:2790)
+> > - Include path found, including - caves-1623/248/248
+> > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > - MEM:46.46484375 Reading. parent:kataster/1623 <> caves-1623/248/248
+[<Cave: 1623-248>]
+> > > - Begin found for:248, creating new SurvexBlock
+> > > > - MEM:46.4765625 Reading. parent:caves-1623/248/248 <> caves-1623/248/248
+[<Cave: 1623-248>]
+> > > - Include path found, including - caves-1623/248/248-1
+> > > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > > - MEM:46.48828125 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-1
+[<Cave: 1623-248>]
+[<Cave: 1623-248>]
+> > > > - Begin found for:248-1, creating new SurvexBlock
+> > > > > - MEM:46.49609375 Reading. parent:caves-1623/248/248-1 <> caves-1623/248/248-1
+[<Cave: 1623-248>]
+> > > > LEGS: 7 (previous: 2790, now:2797)
+> > > - Include path found, including - caves-1623/248/248-2
+> > > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > > - MEM:46.5078125 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-2
+[<Cave: 1623-248>]
+[<Cave: 1623-248>]
+> > > > - Begin found for:248-2, creating new SurvexBlock
+> > > > > - MEM:46.515625 Reading. parent:caves-1623/248/248-2 <> caves-1623/248/248-2
+[<Cave: 1623-248>]
+> > > > LEGS: 6 (previous: 2797, now:2803)
+> > > LEGS: 13 (previous: 2790, now:2803)
+> > - Include path found, including - caves-1623/249/249
+> > - Match in DB (i) for cave 1623-249.
+[<Cave: 1623-249>]
+> > > - MEM:46.53125 Reading. parent:kataster/1623 <> caves-1623/249/249
+[<Cave: 1623-249>]
+> > > - Begin found for:249, creating new SurvexBlock
+> > > > - MEM:46.53515625 Reading. parent:caves-1623/249/249 <> caves-1623/249/249
+[<Cave: 1623-249>]
+> > > LEGS: 7 (previous: 2803, now:2810)
+> > - Include path found, including - caves-1623/250/250
+> > - Match in DB (i) for cave 1623-250.
+[<Cave: 1623-250>]
+> > > - MEM:46.5546875 Reading. parent:kataster/1623 <> caves-1623/250/250
+[<Cave: 1623-250>]
+> > > - Begin found for:250, creating new SurvexBlock
+> > > > - MEM:46.55859375 Reading. parent:caves-1623/250/250 <> caves-1623/250/250
+[<Cave: 1623-250>]
+> > > LEGS: 1 (previous: 2810, now:2811)
+> > - Include path found, including - caves-1623/251/251
+> > - Match in DB (i) for cave 1623-251.
+[<Cave: 1623-251>]
+> > > - MEM:46.58984375 Reading. parent:kataster/1623 <> caves-1623/251/251
+[<Cave: 1623-251>]
+> > > - Begin found for:251, creating new SurvexBlock
+> > > > - MEM:46.60546875 Reading. parent:caves-1623/251/251 <> caves-1623/251/251
+[<Cave: 1623-251>]
+> > > LEGS: 22 (previous: 2811, now:2833)
+> > - Include path found, including - caves-1623/252/252
+> > - Match in DB (i) for cave 1623-252.
+[<Cave: 1623-252>]
+> > > - MEM:46.62109375 Reading. parent:kataster/1623 <> caves-1623/252/252
+[<Cave: 1623-252>]
+> > > - Begin found for:252, creating new SurvexBlock
+> > > > - MEM:46.63671875 Reading. parent:caves-1623/252/252 <> caves-1623/252/252
+[<Cave: 1623-252>]
+> > > LEGS: 30 (previous: 2833, now:2863)
+> > - Include path found, including - caves-1623/254/254
+> > - Match in DB (i) for cave 1623-254.
+[<Cave: 1623-254>]
+> > > - MEM:46.6484375 Reading. parent:kataster/1623 <> caves-1623/254/254
+[<Cave: 1623-254>]
+> > > - Begin found for:254, creating new SurvexBlock
+> > > > - MEM:46.671875 Reading. parent:caves-1623/254/254 <> caves-1623/254/254
+[<Cave: 1623-254>]
+> > > LEGS: 19 (previous: 2863, now:2882)
+> > - Include path found, including - caves-1623/261/261
+> > - Match in DB (i) for cave 1623-261.
+[<Cave: 1623-261>]
+> > > - MEM:46.69140625 Reading. parent:kataster/1623 <> caves-1623/261/261
+[<Cave: 1623-261>]
+> > > - Begin found for:261, creating new SurvexBlock
+> > > > - MEM:46.703125 Reading. parent:caves-1623/261/261 <> caves-1623/261/261
+[<Cave: 1623-261>]
+> > > LEGS: 6 (previous: 2882, now:2888)
+> > - Include path found, including - caves-1623/262/262
+> > - Match in DB (i) for cave 1623-262.
+[<Cave: 1623-262>]
+> > > - MEM:46.71484375 Reading. parent:kataster/1623 <> caves-1623/262/262
+[<Cave: 1623-262>]
+> > > - Begin found for:262, creating new SurvexBlock
+> > > > - MEM:46.7265625 Reading. parent:caves-1623/262/262 <> caves-1623/262/262
+[<Cave: 1623-262>]
+> > > LEGS: 7 (previous: 2888, now:2895)
+> > - Include path found, including - caves-1623/263/263
+> > - Match in DB (i) for cave 1623-263.
+[<Cave: 1623-263>]
+> > > - MEM:46.74609375 Reading. parent:kataster/1623 <> caves-1623/263/263
+[<Cave: 1623-263>]
+> > > - Begin found for:263, creating new SurvexBlock
+> > > > - MEM:46.76171875 Reading. parent:caves-1623/263/263 <> caves-1623/263/263
+[<Cave: 1623-263>]
+> > > LEGS: 2 (previous: 2895, now:2897)
+> > - Include path found, including - caves-1623/267/267
+> > - Match in DB (i) for cave 1623-267.
+[<Cave: 1623-267>]
+> > > - MEM:46.81640625 Reading. parent:kataster/1623 <> caves-1623/267/267
+[<Cave: 1623-267>]
+> > > - Begin found for:267, creating new SurvexBlock
+> > > > - MEM:46.8359375 Reading. parent:caves-1623/267/267 <> caves-1623/267/267
+[<Cave: 1623-267>]
+> > > LEGS: 34 (previous: 2897, now:2931)
+> > - Include path found, including - caves-1623/271/271
+> > - Match in DB (i) for cave 1623-271.
+[<Cave: 1623-271>]
+> > > - MEM:46.8359375 Reading. parent:kataster/1623 <> caves-1623/271/271
+[<Cave: 1623-271>]
+> > > - Begin found for:271, creating new SurvexBlock
+> > > > - MEM:46.84375 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+[<Cave: 1623-271>]
+[<Cave: 1623-271>]
+> > > - Begin found for:1, creating new SurvexBlock
+> > > > - MEM:46.8515625 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+[<Cave: 1623-271>]
+> > > LEGS: 11 (previous: 2931, now:2942)
+> > - Include path found, including - caves-1623/273/273
+> > - Match in DB (i) for cave 1623-273.
+[<Cave: 1623-273>]
+> > > - MEM:46.8671875 Reading. parent:kataster/1623 <> caves-1623/273/273
+[<Cave: 1623-273>]
+> > > - Begin found for:273, creating new SurvexBlock
+> > > > - MEM:46.87109375 Reading. parent:caves-1623/273/273 <> caves-1623/273/273
+[<Cave: 1623-273>]
+> > > LEGS: 5 (previous: 2942, now:2947)
+> > - Include path found, including - caves-1623/B4/B4
+> > - NO Match in DB (i) for a cave for caves-1623/B4/B4
+> > > - MEM:46.99609375 Reading. parent:kataster/1623 <> caves-1623/B4/B4
+> > > - No match (b) for caves-1623/B4/b4
+> > > - Begin found for:b4, creating new SurvexBlock
+> > > > - MEM:47.0390625 Reading. parent:caves-1623/B4/B4 <> caves-1623/B4/B4
+> > > ! Wallet *REF 2006#36 - NOT found in survexscansfolders caves-1623/B4/B4
+> > > LEGS: 2 (previous: 2947, now:2949)
+> > - Include path found, including - caves-1623/96wk11/96wk11
+> > - NO Match in DB (i) for a cave for caves-1623/96wk11/96wk11
+> > > - MEM:47.04296875 Reading. parent:kataster/1623 <> caves-1623/96wk11/96wk11
+> > > - No match (b) for caves-1623/96wk11/wk11
+> > > - Begin found for:wk11, creating new SurvexBlock
+> > > > - MEM:47.04296875 Reading. parent:caves-1623/96wk11/96wk11 <> caves-1623/96wk11/96wk11
+> > > LEGS: 7 (previous: 2949, now:2956)
+> > - Include path found, including - caves-1623/99ob02/99ob02
+> > - NO Match in DB (i) for a cave for caves-1623/99ob02/99ob02
+> > > - MEM:47.0546875 Reading. parent:kataster/1623 <> caves-1623/99ob02/99ob02
+> > > - No match (b) for caves-1623/99ob02/99ob02
+> > > - Begin found for:99ob02, creating new SurvexBlock
+> > > > - MEM:47.0625 Reading. parent:caves-1623/99ob02/99ob02 <> caves-1623/99ob02/99ob02
+> > > LEGS: 3 (previous: 2956, now:2959)
+> > - Include path found, including - caves-1623/2001-02/2001-02
+> > - NO Match in DB (i) for a cave for caves-1623/2001-02/2001-02
+> > > - MEM:47.0625 Reading. parent:kataster/1623 <> caves-1623/2001-02/2001-02
+> > > - No match (b) for caves-1623/2001-02/2001-02
+> > > - Begin found for:2001-02, creating new SurvexBlock
+> > > > - MEM:47.0703125 Reading. parent:caves-1623/2001-02/2001-02 <> caves-1623/2001-02/2001-02
+> > > LEGS: 6 (previous: 2959, now:2965)
+> > - Include path found, including - caves-1623/2001-03/2001-03
+> > - NO Match in DB (i) for a cave for caves-1623/2001-03/2001-03
+> > > - MEM:47.18359375 Reading. parent:kataster/1623 <> caves-1623/2001-03/2001-03
+> > > - No match (b) for caves-1623/2001-03/2001-03
+> > > - Begin found for:2001-03, creating new SurvexBlock
+> > > > - MEM:47.18359375 Reading. parent:caves-1623/2001-03/2001-03 <> caves-1623/2001-03/2001-03
+> > > LEGS: 7 (previous: 2965, now:2972)
+> > - Include path found, including - caves-1623/2002-ad-03/2002-ad-03
+> > - Match in DB (i) for cave 1623-2002-ad-03.
+[]
+> > > - MEM:47.1953125 Reading. parent:kataster/1623 <> caves-1623/2002-ad-03/2002-ad-03
+[]
+> > > - Begin found for:2002-ad-03, creating new SurvexBlock
+> > > > - MEM:47.20703125 Reading. parent:caves-1623/2002-ad-03/2002-ad-03 <> caves-1623/2002-ad-03/2002-ad-03
+[]
+> > > LEGS: 16 (previous: 2972, now:2988)
+> > - Include path found, including - caves-1623/2002-ad-04/2002-ad-04
+> > - Match in DB (i) for cave 1623-2002-ad-04.
+[]
+> > > - MEM:47.23046875 Reading. parent:kataster/1623 <> caves-1623/2002-ad-04/2002-ad-04
+[]
+> > > - Begin found for:2002-ad-04, creating new SurvexBlock
+> > > > - MEM:47.2421875 Reading. parent:caves-1623/2002-ad-04/2002-ad-04 <> caves-1623/2002-ad-04/2002-ad-04
+[]
+> > > LEGS: 15 (previous: 2988, now:3003)
+> > - Include path found, including - caves-1623/2002-w-02/2002-w-02
+> > - Match in DB (i) for cave 1623-2002-w-02.
+[]
+> > > - MEM:47.24609375 Reading. parent:kataster/1623 <> caves-1623/2002-w-02/2002-w-02
+[]
+> > > - Begin found for:2002-w-02, creating new SurvexBlock
+> > > > - MEM:47.25390625 Reading. parent:caves-1623/2002-w-02/2002-w-02 <> caves-1623/2002-w-02/2002-w-02
+[]
+> > > LEGS: 6 (previous: 3003, now:3009)
+> > - Include path found, including - caves-1623/2002-05/2002-05
+> > - NO Match in DB (i) for a cave for caves-1623/2002-05/2002-05
+> > > - MEM:47.265625 Reading. parent:kataster/1623 <> caves-1623/2002-05/2002-05
+> > > - No match (b) for caves-1623/2002-05/2002-05
+> > > - Begin found for:2002-05, creating new SurvexBlock
+> > > > - MEM:47.26953125 Reading. parent:caves-1623/2002-05/2002-05 <> caves-1623/2002-05/2002-05
+> > > LEGS: 4 (previous: 3009, now:3013)
+> > - Include path found, including - caves-1623/2002-06/2002-06
+> > - NO Match in DB (i) for a cave for caves-1623/2002-06/2002-06
+> > > - MEM:47.29296875 Reading. parent:kataster/1623 <> caves-1623/2002-06/2002-06
+> > > - No match (b) for caves-1623/2002-06/2002-06
+> > > - Begin found for:2002-06, creating new SurvexBlock
+> > > > - MEM:47.296875 Reading. parent:caves-1623/2002-06/2002-06 <> caves-1623/2002-06/2002-06
+> > > LEGS: 2 (previous: 3013, now:3015)
+> > - Include path found, including - caves-1623/2002-07/2002-07
+> > - NO Match in DB (i) for a cave for caves-1623/2002-07/2002-07
+> > > - MEM:47.3125 Reading. parent:kataster/1623 <> caves-1623/2002-07/2002-07
+> > > - No match (b) for caves-1623/2002-07/2002-07
+> > > - Begin found for:2002-07, creating new SurvexBlock
+> > > > - MEM:47.3203125 Reading. parent:caves-1623/2002-07/2002-07 <> caves-1623/2002-07/2002-07
+> > > LEGS: 3 (previous: 3015, now:3018)
+> > - Include path found, including - caves-1623/2002-08/2002-08
+> > - NO Match in DB (i) for a cave for caves-1623/2002-08/2002-08
+> > > - MEM:47.33203125 Reading. parent:kataster/1623 <> caves-1623/2002-08/2002-08
+> > > - No match (b) for caves-1623/2002-08/2002-08
+> > > - Begin found for:2002-08, creating new SurvexBlock
+> > > > - MEM:47.33984375 Reading. parent:caves-1623/2002-08/2002-08 <> caves-1623/2002-08/2002-08
+> > > LEGS: 7 (previous: 3018, now:3025)
+> > - Include path found, including - caves-1623/quarriesd/quarriesd
+> > - NO Match in DB (i) for a cave for caves-1623/quarriesd/quarriesd
+> > > - MEM:47.35546875 Reading. parent:kataster/1623 <> caves-1623/quarriesd/quarriesd
+> > > - No match (b) for caves-1623/quarriesd/quarriesd
+> > > - Begin found for:quarriesd, creating new SurvexBlock
+> > > > - MEM:47.35546875 Reading. parent:caves-1623/quarriesd/quarriesd <> caves-1623/quarriesd/quarriesd
+> > > LEGS: 3 (previous: 3025, now:3028)
+> > - Include path found, including - caves-1623/2003-01/2003-01
+> > - NO Match in DB (i) for a cave for caves-1623/2003-01/2003-01
+> > > - MEM:47.37109375 Reading. parent:kataster/1623 <> caves-1623/2003-01/2003-01
+> > > - No match (b) for caves-1623/2003-01/2003-01
+> > > - Begin found for:2003-01, creating new SurvexBlock
+> > > > - MEM:47.375 Reading. parent:caves-1623/2003-01/2003-01 <> caves-1623/2003-01/2003-01
+> > > LEGS: 3 (previous: 3028, now:3031)
+> > - Include path found, including - caves-1623/2004-01/2004-01
+> > - NO Match in DB (i) for a cave for caves-1623/2004-01/2004-01
+> > > - MEM:47.38671875 Reading. parent:kataster/1623 <> caves-1623/2004-01/2004-01
+> > > - No match (b) for caves-1623/2004-01/2004-01
+> > > - Begin found for:2004-01, creating new SurvexBlock
+> > > > - MEM:47.390625 Reading. parent:caves-1623/2004-01/2004-01 <> caves-1623/2004-01/2004-01
+> > > LEGS: 3 (previous: 3031, now:3034)
+> > - Include path found, including - caves-1623/2004-03/2004-03
+> > - NO Match in DB (i) for a cave for caves-1623/2004-03/2004-03
+> > > - MEM:47.3984375 Reading. parent:kataster/1623 <> caves-1623/2004-03/2004-03
+> > > - No match (b) for caves-1623/2004-03/2004-03
+> > > - Begin found for:2004-03, creating new SurvexBlock
+> > > > - MEM:47.3984375 Reading. parent:caves-1623/2004-03/2004-03 <> caves-1623/2004-03/2004-03
+> > > LEGS: 6 (previous: 3034, now:3040)
+> > - Include path found, including - caves-1623/2004-08/2004-08
+> > - NO Match in DB (i) for a cave for caves-1623/2004-08/2004-08
+> > > - MEM:47.41015625 Reading. parent:kataster/1623 <> caves-1623/2004-08/2004-08
+> > > - No match (b) for caves-1623/2004-08/2004-08
+> > > - Begin found for:2004-08, creating new SurvexBlock
+> > > > - MEM:47.421875 Reading. parent:caves-1623/2004-08/2004-08 <> caves-1623/2004-08/2004-08
+> > > LEGS: 14 (previous: 3040, now:3054)
+> > - Include path found, including - caves-1623/2004-10/2004-10
+> > - NO Match in DB (i) for a cave for caves-1623/2004-10/2004-10
+> > > - MEM:47.42578125 Reading. parent:kataster/1623 <> caves-1623/2004-10/2004-10
+> > > - No match (b) for caves-1623/2004-10/2004-10
+> > > - Begin found for:2004-10, creating new SurvexBlock
+> > > > - MEM:47.45703125 Reading. parent:caves-1623/2004-10/2004-10 <> caves-1623/2004-10/2004-10
+> > > LEGS: 8 (previous: 3054, now:3062)
+> > - Include path found, including - caves-1623/2004-14/2004-14
+> > - NO Match in DB (i) for a cave for caves-1623/2004-14/2004-14
+> > > - MEM:47.52734375 Reading. parent:kataster/1623 <> caves-1623/2004-14/2004-14
+> > > - No match (b) for caves-1623/2004-14/2004-14
+> > > - Begin found for:2004-14, creating new SurvexBlock
+> > > > - MEM:47.53125 Reading. parent:caves-1623/2004-14/2004-14 <> caves-1623/2004-14/2004-14
+> > > LEGS: 2 (previous: 3062, now:3064)
+> > - Include path found, including - caves-1623/2004-15/2004-15
+> > - NO Match in DB (i) for a cave for caves-1623/2004-15/2004-15
+> > > - MEM:47.55078125 Reading. parent:kataster/1623 <> caves-1623/2004-15/2004-15
+> > > - No match (b) for caves-1623/2004-15/2004-15
+> > > - Begin found for:2004-15, creating new SurvexBlock
+> > > > - MEM:47.5625 Reading. parent:caves-1623/2004-15/2004-15 <> caves-1623/2004-15/2004-15
+> > > LEGS: 7 (previous: 3064, now:3071)
+> > - Include path found, including - caves-1623/2004-18/2004-18
+> > - NO Match in DB (i) for a cave for caves-1623/2004-18/2004-18
+> > > - MEM:47.5703125 Reading. parent:kataster/1623 <> caves-1623/2004-18/2004-18
+> > > - No match (b) for caves-1623/2004-18/2004-18
+> > > - Begin found for:2004-18, creating new SurvexBlock
+> > > > - MEM:47.5703125 Reading. parent:caves-1623/2004-18/2004-18 <> caves-1623/2004-18/2004-18
+> > > LEGS: 20 (previous: 3071, now:3091)
+> > - Include path found, including - caves-1623/2004-20/2004-20
+> > - NO Match in DB (i) for a cave for caves-1623/2004-20/2004-20
+> > > - MEM:47.671875 Reading. parent:kataster/1623 <> caves-1623/2004-20/2004-20
+> > > - No match (b) for caves-1623/2004-20/2004-20
+> > > - Begin found for:2004-20, creating new SurvexBlock
+> > > > - MEM:47.671875 Reading. parent:caves-1623/2004-20/2004-20 <> caves-1623/2004-20/2004-20
+> > > LEGS: 6 (previous: 3091, now:3097)
+> > - Include path found, including - caves-1623/2005-01/2005-01
+> > - NO Match in DB (i) for a cave for caves-1623/2005-01/2005-01
+> > > - MEM:47.67578125 Reading. parent:kataster/1623 <> caves-1623/2005-01/2005-01
+> > > - No match (b) for caves-1623/2005-01/2005-01
+> > > - Begin found for:2005-01, creating new SurvexBlock
+> > > > - MEM:47.67578125 Reading. parent:caves-1623/2005-01/2005-01 <> caves-1623/2005-01/2005-01
+> > > LEGS: 10 (previous: 3097, now:3107)
+> > - Include path found, including - caves-1623/2005-07/2005-07
+> > - NO Match in DB (i) for a cave for caves-1623/2005-07/2005-07
+> > > - MEM:47.67578125 Reading. parent:kataster/1623 <> caves-1623/2005-07/2005-07
+> > > - No match (b) for caves-1623/2005-07/2005-07
+> > > - Begin found for:2005-07, creating new SurvexBlock
+> > > > - MEM:47.67578125 Reading. parent:caves-1623/2005-07/2005-07 <> caves-1623/2005-07/2005-07
+> > > LEGS: 4 (previous: 3107, now:3111)
+> > - Include path found, including - caves-1623/2005-92/2005-92
+> > - NO Match in DB (i) for a cave for caves-1623/2005-92/2005-92
+> > > - MEM:47.6796875 Reading. parent:kataster/1623 <> caves-1623/2005-92/2005-92
+> > > - No match (b) for caves-1623/2005-92/2005-92
+> > > - Begin found for:2005-92, creating new SurvexBlock
+> > > > - MEM:47.68359375 Reading. parent:caves-1623/2005-92/2005-92 <> caves-1623/2005-92/2005-92
+> > > LEGS: 4 (previous: 3111, now:3115)
+> > - Include path found, including - caves-1623/2005-93/2005-93
+> > - NO Match in DB (i) for a cave for caves-1623/2005-93/2005-93
+> > > - MEM:47.68359375 Reading. parent:kataster/1623 <> caves-1623/2005-93/2005-93
+> > > - No match (b) for caves-1623/2005-93/2005-93
+> > > - Begin found for:2005-93, creating new SurvexBlock
+> > > > - MEM:47.68359375 Reading. parent:caves-1623/2005-93/2005-93 <> caves-1623/2005-93/2005-93
+> > > LEGS: 2 (previous: 3115, now:3117)
+> > - Include path found, including - caves-1623/2005-94/2005-94
+> > - NO Match in DB (i) for a cave for caves-1623/2005-94/2005-94
+> > > - MEM:47.6875 Reading. parent:kataster/1623 <> caves-1623/2005-94/2005-94
+> > > - No match (b) for caves-1623/2005-94/2005-94
+> > > - Begin found for:2005-94, creating new SurvexBlock
+> > > > - MEM:47.6875 Reading. parent:caves-1623/2005-94/2005-94 <> caves-1623/2005-94/2005-94
+> > > LEGS: 2 (previous: 3117, now:3119)
+> > - Include path found, including - caves-1623/2005-95/2005-95
+> > - NO Match in DB (i) for a cave for caves-1623/2005-95/2005-95
+> > > - MEM:47.6875 Reading. parent:kataster/1623 <> caves-1623/2005-95/2005-95
+> > > - No match (b) for caves-1623/2005-95/2005-95
+> > > - Begin found for:2005-95, creating new SurvexBlock
+> > > > - MEM:47.69140625 Reading. parent:caves-1623/2005-95/2005-95 <> caves-1623/2005-95/2005-95
+> > > LEGS: 4 (previous: 3119, now:3123)
+> > - Include path found, including - caves-1623/2005-96/2005-96
+> > - NO Match in DB (i) for a cave for caves-1623/2005-96/2005-96
+> > > - MEM:47.69140625 Reading. parent:kataster/1623 <> caves-1623/2005-96/2005-96
+> > > - No match (b) for caves-1623/2005-96/2005-96
+> > > - Begin found for:2005-96, creating new SurvexBlock
+> > > > - MEM:47.69140625 Reading. parent:caves-1623/2005-96/2005-96 <> caves-1623/2005-96/2005-96
+> > > LEGS: 2 (previous: 3123, now:3125)
+> > - Include path found, including - caves-1623/2005-99/2005-99
+> > - NO Match in DB (i) for a cave for caves-1623/2005-99/2005-99
+> > > - MEM:47.69140625 Reading. parent:kataster/1623 <> caves-1623/2005-99/2005-99
+> > > - No match (b) for caves-1623/2005-99/2005-99
+> > > - Begin found for:2005-99, creating new SurvexBlock
+> > > > - MEM:47.69140625 Reading. parent:caves-1623/2005-99/2005-99 <> caves-1623/2005-99/2005-99
+> > > LEGS: 5 (previous: 3125, now:3130)
+> > - Include path found, including - caves-1623/2006-08/2006-08
+> > - NO Match in DB (i) for a cave for caves-1623/2006-08/2006-08
+> > > - MEM:47.6953125 Reading. parent:kataster/1623 <> caves-1623/2006-08/2006-08
+> > > - No match (b) for caves-1623/2006-08/2006-08
+> > > - Begin found for:2006-08, creating new SurvexBlock
+> > > > - MEM:47.6953125 Reading. parent:caves-1623/2006-08/2006-08 <> caves-1623/2006-08/2006-08
+> > > LEGS: 2 (previous: 3130, now:3132)
+> > - Include path found, including - caves-1623/2006-09/2006-09
+> > - NO Match in DB (i) for a cave for caves-1623/2006-09/2006-09
+> > > - MEM:47.69921875 Reading. parent:kataster/1623 <> caves-1623/2006-09/2006-09
+> > > - No match (b) for caves-1623/2006-09/2006-09
+> > > - Begin found for:2006-09, creating new SurvexBlock
+> > > > - MEM:47.69921875 Reading. parent:caves-1623/2006-09/2006-09 <> caves-1623/2006-09/2006-09
+> > > LEGS: 2 (previous: 3132, now:3134)
+> > - Include path found, including - caves-1623/2006-70/2006-70
+> > - NO Match in DB (i) for a cave for caves-1623/2006-70/2006-70
+> > > - MEM:47.703125 Reading. parent:kataster/1623 <> caves-1623/2006-70/2006-70
+> > > - No match (b) for caves-1623/2006-70/2006-70
+> > > - Begin found for:2006-70, creating new SurvexBlock
+> > > > - MEM:47.703125 Reading. parent:caves-1623/2006-70/2006-70 <> caves-1623/2006-70/2006-70
+> > > LEGS: 2 (previous: 3134, now:3136)
+> > - Include path found, including - caves-1623/2006-71/2006-71
+> > - NO Match in DB (i) for a cave for caves-1623/2006-71/2006-71
+> > > - MEM:47.703125 Reading. parent:kataster/1623 <> caves-1623/2006-71/2006-71
+> > > - No match (b) for caves-1623/2006-71/2006-71
+> > > - Begin found for:2006-71, creating new SurvexBlock
+> > > > - MEM:47.703125 Reading. parent:caves-1623/2006-71/2006-71 <> caves-1623/2006-71/2006-71
+> > > LEGS: 1 (previous: 3136, now:3137)
+> > - Include path found, including - caves-1623/2006-72/2006-72
+> > - NO Match in DB (i) for a cave for caves-1623/2006-72/2006-72
+> > > - MEM:47.703125 Reading. parent:kataster/1623 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/2006-72
+> > > - Begin found for:2006-72, creating new SurvexBlock
+> > > > - MEM:47.7265625 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/pt1
+> > > - Begin found for:pt1, creating new SurvexBlock
+> > > > - MEM:47.7265625 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > LEGS: 2 (previous: 3137, now:3139)
+> > - Include path found, including - caves-1623/2006-73/2006-73
+> > - NO Match in DB (i) for a cave for caves-1623/2006-73/2006-73
+> > > - MEM:47.73046875 Reading. parent:kataster/1623 <> caves-1623/2006-73/2006-73
+> > > - No match (b) for caves-1623/2006-73/2006-73
+> > > - Begin found for:2006-73, creating new SurvexBlock
+> > > > - MEM:47.73046875 Reading. parent:caves-1623/2006-73/2006-73 <> caves-1623/2006-73/2006-73
+> > > LEGS: 10 (previous: 3139, now:3149)
+> > - Include path found, including - caves-1623/2007-04/2007-04
+> > - NO Match in DB (i) for a cave for caves-1623/2007-04/2007-04
+> > > - MEM:47.73046875 Reading. parent:kataster/1623 <> caves-1623/2007-04/2007-04
+> > > - No match (b) for caves-1623/2007-04/2007-04
+> > > - Begin found for:2007-04, creating new SurvexBlock
+> > > > - MEM:47.73046875 Reading. parent:caves-1623/2007-04/2007-04 <> caves-1623/2007-04/2007-04
+> > > LEGS: 13 (previous: 3149, now:3162)
+> > - Include path found, including - caves-1623/2007-05/2007-05
+> > - NO Match in DB (i) for a cave for caves-1623/2007-05/2007-05
+> > > - MEM:47.75 Reading. parent:kataster/1623 <> caves-1623/2007-05/2007-05
+> > > - No match (b) for caves-1623/2007-05/2007-05
+> > > - Begin found for:2007-05, creating new SurvexBlock
+> > > > - MEM:47.75 Reading. parent:caves-1623/2007-05/2007-05 <> caves-1623/2007-05/2007-05
+> > > LEGS: 3 (previous: 3162, now:3165)
+> > - Include path found, including - caves-1623/2007-06/2007-06
+> > - NO Match in DB (i) for a cave for caves-1623/2007-06/2007-06
+> > > - MEM:47.75 Reading. parent:kataster/1623 <> caves-1623/2007-06/2007-06
+> > > - No match (b) for caves-1623/2007-06/2007-06
+> > > - Begin found for:2007-06, creating new SurvexBlock
+> > > > - MEM:47.75 Reading. parent:caves-1623/2007-06/2007-06 <> caves-1623/2007-06/2007-06
+> > > LEGS: 1 (previous: 3165, now:3166)
+> > - Include path found, including - caves-1623/2007-07/2007-07
+> > - NO Match in DB (i) for a cave for caves-1623/2007-07/2007-07
+> > > - MEM:47.75 Reading. parent:kataster/1623 <> caves-1623/2007-07/2007-07
+> > > - No match (b) for caves-1623/2007-07/2007-07
+> > > - Begin found for:2007-07, creating new SurvexBlock
+> > > > - MEM:47.75 Reading. parent:caves-1623/2007-07/2007-07 <> caves-1623/2007-07/2007-07
+> > > LEGS: 2 (previous: 3166, now:3168)
+> > - Include path found, including - caves-1623/2007-12/2007-12
+> > - NO Match in DB (i) for a cave for caves-1623/2007-12/2007-12
+> > > - MEM:47.75 Reading. parent:kataster/1623 <> caves-1623/2007-12/2007-12
+> > > - No match (b) for caves-1623/2007-12/2007-12
+> > > - Begin found for:2007-12, creating new SurvexBlock
+> > > > - MEM:47.75 Reading. parent:caves-1623/2007-12/2007-12 <> caves-1623/2007-12/2007-12
+> > > LEGS: 3 (previous: 3168, now:3171)
+> > - Include path found, including - caves-1623/2007-70/2007-70
+> > - NO Match in DB (i) for a cave for caves-1623/2007-70/2007-70
+> > > - MEM:47.75390625 Reading. parent:kataster/1623 <> caves-1623/2007-70/2007-70
+> > > - No match (b) for caves-1623/2007-70/2007-70
+> > > - Begin found for:2007-70, creating new SurvexBlock
+> > > > - MEM:47.75390625 Reading. parent:caves-1623/2007-70/2007-70 <> caves-1623/2007-70/2007-70
+> > > LEGS: 2 (previous: 3171, now:3173)
+> > - Include path found, including - caves-1623/2007-72/2007-72
+> > - NO Match in DB (i) for a cave for caves-1623/2007-72/2007-72
+> > > - MEM:47.75390625 Reading. parent:kataster/1623 <> caves-1623/2007-72/2007-72
+> > > - No match (b) for caves-1623/2007-72/2007-72
+> > > - Begin found for:2007-72, creating new SurvexBlock
+> > > > - MEM:47.75390625 Reading. parent:caves-1623/2007-72/2007-72 <> caves-1623/2007-72/2007-72
+> > > LEGS: 7 (previous: 3173, now:3180)
+> > - Include path found, including - caves-1623/2009-01/2009-01
+> > - NO Match in DB (i) for a cave for caves-1623/2009-01/2009-01
+> > > - MEM:47.7578125 Reading. parent:kataster/1623 <> caves-1623/2009-01/2009-01
+> > > - No match (b) for caves-1623/2009-01/2009-01
+> > > - Begin found for:2009-01, creating new SurvexBlock
+> > > > - MEM:47.7578125 Reading. parent:caves-1623/2009-01/2009-01 <> caves-1623/2009-01/2009-01
+> > > LEGS: 3 (previous: 3180, now:3183)
+> > - Include path found, including - caves-1623/2009-02/2009-02
+> > - NO Match in DB (i) for a cave for caves-1623/2009-02/2009-02
+> > > - MEM:47.79296875 Reading. parent:kataster/1623 <> caves-1623/2009-02/2009-02
+> > > - No match (b) for caves-1623/2009-02/2009-02
+> > > - Begin found for:2009-02, creating new SurvexBlock
+> > > > - MEM:47.79296875 Reading. parent:caves-1623/2009-02/2009-02 <> caves-1623/2009-02/2009-02
+> > > LEGS: 17 (previous: 3183, now:3200)
+> > - Include path found, including - caves-1623/2009-03/2009-03
+> > - NO Match in DB (i) for a cave for caves-1623/2009-03/2009-03
+> > > - MEM:47.79296875 Reading. parent:kataster/1623 <> caves-1623/2009-03/2009-03
+> > > - No match (b) for caves-1623/2009-03/2009-03
+> > > - Begin found for:2009-03, creating new SurvexBlock
+> > > > - MEM:47.79296875 Reading. parent:caves-1623/2009-03/2009-03 <> caves-1623/2009-03/2009-03
+> > > LEGS: 7 (previous: 3200, now:3207)
+> > - Include path found, including - caves-1623/2010-06/2010-06
+> > - NO Match in DB (i) for a cave for caves-1623/2010-06/2010-06
+> > > - MEM:47.79296875 Reading. parent:kataster/1623 <> caves-1623/2010-06/2010-06
+> > > - No match (b) for caves-1623/2010-06/2010-06
+> > > - Begin found for:2010-06, creating new SurvexBlock
+> > > > - MEM:47.79296875 Reading. parent:caves-1623/2010-06/2010-06 <> caves-1623/2010-06/2010-06
+> > > LEGS: 6 (previous: 3207, now:3213)
+> > - Include path found, including - caves-1623/2010-07/2010-07
+> > - NO Match in DB (i) for a cave for caves-1623/2010-07/2010-07
+> > > - MEM:47.79296875 Reading. parent:kataster/1623 <> caves-1623/2010-07/2010-07
+> > > - No match (b) for caves-1623/2010-07/2010-07
+> > > - Begin found for:2010-07, creating new SurvexBlock
+> > > > - MEM:47.79296875 Reading. parent:caves-1623/2010-07/2010-07 <> caves-1623/2010-07/2010-07
+> > > LEGS: 5 (previous: 3213, now:3218)
+> > - Include path found, including - caves-1623/2011-01/2011-01
+> > - NO Match in DB (i) for a cave for caves-1623/2011-01/2011-01
+> > > - MEM:47.79296875 Reading. parent:kataster/1623 <> caves-1623/2011-01/2011-01
+> > > - No match (b) for caves-1623/2011-01/2011-01
+> > > - Begin found for:2011-01, creating new SurvexBlock
+> > > > - MEM:47.79296875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/2011-01
+> > > - Include path found, including - caves-1623/2011-01/bullet1
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet1
+> > > > - MEM:47.79296875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet1
+> > > > - No match (b) for caves-1623/2011-01/bullet1
+> > > > - Begin found for:bullet1, creating new SurvexBlock
+> > > > > - MEM:47.79296875 Reading. parent:caves-1623/2011-01/bullet1 <> caves-1623/2011-01/bullet1
+> > > > LEGS: 15 (previous: 3218, now:3233)
+> > > - Include path found, including - caves-1623/2011-01/bullet2
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet2
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet2
+> > > > - No match (b) for caves-1623/2011-01/bullet2
+> > > > - Begin found for:bullet2, creating new SurvexBlock
+> > > > > - MEM:47.8046875 Reading. parent:caves-1623/2011-01/bullet2 <> caves-1623/2011-01/bullet2
+> > > > LEGS: 12 (previous: 3233, now:3245)
+> > > - Include path found, including - caves-1623/2011-01/bullet3
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet3
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet3
+> > > > - No match (b) for caves-1623/2011-01/bullet3
+> > > > - Begin found for:bullet3, creating new SurvexBlock
+> > > > > - MEM:47.8046875 Reading. parent:caves-1623/2011-01/bullet3 <> caves-1623/2011-01/bullet3
+> > > > LEGS: 4 (previous: 3245, now:3249)
+> > > LEGS: 31 (previous: 3218, now:3249)
+> > - Include path found, including - caves-1623/2012-hw-01/2012-hw-01
+> > - Match in DB (i) for cave 1623-2012-hw-01.
+[]
+> > > - MEM:47.8046875 Reading. parent:kataster/1623 <> caves-1623/2012-hw-01/2012-hw-01
+[]
+> > > - Begin found for:2012-hw-01, creating new SurvexBlock
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2012-hw-01/2012-hw-01 <> caves-1623/2012-hw-01/2012-hw-01
+[]
+> > > LEGS: 4 (previous: 3249, now:3253)
+> > - Include path found, including - caves-1623/2012-ns-01/2012-ns-01
+> > - Match in DB (i) for cave 1623-2012-ns-01.
+[]
+> > > - MEM:47.8046875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-01/2012-ns-01
+[]
+> > > - Begin found for:2012-ns-01, creating new SurvexBlock
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/2012-ns-01
+[]
+> > > - Include path found, including - caves-1623/2012-ns-01/AntsInYourPants
+> > > - Match in DB (i) for cave 1623-2012-ns-01.
+[]
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/AntsInYourPants
+[]
+[]
+> > > > - Begin found for:antsinyourpants, creating new SurvexBlock
+> > > > > - MEM:47.8046875 Reading. parent:caves-1623/2012-ns-01/AntsInYourPants <> caves-1623/2012-ns-01/AntsInYourPants
+[]
+> > > > LEGS: 14 (previous: 3253, now:3267)
+> > > LEGS: 15 (previous: 3253, now:3268)
+> > - Include path found, including - caves-1623/2012-ns-02/2012-ns-02
+> > - Match in DB (i) for cave 1623-2012-ns-02.
+[]
+> > > - MEM:47.8046875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-02/2012-ns-02
+[]
+> > > - Begin found for:2012-ns-02, creating new SurvexBlock
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2012-ns-02/2012-ns-02 <> caves-1623/2012-ns-02/2012-ns-02
+[]
+> > > LEGS: 1 (previous: 3268, now:3269)
+> > - Include path found, including - caves-1623/2012-ns-03/2012-ns-03
+> > - Match in DB (i) for cave 1623-2012-ns-03.
+[<Cave: 1623-2012-ns-03>]
+> > > - MEM:47.8046875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-03/2012-ns-03
+[<Cave: 1623-2012-ns-03>]
+> > > - Begin found for:2012-ns-03, creating new SurvexBlock
+> > > > - MEM:47.8046875 Reading. parent:caves-1623/2012-ns-03/2012-ns-03 <> caves-1623/2012-ns-03/2012-ns-03
+[<Cave: 1623-2012-ns-03>]
+> > > LEGS: 5 (previous: 3269, now:3274)
+> > - Include path found, including - caves-1623/2010-03/2010-03
+> > - NO Match in DB (i) for a cave for caves-1623/2010-03/2010-03
+> > > - MEM:47.8125 Reading. parent:kataster/1623 <> caves-1623/2010-03/2010-03
+> > > - No match (b) for caves-1623/2010-03/2010-03
+> > > - Begin found for:2010-03, creating new SurvexBlock
+> > > > - MEM:47.8125 Reading. parent:caves-1623/2010-03/2010-03 <> caves-1623/2010-03/2010-03
+> > > LEGS: 5 (previous: 3274, now:3279)
+> > - Include path found, including - caves-1623/2010-04/2010-04
+> > - NO Match in DB (i) for a cave for caves-1623/2010-04/2010-04
+> > > - MEM:47.8125 Reading. parent:kataster/1623 <> caves-1623/2010-04/2010-04
+> > > - No match (b) for caves-1623/2010-04/2010-04
+> > > - Begin found for:2010-04, creating new SurvexBlock
+> > > > - MEM:47.8125 Reading. parent:caves-1623/2010-04/2010-04 <> caves-1623/2010-04/2010-04
+> > > LEGS: 2 (previous: 3279, now:3281)
+> > - Include path found, including - caves-1623/2012-ns-05/2012-ns-05
+> > - Match in DB (i) for cave 1623-2012-ns-05.
+[]
+> > > - MEM:47.8125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-05/2012-ns-05
+[]
+> > > - Begin found for:2012-ns-05, creating new SurvexBlock
+> > > > - MEM:47.8125 Reading. parent:caves-1623/2012-ns-05/2012-ns-05 <> caves-1623/2012-ns-05/2012-ns-05
+[]
+> > > LEGS: 1 (previous: 3281, now:3282)
+> > - Include path found, including - caves-1623/2012-ns-06/2012-ns-06
+> > - Match in DB (i) for cave 1623-2012-ns-06.
+[]
+> > > - MEM:47.8125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-06/2012-ns-06
+[]
+> > > - Begin found for:2012-ns-06, creating new SurvexBlock
+> > > > - MEM:47.8125 Reading. parent:caves-1623/2012-ns-06/2012-ns-06 <> caves-1623/2012-ns-06/2012-ns-06
+[]
+> > > LEGS: 1 (previous: 3282, now:3283)
+> > - Include path found, including - caves-1623/2012-ns-07/2012-ns-07
+> > - Match in DB (i) for cave 1623-2012-ns-07.
+[]
+> > > - MEM:47.8125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-07/2012-ns-07
+[]
+> > > - Begin found for:2012-ns-07, creating new SurvexBlock
+> > > > - MEM:47.8125 Reading. parent:caves-1623/2012-ns-07/2012-ns-07 <> caves-1623/2012-ns-07/2012-ns-07
+[]
+> > > LEGS: 1 (previous: 3283, now:3284)
+> > - Include path found, including - caves-1623/2012-ns-08/2012-ns-08
+> > - Match in DB (i) for cave 1623-2012-ns-08.
+[]
+> > > - MEM:47.81640625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-08/2012-ns-08
+[]
+> > > - Begin found for:2012-ns-08, creating new SurvexBlock
+> > > > - MEM:47.81640625 Reading. parent:caves-1623/2012-ns-08/2012-ns-08 <> caves-1623/2012-ns-08/2012-ns-08
+[]
+> > > LEGS: 1 (previous: 3284, now:3285)
+> > - Include path found, including - caves-1623/2012-ns-09/2012-ns-09
+> > - Match in DB (i) for cave 1623-2012-ns-09.
+[<Cave: 1623-2012-ns-09>]
+> > > - MEM:47.81640625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-09/2012-ns-09
+[<Cave: 1623-2012-ns-09>]
+> > > - Begin found for:2012-ns-09, creating new SurvexBlock
+> > > > - MEM:47.81640625 Reading. parent:caves-1623/2012-ns-09/2012-ns-09 <> caves-1623/2012-ns-09/2012-ns-09
+[<Cave: 1623-2012-ns-09>]
+> > > LEGS: 4 (previous: 3285, now:3289)
+> > - Include path found, including - caves-1623/2012-ns-10/2012-ns-10
+> > - Match in DB (i) for cave 1623-2012-ns-10.
+[<Cave: 1623-2012-ns-10>]
+> > > - MEM:47.81640625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-10/2012-ns-10
+[<Cave: 1623-2012-ns-10>]
+> > > - Begin found for:2012-ns-10, creating new SurvexBlock
+> > > > - MEM:47.81640625 Reading. parent:caves-1623/2012-ns-10/2012-ns-10 <> caves-1623/2012-ns-10/2012-ns-10
+[<Cave: 1623-2012-ns-10>]
+> > > LEGS: 5 (previous: 3289, now:3294)
+> > - Include path found, including - caves-1623/2012-ns-12/2012-ns-12
+> > - Match in DB (i) for cave 1623-2012-ns-12.
+[]
+> > > - MEM:47.81640625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-12/2012-ns-12
+[]
+> > > - Begin found for:2012-ns-12, creating new SurvexBlock
+> > > > - MEM:47.81640625 Reading. parent:caves-1623/2012-ns-12/2012-ns-12 <> caves-1623/2012-ns-12/2012-ns-12
+[]
+> > > LEGS: 1 (previous: 3294, now:3295)
+> > - Include path found, including - caves-1623/2012-ns-13/2012-ns-13
+> > - Match in DB (i) for cave 1623-2012-ns-13.
+[<Cave: 1623-292>]
+> > > - MEM:47.8203125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-13/2012-ns-13
+[<Cave: 1623-292>]
+> > > - Begin found for:2012-ns-13, creating new SurvexBlock
+> > > > - MEM:47.8203125 Reading. parent:caves-1623/2012-ns-13/2012-ns-13 <> caves-1623/2012-ns-13/2012-ns-13
+[<Cave: 1623-292>]
+> > > LEGS: 5 (previous: 3295, now:3300)
+> > - Include path found, including - caves-1623/2012-ns-14/2012-ns-14
+> > - Match in DB (i) for cave 1623-2012-ns-14.
+[]
+> > > - MEM:47.82421875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-14/2012-ns-14
+[]
+> > > - Begin found for:2012-ns-14, creating new SurvexBlock
+> > > > - MEM:47.82421875 Reading. parent:caves-1623/2012-ns-14/2012-ns-14 <> caves-1623/2012-ns-14/2012-ns-14
+[]
+> > > LEGS: 1 (previous: 3300, now:3301)
+> > - Include path found, including - caves-1623/2012-ns-15/2012-ns-15
+> > - Match in DB (i) for cave 1623-2012-ns-15.
+[]
+> > > - MEM:47.83984375 Reading. parent:kataster/1623 <> caves-1623/2012-ns-15/2012-ns-15
+[]
+> > > - Begin found for:2012-ns-15, creating new SurvexBlock
+> > > > - MEM:47.83984375 Reading. parent:caves-1623/2012-ns-15/2012-ns-15 <> caves-1623/2012-ns-15/2012-ns-15
+[]
+> > > LEGS: 1 (previous: 3301, now:3302)
+> > - Include path found, including - caves-1623/2012-70/2012-70
+> > - NO Match in DB (i) for a cave for caves-1623/2012-70/2012-70
+> > > - MEM:47.83984375 Reading. parent:kataster/1623 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/2012-70
+> > > - Begin found for:2012-70, creating new SurvexBlock
+> > > > - MEM:47.83984375 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/pt2
+> > > - Begin found for:pt2, creating new SurvexBlock
+> > > > - MEM:47.83984375 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > LEGS: 10 (previous: 3327, now:3337)
+> > - Include path found, including - caves-1623/2012-js-1/2012-js-1
+> > - Match in DB (i) for cave 1623-2012-js-1.
+[]
+> > > - MEM:47.84765625 Reading. parent:kataster/1623 <> caves-1623/2012-js-1/2012-js-1
+[]
+> > > - Begin found for:2012-js-1, creating new SurvexBlock
+> > > > - MEM:47.84765625 Reading. parent:caves-1623/2012-js-1/2012-js-1 <> caves-1623/2012-js-1/2012-js-1
+[]
+> > > LEGS: 6 (previous: 3337, now:3343)
+> > - Include path found, including - caves-1623/2012-dd-05/2012-dd-05
+> > - Match in DB (i) for cave 1623-2012-dd-05.
+[<Cave: 1623-286>]
+> > > - MEM:47.8515625 Reading. parent:kataster/1623 <> caves-1623/2012-dd-05/2012-dd-05
+[<Cave: 1623-286>]
+> > > - Begin found for:2012-dd-05, creating new SurvexBlock
+> > > > - MEM:47.8515625 Reading. parent:caves-1623/2012-dd-05/2012-dd-05 <> caves-1623/2012-dd-05/2012-dd-05
+[<Cave: 1623-286>]
+> > > LEGS: 19 (previous: 3343, now:3362)
+> > - Include path found, including - caves-1623/2012-dd-08/2012-dd-08
+> > - Match in DB (i) for cave 1623-2012-dd-08.
+[<Cave: 1623-297>]
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2012-dd-08/2012-dd-08
+[<Cave: 1623-297>]
+> > > - Begin found for:2012-dd-08, creating new SurvexBlock
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2012-dd-08/2012-dd-08 <> caves-1623/2012-dd-08/2012-dd-08
+[<Cave: 1623-297>]
+> > > LEGS: 6 (previous: 3362, now:3368)
+> > - Include path found, including - caves-1623/2014-sd-01/2014-sd-01
+> > - Match in DB (i) for cave 1623-2014-sd-01.
+[]
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2014-sd-01/2014-sd-01
+[]
+> > > - Begin found for:2014-sd-01, creating new SurvexBlock
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2014-sd-01/2014-sd-01 <> caves-1623/2014-sd-01/2014-sd-01
+[]
+> > > LEGS: 13 (previous: 3368, now:3381)
+> > - Include path found, including - caves-1623/2014-BL888/2014-BL888
+> > - NO Match in DB (i) for a cave for caves-1623/2014-BL888/2014-BL888
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2014-BL888/2014-BL888
+> > > - No match (b) for caves-1623/2014-BL888/2014-BL888
+> > > - Begin found for:2014-bl888, creating new SurvexBlock
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2014-BL888/2014-BL888 <> caves-1623/2014-BL888/2014-BL888
+> > > LEGS: 10 (previous: 3381, now:3391)
+> > - Include path found, including - caves-1623/2015-mf-06/2015-mf-06
+> > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > - MEM:47.859375 Reading. parent:kataster/1623 <> caves-1623/2015-mf-06/2015-mf-06
+[<Cave: 1623-288>]
+> > > - Begin found for:2015-mf-06, creating new SurvexBlock
+> > > > - MEM:47.859375 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/2015-mf-06
+[<Cave: 1623-288>]
+> > > - Include path found, including - caves-1623/2015-mf-06/purplelupine
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > > - MEM:47.875 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine
+[<Cave: 1623-288>]
+[<Cave: 1623-288>]
+> > > > - Begin found for:purplelupine, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2015-mf-06/purplelupine <> caves-1623/2015-mf-06/purplelupine
+[<Cave: 1623-288>]
+> > > > LEGS: 10 (previous: 3391, now:3401)
+> > > - Include path found, including - caves-1623/2015-mf-06/purplelupine2
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine2
+[<Cave: 1623-288>]
+[<Cave: 1623-288>]
+> > > > - Begin found for:purplelupine2, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2015-mf-06/purplelupine2 <> caves-1623/2015-mf-06/purplelupine2
+[<Cave: 1623-288>]
+> > > > LEGS: 14 (previous: 3401, now:3415)
+> > > LEGS: 24 (previous: 3391, now:3415)
+> > - Include path found, including - caves-1623/2016-jb-01/2016-jb-01
+> > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > - MEM:47.87890625 Reading. parent:kataster/1623 <> caves-1623/2016-jb-01/2016-jb-01
+[<Cave: 1623-289>]
+> > > - Begin found for:2016-jb-01, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/2016-jb-01
+[<Cave: 1623-289>]
+> > > - Include path found, including - caves-1623/2016-jb-01/solidrock
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrock
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:solidrock, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/solidrock <> caves-1623/2016-jb-01/solidrock
+[<Cave: 1623-289>]
+> > > > LEGS: 252 (previous: 3415, now:3667)
+> > > - Include path found, including - caves-1623/2016-jb-01/hopeless
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/hopeless
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:hopeless, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/hopeless <> caves-1623/2016-jb-01/hopeless
+[<Cave: 1623-289>]
+> > > > LEGS: 85 (previous: 3667, now:3752)
+> > > - Include path found, including - caves-1623/2016-jb-01/dirtysnow
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/dirtysnow
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:dirtysnow, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/dirtysnow <> caves-1623/2016-jb-01/dirtysnow
+[<Cave: 1623-289>]
+> > > > LEGS: 59 (previous: 3752, now:3811)
+> > > - Include path found, including - caves-1623/2016-jb-01/solidrocks
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrocks
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:solidrocks, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/solidrocks <> caves-1623/2016-jb-01/solidrocks
+[<Cave: 1623-289>]
+> > > > LEGS: 65 (previous: 3811, now:3876)
+> > > - Include path found, including - caves-1623/2016-jb-01/nervousbreakdown
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/nervousbreakdown
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:nervousbreakdown, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2016-jb-01/nervousbreakdown <> caves-1623/2016-jb-01/nervousbreakdown
+[<Cave: 1623-289>]
+> > > > LEGS: 200 (previous: 3876, now:4076)
+> > > LEGS: 661 (previous: 3415, now:4076)
+> > - Include path found, including - caves-1623/2017-pw-01/2017-pw-01
+> > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > - MEM:47.87890625 Reading. parent:kataster/1623 <> caves-1623/2017-pw-01/2017-pw-01
+[<Cave: 1623-277>]
+> > > - Begin found for:2017-pw-01, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/2017-pw-01
+[<Cave: 1623-277>]
+> > > - Include path found, including - caves-1623/2017-pw-01/entrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/entrance
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:47.87890625 Reading. parent:caves-1623/2017-pw-01/entrance <> caves-1623/2017-pw-01/entrance
+[<Cave: 1623-277>]
+> > > > LEGS: 11 (previous: 4076, now:4087)
+> > > - Include path found, including - caves-1623/2017-pw-01/gardeningshoots
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/gardeningshoots
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:gardeningshoots, creating new SurvexBlock
+> > > > > - MEM:47.91796875 Reading. parent:caves-1623/2017-pw-01/gardeningshoots <> caves-1623/2017-pw-01/gardeningshoots
+[<Cave: 1623-277>]
+> > > > LEGS: 17 (previous: 4087, now:4104)
+> > > - Include path found, including - caves-1623/2017-pw-01/thirdentrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/thirdentrance
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:thirdentrance, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-pw-01/thirdentrance <> caves-1623/2017-pw-01/thirdentrance
+[<Cave: 1623-277>]
+> > > > LEGS: 9 (previous: 4104, now:4113)
+> > > - Include path found, including - caves-1623/2017-pw-01/badforecastthree
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/badforecastthree
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:badforecastthree, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-pw-01/badforecastthree <> caves-1623/2017-pw-01/badforecastthree
+[<Cave: 1623-277>]
+> > > > LEGS: 10 (previous: 4113, now:4123)
+> > > LEGS: 47 (previous: 4076, now:4123)
+> > - Include path found, including - caves-1623/110/110
+> > - Match in DB (i) for cave 1623-110.
+[<Cave: 1623-110>]
+> > > - MEM:47.9296875 Reading. parent:kataster/1623 <> caves-1623/110/110
+[<Cave: 1623-110>]
+> > > - Begin found for:110, creating new SurvexBlock
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/110/110 <> caves-1623/110/110
+[<Cave: 1623-110>]
+> > > - Include path found, including - caves-1623/110/notakittensheckschance
+> > > - Match in DB (i) for cave 1623-110.
+[<Cave: 1623-110>]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/110/110 <> caves-1623/110/notakittensheckschance
+[<Cave: 1623-110>]
+[<Cave: 1623-110>]
+> > > > - Begin found for:notakittensheckschance, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/110/notakittensheckschance <> caves-1623/110/notakittensheckschance
+[<Cave: 1623-110>]
+> > > > LEGS: 19 (previous: 4123, now:4142)
+> > > LEGS: 19 (previous: 4123, now:4142)
+> > - Include path found, including - caves-1623/2017-cucc-23/2017-cucc-23
+> > - Match in DB (i) for cave 1623-2017-cucc-23.
+[]
+> > > - MEM:47.9296875 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-23/2017-cucc-23
+[]
+> > > - Begin found for:2017_cucc_23, creating new SurvexBlock
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/2017-cucc-23
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-23/keinwassermelone
+> > > - Match in DB (i) for cave 1623-2017-cucc-23.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/keinwassermelone
+[]
+[]
+> > > > - Begin found for:keinwassermelone, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-23/keinwassermelone <> caves-1623/2017-cucc-23/keinwassermelone
+[]
+> > > > LEGS: 18 (previous: 4142, now:4160)
+> > > LEGS: 18 (previous: 4142, now:4160)
+> > - Include path found, including - caves-1623/2017-cucc-24/2017-cucc-24
+> > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > - MEM:47.9296875 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-24/2017-cucc-24
+[]
+> > > - Begin found for:2017_cucc_24, creating new SurvexBlock
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/2017-cucc-24
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-24/dentrance
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentrance
+[]
+[]
+> > > > - Begin found for:dentrance, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/dentrance <> caves-1623/2017-cucc-24/dentrance
+[]
+> > > > LEGS: 34 (previous: 4160, now:4194)
+> > > - Include path found, including - caves-1623/2017-cucc-24/dentb
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentb
+[]
+[]
+> > > > - Begin found for:dentb, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/dentb <> caves-1623/2017-cucc-24/dentb
+[]
+> > > > LEGS: 13 (previous: 4194, now:4207)
+> > > - Include path found, including - caves-1623/2017-cucc-24/couldashouldawoulda
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda
+[]
+[]
+> > > > - Begin found for:couldashouldawoulda, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda <> caves-1623/2017-cucc-24/couldashouldawoulda
+[]
+> > > > LEGS: 15 (previous: 4207, now:4222)
+> > > - Include path found, including - caves-1623/2017-cucc-24/gsh4
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/gsh4
+[]
+[]
+> > > > - Begin found for:gsh4, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/gsh4 <> caves-1623/2017-cucc-24/gsh4
+[]
+> > > > LEGS: 9 (previous: 4222, now:4231)
+> > > - Include path found, including - caves-1623/2017-cucc-24/riftpiece
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/riftpiece
+[]
+[]
+> > > > - Begin found for:riftpiece, creating new SurvexBlock
+> > > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/riftpiece <> caves-1623/2017-cucc-24/riftpiece
+[]
+> > > > LEGS: 13 (previous: 4231, now:4244)
+> > > - Include path found, including - caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+[]
+[]
+> > > > - Begin found for:couldashouldawoulda_to_bathdodgersbypass, creating new SurvexBlock
+> > > > > - MEM:47.9375 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+[]
+> > > > LEGS: 23 (previous: 4244, now:4267)
+> > > LEGS: 107 (previous: 4160, now:4267)
+> > - Include path found, including - caves-1623/2017-cucc-28/2017-cucc-28
+> > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > - MEM:47.98046875 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-28/2017-cucc-28
+[]
+> > > - Begin found for:2017_cucc_28, creating new SurvexBlock
+> > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/2017-cucc-28
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-28/blower
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blower
+[]
+[]
+> > > > - Begin found for:blower, creating new SurvexBlock
+> > > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/blower <> caves-1623/2017-cucc-28/blower
+[]
+> > > > LEGS: 1 (previous: 4267, now:4268)
+> > > - Include path found, including - caves-1623/2017-cucc-28/entranceseries
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/entranceseries
+[]
+[]
+> > > > - Begin found for:entranceseries, creating new SurvexBlock
+> > > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/entranceseries <> caves-1623/2017-cucc-28/entranceseries
+[]
+> > > > LEGS: 6 (previous: 4268, now:4274)
+> > > - Include path found, including - caves-1623/2017-cucc-28/windytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/windytube
+[]
+[]
+> > > > - Begin found for:windytube, creating new SurvexBlock
+> > > > > - MEM:47.98046875 Reading. parent:caves-1623/2017-cucc-28/windytube <> caves-1623/2017-cucc-28/windytube
+[]
+> > > > LEGS: 8 (previous: 4274, now:4282)
+> > > - Include path found, including - caves-1623/2017-cucc-28/12monkeys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/12monkeys
+[]
+[]
+> > > > - Begin found for:12monkeys, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-28/12monkeys <> caves-1623/2017-cucc-28/12monkeys
+[]
+> > > > LEGS: 22 (previous: 4282, now:4304)
+> > > - Include path found, including - caves-1623/2017-cucc-28/fishface1-part1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part1
+[]
+[]
+> > > > - Begin found for:fishface1-part1, creating new SurvexBlock
+> > > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/fishface1-part1 <> caves-1623/2017-cucc-28/fishface1-part1
+[]
+> > > > LEGS: 13 (previous: 4304, now:4317)
+> > > - Include path found, including - caves-1623/2017-cucc-28/fishface1-part2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part2
+[]
+[]
+> > > > - Begin found for:fishface1-part2, creating new SurvexBlock
+> > > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/fishface1-part2 <> caves-1623/2017-cucc-28/fishface1-part2
+[]
+> > > > LEGS: 5 (previous: 4317, now:4322)
+> > > - Include path found, including - caves-1623/2017-cucc-28/icytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/icytube
+[]
+[]
+> > > > - Begin found for:icytube, creating new SurvexBlock
+> > > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/icytube <> caves-1623/2017-cucc-28/icytube
+[]
+> > > > LEGS: 11 (previous: 4322, now:4333)
+> > > - Include path found, including - caves-1623/2017-cucc-28/canyon
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/canyon
+[]
+[]
+> > > > - Begin found for:canyon, creating new SurvexBlock
+> > > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/canyon <> caves-1623/2017-cucc-28/canyon
+[]
+> > > > LEGS: 18 (previous: 4333, now:4351)
+> > > - Include path found, including - caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+[]
+[]
+> > > > - Begin found for:blitzen_to_liquidluck, creating new SurvexBlock
+> > > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/blitzen_to_liquidluck <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+[]
+> > > > LEGS: 35 (previous: 4351, now:4386)
+> > > - Include path found, including - caves-1623/2017-cucc-28/freeatticflys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/freeatticflys
+[]
+[]
+> > > > - Begin found for:freeattic_flys, creating new SurvexBlock
+> > > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/freeatticflys <> caves-1623/2017-cucc-28/freeatticflys
+[]
+> > > > LEGS: 22 (previous: 4386, now:4408)
+> > > - Include path found, including - caves-1623/2017-cucc-28/ulysses_to_toto
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.98828125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_toto
+[]
+[]
+> > > > - Begin found for:ulysses_to_toto, creating new SurvexBlock
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_toto <> caves-1623/2017-cucc-28/ulysses_to_toto
+[]
+> > > > LEGS: 27 (previous: 4408, now:4435)
+> > > - Include path found, including - caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+[]
+[]
+> > > > - Begin found for:toto_to_crystalcrumble, creating new SurvexBlock
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/toto_to_crystalcrumble <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+[]
+> > > > LEGS: 14 (previous: 4435, now:4449)
+> > > - Include path found, including - caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+[]
+[]
+> > > > - Begin found for:ulysses_to_colericchamber, creating new SurvexBlock
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_colericchamber <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+[]
+> > > > LEGS: 7 (previous: 4449, now:4456)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble
+[]
+[]
+> > > > - Begin found for:rubblerumble, creating new SurvexBlock
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/rubblerumble <> caves-1623/2017-cucc-28/rubblerumble
+[]
+> > > > LEGS: 12 (previous: 4456, now:4468)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble3
+[]
+[]
+> > > > - Begin found for:rubblerumble3, creating new SurvexBlock
+> > > > > - MEM:47.9921875 Reading. parent:caves-1623/2017-cucc-28/rubblerumble3 <> caves-1623/2017-cucc-28/rubblerumble3
+[]
+> > > > LEGS: 18 (previous: 4468, now:4486)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble2
+[]
+[]
+> > > > - Begin found for:rubblerumble2, creating new SurvexBlock
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/rubblerumble2 <> caves-1623/2017-cucc-28/rubblerumble2
+[]
+> > > > LEGS: 9 (previous: 4486, now:4495)
+> > > - Include path found, including - caves-1623/2017-cucc-28/kublakhan
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/kublakhan
+[]
+[]
+> > > > - Begin found for:kublakhan, creating new SurvexBlock
+> > > > > - MEM:48.01953125 Reading. parent:caves-1623/2017-cucc-28/kublakhan <> caves-1623/2017-cucc-28/kublakhan
+[]
+> > > > LEGS: 36 (previous: 4495, now:4531)
+> > > - Include path found, including - caves-1623/2017-cucc-28/miraclemaze1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.02734375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze1
+[]
+[]
+> > > > - Begin found for:miraclemaze1, creating new SurvexBlock
+> > > > > - MEM:48.02734375 Reading. parent:caves-1623/2017-cucc-28/miraclemaze1 <> caves-1623/2017-cucc-28/miraclemaze1
+[]
+> > > > LEGS: 49 (previous: 4531, now:4580)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber1
+[]
+[]
+> > > > - Begin found for:coconutchamber1, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/coconutchamber1 <> caves-1623/2017-cucc-28/coconutchamber1
+[]
+> > > > LEGS: 12 (previous: 4580, now:4592)
+> > > - Include path found, including - caves-1623/2017-cucc-28/bigbastard
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/bigbastard
+[]
+[]
+> > > > - Begin found for:bigbastard, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/bigbastard <> caves-1623/2017-cucc-28/bigbastard
+[]
+> > > > LEGS: 2 (previous: 4592, now:4594)
+> > > - Include path found, including - caves-1623/2017-cucc-28/miraclemaze2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze2
+[]
+[]
+> > > > - Begin found for:miraclemaze2, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/miraclemaze2 <> caves-1623/2017-cucc-28/miraclemaze2
+[]
+> > > > LEGS: 10 (previous: 4594, now:4604)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber2
+[]
+[]
+> > > > - Begin found for:coconutchamber2, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/coconutchamber2 <> caves-1623/2017-cucc-28/coconutchamber2
+[]
+> > > > LEGS: 13 (previous: 4604, now:4617)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber3
+[]
+[]
+> > > > - Begin found for:coconutchamber3, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/coconutchamber3 <> caves-1623/2017-cucc-28/coconutchamber3
+[]
+> > > > LEGS: 14 (previous: 4617, now:4631)
+> > > - Include path found, including - caves-1623/2017-cucc-28/gardeningschl
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/gardeningschl
+[]
+[]
+> > > > - Begin found for:gardeningschool, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/gardeningschl <> caves-1623/2017-cucc-28/gardeningschl
+[]
+> > > > LEGS: 13 (previous: 4631, now:4644)
+> > > - Include path found, including - caves-1623/2017-cucc-28/pushderig
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/pushderig
+[]
+[]
+> > > > - Begin found for:pushderig, creating new SurvexBlock
+> > > > > - MEM:48.03125 Reading. parent:caves-1623/2017-cucc-28/pushderig <> caves-1623/2017-cucc-28/pushderig
+[]
+> > > > LEGS: 36 (previous: 4644, now:4680)
+> > > LEGS: 413 (previous: 4267, now:4680)
+> > - Include path found, including - caves-1623/2014-ms-14/driveneast
+> > - Match in DB (i) for cave 1623-2014-ms-14.
+[<Cave: 1623-287>]
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/2014-ms-14/driveneast
+[<Cave: 1623-287>]
+> > > - Begin found for:driveneast, creating new SurvexBlock
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2014-ms-14/driveneast <> caves-1623/2014-ms-14/driveneast
+[<Cave: 1623-287>]
+> > > LEGS: 14 (previous: 4680, now:4694)
+> > - Include path found, including - caves-1623/2018-aa-01/2018-aa-01
+> > - Match in DB (i) for cave 1623-2018-aa-01.
+[<Cave: 1623-2018-aa-01>]
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/2018-aa-01/2018-aa-01
+[<Cave: 1623-2018-aa-01>]
+> > > - Begin found for:2018-aa-01, creating new SurvexBlock
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2018-aa-01/2018-aa-01 <> caves-1623/2018-aa-01/2018-aa-01
+[<Cave: 1623-2018-aa-01>]
+> > > LEGS: 4 (previous: 4694, now:4698)
+> > - Include path found, including - caves-1623/2018-pf-01/2018-pf-01
+> > - Match in DB (i) for cave 1623-2018-pf-01.
+[]
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/2018-pf-01/2018-pf-01
+[]
+> > > - Begin found for:2018-pf-01, creating new SurvexBlock
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2018-pf-01/2018-pf-01 <> caves-1623/2018-pf-01/2018-pf-01
+[]
+> > > LEGS: 5 (previous: 4698, now:4703)
+> > - Include path found, including - caves-1623/2018-pf-02/2018-pf-02
+> > - Match in DB (i) for cave 1623-2018-pf-02.
+[]
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/2018-pf-02/2018-pf-02
+[]
+> > > - Begin found for:2018-pf-02, creating new SurvexBlock
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2018-pf-02/2018-pf-02 <> caves-1623/2018-pf-02/2018-pf-02
+[]
+> > > LEGS: 4 (previous: 4703, now:4707)
+> > - Include path found, including - caves-1623/82/82
+> > - Match in DB (i) for cave 1623-82.
+[<Cave: 1623-82>]
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/82/82
+[<Cave: 1623-82>]
+> > > - Begin found for:82, creating new SurvexBlock
+> > > > - MEM:48.03125 Reading. parent:caves-1623/82/82 <> caves-1623/82/82
+[<Cave: 1623-82>]
+> > > LEGS: 0 (previous: 4707, now:4707)
+> > - Include path found, including - caves-1623/2007-neu/2007-neu
+> > - NO Match in DB (i) for a cave for caves-1623/2007-neu/2007-neu
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/2007-neu/2007-neu
+> > > - No match (b) for caves-1623/2007-neu/2007-neu
+> > > - Begin found for:2007-neu, creating new SurvexBlock
+> > > > - MEM:48.03125 Reading. parent:caves-1623/2007-neu/2007-neu <> caves-1623/2007-neu/2007-neu
+> > > LEGS: 1 (previous: 4707, now:4708)
+> > - Include path found, including - caves-1623/gassischacht/gassischacht
+> > - NO Match in DB (i) for a cave for caves-1623/gassischacht/gassischacht
+> > > - MEM:48.03125 Reading. parent:kataster/1623 <> caves-1623/gassischacht/gassischacht
+> > > - No match (b) for caves-1623/gassischacht/gassischacht
+> > > - Begin found for:gassischacht, creating new SurvexBlock
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/gassischacht/gassischacht <> caves-1623/gassischacht/gassischacht
+> > > LEGS: 15 (previous: 4708, now:4723)
+> > - Include path found, including - caves-1623/BS17/BS17
+> > - NO Match in DB (i) for a cave for caves-1623/BS17/BS17
+> > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/BS17/BS17
+> > > - No match (b) for caves-1623/BS17/organ
+> > > - Begin found for:organ, creating new SurvexBlock
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/BS17
+> > > - Include path found, including - caves-1623/BS17/organfake
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organfake
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organfake
+> > > > - No match (b) for caves-1623/BS17/fake
+> > > > - Begin found for:fake, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/BS17/organfake <> caves-1623/BS17/organfake
+> > > > LEGS: 0 (previous: 4723, now:4723)
+> > > - Include path found, including - caves-1623/BS17/organ_entrance
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organ_entrance
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organ_entrance
+> > > > - No match (b) for caves-1623/BS17/entrance
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/BS17/organ_entrance <> caves-1623/BS17/organ_entrance
+> > > > LEGS: 34 (previous: 4723, now:4757)
+> > > LEGS: 34 (previous: 4723, now:4757)
+> > - Include path found, including - caves-1623/haldenloch/haldenloch
+> > - NO Match in DB (i) for a cave for caves-1623/haldenloch/haldenloch
+> > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/haldenloch
+> > > - Begin found for:haldenloch, creating new SurvexBlock
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/eingang
+> > > - Begin found for:eingang, creating new SurvexBlock
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > LEGS: 7 (previous: 4757, now:4764)
+> > - Include path found, including - caves-1623/gruenstein/gruenstein
+> > - NO Match in DB (i) for a cave for caves-1623/gruenstein/gruenstein
+> > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/gruenstein/gruenstein
+> > > - No match (b) for caves-1623/gruenstein/gruenstein
+> > > - Begin found for:gruenstein, creating new SurvexBlock
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/gruenstein/gruenstein <> caves-1623/gruenstein/gruenstein
+> > > LEGS: 37 (previous: 4764, now:4801)
+> - Include path found, including - caves-1623/caves-smk
+> - NO Match in DB (i) for a cave for caves-1623/caves-smk
+> > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/caves-smk
+> > - Include path found, including - caves-1623/links-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > - Include path found, including - caves-1623/links41-142
+> > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > - Include path found, including - caves-1623/links-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > - Include path found, including - caves-1623/links204-258
+> > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > - Include path found, including - caves-1623/links161-204
+> > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > - Include path found, including - caves-1623/caves-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-south
+> > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/caves-smk-south
+> > > - Include path found, including - caves-1623/links-smk-south
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > > - Include path found, including - caves-1623/links41-142
+> > > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > > - Include path found, including - caves-1623/32/32
+> > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > - MEM:48.05078125 Reading. parent:kataster/1623 <> caves-1623/32/32
+[<Cave: 1623-32>]
+> > > > - Begin found for:32, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/32 <> caves-1623/32/32
+[<Cave: 1623-32>]
+> > > > - Include path found, including - caves-1623/32/main
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/32 <> caves-1623/32/main
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:main, creating new SurvexBlock
+> > > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/main <> caves-1623/32/main
+[<Cave: 1623-32>]
+> > > > > LEGS: 62 (previous: 4801, now:4863)
+> > > > - Include path found, including - caves-1623/32/links
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/32 <> caves-1623/32/links
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:links, creating new SurvexBlock
+> > > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/links <> caves-1623/32/links
+[<Cave: 1623-32>]
+> > > > > LEGS: 109 (previous: 4863, now:4972)
+> > > > - Include path found, including - caves-1623/32/verteilerhalle
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/32 <> caves-1623/32/verteilerhalle
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:verteilerhalle, creating new SurvexBlock
+> > > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/verteilerhalle <> caves-1623/32/verteilerhalle
+[<Cave: 1623-32>]
+> > > > > LEGS: 47 (previous: 4972, now:5019)
+> > > > - Include path found, including - caves-1623/32/forever
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/32 <> caves-1623/32/forever
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:forever, creating new SurvexBlock
+> > > > > > - MEM:48.05078125 Reading. parent:caves-1623/32/forever <> caves-1623/32/forever
+[<Cave: 1623-32>]
+> > > > > LEGS: 64 (previous: 5019, now:5083)
+> > > > LEGS: 282 (previous: 4801, now:5083)
+> > > - Include path found, including - caves-1623/40/40
+> > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > - MEM:48.09375 Reading. parent:kataster/1623 <> caves-1623/40/40
+[<Cave: 1623-40>]
+> > > > - Begin found for:40, creating new SurvexBlock
+> > > > > - MEM:48.10546875 Reading. parent:caves-1623/40/40 <> caves-1623/40/40
+[<Cave: 1623-40>]
+> > > > - Include path found, including - caves-1623/40/40alt
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.125 Reading. parent:caves-1623/40/40 <> caves-1623/40/40alt
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/old/EisSVH
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.14453125 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/EisSVH
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:eissvh, creating new SurvexBlock
+> > > > > > > - MEM:48.16796875 Reading. parent:caves-1623/40/old/EisSVH <> caves-1623/40/old/EisSVH
+[<Cave: 1623-40>]
+> > > > > > LEGS: 81 (previous: 5083, now:5164)
+> > > > > - Include path found, including - caves-1623/40/old/spinne
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.16796875 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/spinne
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:spinne, creating new SurvexBlock
+> > > > > > > - MEM:48.1875 Reading. parent:caves-1623/40/old/spinne <> caves-1623/40/old/spinne
+[<Cave: 1623-40>]
+> > > > > > LEGS: 38 (previous: 5164, now:5202)
+> > > > > - Include path found, including - caves-1623/40/old/eismain
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.1875 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/eismain
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:eishohle, creating new SurvexBlock
+> > > > > > > - MEM:48.1875 Reading. parent:caves-1623/40/old/eismain <> caves-1623/40/old/eismain
+[<Cave: 1623-40>]
+> > > > > > LEGS: 47 (previous: 5202, now:5249)
+> > > > - Include path found, including - caves-1623/40/40arge
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.1875 Reading. parent:caves-1623/40/40 <> caves-1623/40/40arge
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/arge/elefantengang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.1875 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/elefantengang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:elefantengang, creating new SurvexBlock
+> > > > > > > - MEM:48.19140625 Reading. parent:caves-1623/40/arge/elefantengang <> caves-1623/40/arge/elefantengang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5249, now:5257)
+> > > > > - Include path found, including - caves-1623/40/arge/gruenerEingang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.19140625 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gruenerEingang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:gruenereingang, creating new SurvexBlock
+> > > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/arge/gruenerEingang <> caves-1623/40/arge/gruenerEingang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 19 (previous: 5257, now:5276)
+> > > > > - Include path found, including - caves-1623/40/arge/expressfinish
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/expressfinish
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:expressfinish, creating new SurvexBlock
+> > > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/arge/expressfinish <> caves-1623/40/arge/expressfinish
+[<Cave: 1623-40>]
+> > > > > > LEGS: 15 (previous: 5276, now:5291)
+> > > > > - Include path found, including - caves-1623/40/arge/koenigsschacht
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/koenigsschacht
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:koenigsschacht, creating new SurvexBlock
+> > > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/arge/koenigsschacht <> caves-1623/40/arge/koenigsschacht
+[<Cave: 1623-40>]
+> > > > > > LEGS: 7 (previous: 5291, now:5298)
+> > > > > - Include path found, including - caves-1623/40/arge/schotterland
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:schotterland, creating new SurvexBlock
+> > > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:bits, creating new SurvexBlock
+> > > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5313, now:5318)
+> > > > > - Include path found, including - caves-1623/40/arge/niete
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/niete
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:niete, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/niete <> caves-1623/40/arge/niete
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5318, now:5326)
+> > > > > - Include path found, including - caves-1623/40/arge/tiefergang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/tiefergang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:tiefergang, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/tiefergang <> caves-1623/40/arge/tiefergang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 13 (previous: 5326, now:5339)
+> > > > > - Include path found, including - caves-1623/40/arge/hanspfandlhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/hanspfandlhalle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:hanspfandlhalle, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/hanspfandlhalle <> caves-1623/40/arge/hanspfandlhalle
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5339, now:5347)
+> > > > > - Include path found, including - caves-1623/40/arge/wahnsinnsschaechte
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnsschaechte
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:wahnsinnsschaechte, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/wahnsinnsschaechte <> caves-1623/40/arge/wahnsinnsschaechte
+[<Cave: 1623-40>]
+> > > > > > LEGS: 41 (previous: 5347, now:5388)
+> > > > > - Include path found, including - caves-1623/40/arge/wahnsinnscanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnscanyon
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:wahnsinnscanyon, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/wahnsinnscanyon <> caves-1623/40/arge/wahnsinnscanyon
+[<Cave: 1623-40>]
+> > > > > > LEGS: 13 (previous: 5388, now:5401)
+> > > > > - Include path found, including - caves-1623/40/arge/thalhammerhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/thalhammerhalle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:thalhammerhalle, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/thalhammerhalle <> caves-1623/40/arge/thalhammerhalle
+[<Cave: 1623-40>]
+> > > > > > LEGS: 22 (previous: 5401, now:5423)
+> > > > > - Include path found, including - caves-1623/40/arge/flusstunnel
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/flusstunnel
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:flusstunnel, creating new SurvexBlock
+> > > > > > > - MEM:48.2109375 Reading. parent:caves-1623/40/arge/flusstunnel <> caves-1623/40/arge/flusstunnel
+[<Cave: 1623-40>]
+> > > > > > LEGS: 150 (previous: 5423, now:5573)
+> > > > > - Include path found, including - caves-1623/40/arge/gluehwuermchen
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gluehwuermchen
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:gluehwuermchen, creating new SurvexBlock
+> > > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/arge/gluehwuermchen <> caves-1623/40/arge/gluehwuermchen
+[<Cave: 1623-40>]
+> > > > > > LEGS: 19 (previous: 5573, now:5592)
+> > > > > - Include path found, including - caves-1623/40/arge/wanderer
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wanderer
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:wanderer, creating new SurvexBlock
+> > > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/arge/wanderer <> caves-1623/40/arge/wanderer
+[<Cave: 1623-40>]
+> > > > > > LEGS: 53 (previous: 5592, now:5645)
+> > > > > - Include path found, including - caves-1623/40/arge/silbercanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/silbercanyon
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:silbercanyon, creating new SurvexBlock
+> > > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/arge/silbercanyon <> caves-1623/40/arge/silbercanyon
+[<Cave: 1623-40>]
+> > > > > > LEGS: 58 (previous: 5645, now:5703)
+> > > > > - Include path found, including - caves-1623/40/arge/franzosenbiwak
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/franzosenbiwak
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:franzosenbiwak, creating new SurvexBlock
+> > > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/arge/franzosenbiwak <> caves-1623/40/arge/franzosenbiwak
+[<Cave: 1623-40>]
+> > > > > > LEGS: 27 (previous: 5703, now:5730)
+> > > > - Include path found, including - caves-1623/40/40cucc
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.21875 Reading. parent:caves-1623/40/40 <> caves-1623/40/40cucc
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/cucc/plastic
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/plastic
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:plastic, creating new SurvexBlock
+> > > > > > > - MEM:48.21875 Reading. parent:caves-1623/40/cucc/plastic <> caves-1623/40/cucc/plastic
+[<Cave: 1623-40>]
+> > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book p59"' caves-1623/40/cucc/plastic
+> > > > > > LEGS: 21 (previous: 5730, now:5751)
+> > > > > - Include path found, including - caves-1623/40/cucc/pov/pov
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.23046875 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/pov
+[<Cave: 1623-40>]
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/deviant
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.23828125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/deviant
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:deviant, creating new SurvexBlock
+> > > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/cucc/pov/deviant <> caves-1623/40/cucc/pov/deviant
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 92-95"' caves-1623/40/cucc/pov/deviant
+> > > > > > > LEGS: 17 (previous: 5751, now:5768)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/uuaway
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/uuaway
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:uuaway, creating new SurvexBlock
+> > > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/cucc/pov/uuaway <> caves-1623/40/cucc/pov/uuaway
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 96-97"' caves-1623/40/cucc/pov/uuaway
+> > > > > > > LEGS: 15 (previous: 5768, now:5783)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/dangle
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/dangle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:dangle, creating new SurvexBlock
+> > > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/cucc/pov/dangle <> caves-1623/40/cucc/pov/dangle
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 98-100"' caves-1623/40/cucc/pov/dangle
+> > > > > > > LEGS: 19 (previous: 5783, now:5802)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/eiscream
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/eiscream
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:eiscream, creating new SurvexBlock
+> > > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/cucc/pov/eiscream <> caves-1623/40/cucc/pov/eiscream
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 101-103"' caves-1623/40/cucc/pov/eiscream
+> > > > > > > LEGS: 23 (previous: 5802, now:5825)
+> > > > > - Include path found, including - caves-1623/40/cucc/oldway
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldway
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:oldway, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/cucc/oldway <> caves-1623/40/cucc/oldway
+[<Cave: 1623-40>]
+> > > > > > ! Unparsed [*ref]: '"1999 Not-KH survey book pp ?"' caves-1623/40/cucc/oldway
+> > > > > > LEGS: 3 (previous: 5825, now:5828)
+> > > > > - Include path found, including - caves-1623/40/cucc/mission
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:mission, creating new SurvexBlock
+> > > > > > > - MEM:48.28515625 Reading. parent:caves-1623/40/cucc/mission <> caves-1623/40/cucc/mission
+[<Cave: 1623-40>]
+> > > > > > LEGS: 9 (previous: 5828, now:5837)
+> > > > > - Include path found, including - caves-1623/40/cucc/mission5
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2890625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission5
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:mission5, creating new SurvexBlock
+> > > > > > > - MEM:48.29296875 Reading. parent:caves-1623/40/cucc/mission5 <> caves-1623/40/cucc/mission5
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5837, now:5842)
+> > > > > - Include path found, including - caves-1623/40/cucc/nmanip
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.30078125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/nmanip
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:nmanip, creating new SurvexBlock
+> > > > > > > - MEM:48.30078125 Reading. parent:caves-1623/40/cucc/nmanip <> caves-1623/40/cucc/nmanip
+[<Cave: 1623-40>]
+> > > > > > LEGS: 26 (previous: 5842, now:5868)
+> > > > > - Include path found, including - caves-1623/40/cucc/40h
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.30859375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/40h
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:40h, creating new SurvexBlock
+> > > > > > > - MEM:48.30859375 Reading. parent:caves-1623/40/cucc/40h <> caves-1623/40/cucc/40h
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5868, now:5873)
+> > > > > - Include path found, including - caves-1623/40/cucc/oldnew
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.30859375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:oldnew, creating new SurvexBlock
+> > > > > > > - MEM:48.30859375 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:bodge, creating new SurvexBlock
+> > > > > > > - MEM:48.30859375 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+> > > > > > LEGS: 1 (previous: 5878, now:5879)
+> > > > LEGS: 796 (previous: 5083, now:5879)
+> > > - Include path found, including - caves-1623/41/41
+> > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > - MEM:48.3203125 Reading. parent:kataster/1623 <> caves-1623/41/41
+[<Cave: 1623-41>]
+> > > > - Begin found for:41, creating new SurvexBlock
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/41
+[<Cave: 1623-41>]
+> > > > - Include path found, including - caves-1623/41/seiteng
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/seiteng
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:seiteng, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/seiteng <> caves-1623/41/seiteng
+[<Cave: 1623-41>]
+> > > > > LEGS: 23 (previous: 5879, now:5902)
+> > > > - Include path found, including - caves-1623/41/bonsai
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/bonsai
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bonsai, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/bonsai <> caves-1623/41/bonsai
+[<Cave: 1623-41>]
+> > > > > LEGS: 22 (previous: 5902, now:5924)
+> > > > - Include path found, including - caves-1623/41/verhall
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/verhall
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:verhall, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/verhall <> caves-1623/41/verhall
+[<Cave: 1623-41>]
+> > > > > LEGS: 38 (previous: 5924, now:5962)
+> > > > - Include path found, including - caves-1623/41/blakwite
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/blakwite
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:blakwite, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/blakwite <> caves-1623/41/blakwite
+[<Cave: 1623-41>]
+> > > > > LEGS: 54 (previous: 5962, now:6016)
+> > > > - Include path found, including - caves-1623/41/stream
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/stream
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:stream, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/stream <> caves-1623/41/stream
+[<Cave: 1623-41>]
+> > > > > LEGS: 18 (previous: 6016, now:6034)
+> > > > - Include path found, including - caves-1623/41/bigchamber
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/bigchamber
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bigchamber, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/bigchamber <> caves-1623/41/bigchamber
+[<Cave: 1623-41>]
+> > > > > LEGS: 60 (previous: 6034, now:6094)
+> > > > - Include path found, including - caves-1623/41/abstieg
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/abstieg
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:abstieg, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/abstieg <> caves-1623/41/abstieg
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6094, now:6109)
+> > > > - Include path found, including - caves-1623/41/runway
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/runway
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:runway, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/runway <> caves-1623/41/runway
+[<Cave: 1623-41>]
+> > > > > LEGS: 33 (previous: 6109, now:6142)
+> > > > - Include path found, including - caves-1623/41/treppe
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/treppe
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:treppe, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/treppe <> caves-1623/41/treppe
+[<Cave: 1623-41>]
+> > > > > LEGS: 9 (previous: 6142, now:6151)
+> > > > - Include path found, including - caves-1623/41/platte
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/41 <> caves-1623/41/platte
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:platte, creating new SurvexBlock
+> > > > > > - MEM:48.3203125 Reading. parent:caves-1623/41/platte <> caves-1623/41/platte
+[<Cave: 1623-41>]
+> > > > > LEGS: 43 (previous: 6151, now:6194)
+> > > > - Include path found, including - caves-1623/41/e41
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.328125 Reading. parent:caves-1623/41/41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:e41, creating new SurvexBlock
+> > > > > > - MEM:48.328125 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+> > > > > - Include path found, including - caves-1623/41/germanrt
+> > > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > > - MEM:48.328125 Reading. parent:caves-1623/41/e41 <> caves-1623/41/germanrt
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > > - Begin found for:germanrt, creating new SurvexBlock
+> > > > > > > - MEM:48.3359375 Reading. parent:caves-1623/41/germanrt <> caves-1623/41/germanrt
+[<Cave: 1623-41>]
+> > > > > > LEGS: 8 (previous: 6223, now:6231)
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bloop, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+> > > > > LEGS: 10 (previous: 6231, now:6241)
+> > > > - Include path found, including - caves-1623/41/steinsch
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/steinsch
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:steinsch, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/steinsch <> caves-1623/41/steinsch
+[<Cave: 1623-41>]
+> > > > > LEGS: 18 (previous: 6241, now:6259)
+> > > > - Include path found, including - caves-1623/41/din
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/din
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:din, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/din <> caves-1623/41/din
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6259, now:6273)
+> > > > - Include path found, including - caves-1623/41/extblatt
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/extblatt
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:extblatt, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/extblatt <> caves-1623/41/extblatt
+[<Cave: 1623-41>]
+> > > > > LEGS: 29 (previous: 6273, now:6302)
+> > > > - Include path found, including - caves-1623/41/extradin
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/extradin
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:extradin, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/extradin <> caves-1623/41/extradin
+[<Cave: 1623-41>]
+> > > > > LEGS: 10 (previous: 6302, now:6312)
+> > > > - Include path found, including - caves-1623/41/edelmean
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/edelmean
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:edelmean, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/edelmean <> caves-1623/41/edelmean
+[<Cave: 1623-41>]
+> > > > > LEGS: 11 (previous: 6312, now:6323)
+> > > > - Include path found, including - caves-1623/41/rondos
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/rondos
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:rondos, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/rondos <> caves-1623/41/rondos
+[<Cave: 1623-41>]
+> > > > > LEGS: 54 (previous: 6323, now:6377)
+> > > > - Include path found, including - caves-1623/41/german
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/german
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:german, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/german <> caves-1623/41/german
+[<Cave: 1623-41>]
+> > > > > LEGS: 39 (previous: 6377, now:6416)
+> > > > - Include path found, including - caves-1623/41/mond
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/mond
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:mond, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/mond <> caves-1623/41/mond
+[<Cave: 1623-41>]
+> > > > > LEGS: 47 (previous: 6416, now:6463)
+> > > > - Include path found, including - caves-1623/41/oktar
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/oktar
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:oktar, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/oktar <> caves-1623/41/oktar
+[<Cave: 1623-41>]
+> > > > > LEGS: 28 (previous: 6463, now:6491)
+> > > > - Include path found, including - caves-1623/41/megalo
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/megalo
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:megalo, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/megalo <> caves-1623/41/megalo
+[<Cave: 1623-41>]
+> > > > > LEGS: 23 (previous: 6491, now:6514)
+> > > > - Include path found, including - caves-1623/41/wdr
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/wdr
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:wdr, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/wdr <> caves-1623/41/wdr
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6514, now:6528)
+> > > > - Include path found, including - caves-1623/41/lampntot
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/lampntot
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:lampntot, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/lampntot <> caves-1623/41/lampntot
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6528, now:6543)
+> > > > - Include path found, including - caves-1623/41/manhattn
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/manhattn
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:manhattn, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/manhattn <> caves-1623/41/manhattn
+[<Cave: 1623-41>]
+> > > > > LEGS: 41 (previous: 6543, now:6584)
+> > > > - Include path found, including - caves-1623/41/entlueft
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/entlueft
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:entlueft, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/entlueft <> caves-1623/41/entlueft
+[<Cave: 1623-41>]
+> > > > > LEGS: 55 (previous: 6584, now:6639)
+> > > > - Include path found, including - caves-1623/41/glueck
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/glueck
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:glueck, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/glueck <> caves-1623/41/glueck
+[<Cave: 1623-41>]
+> > > > > LEGS: 77 (previous: 6639, now:6716)
+> > > > - Include path found, including - caves-1623/41/bus
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/bus
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bus, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/bus <> caves-1623/41/bus
+[<Cave: 1623-41>]
+> > > > > LEGS: 49 (previous: 6716, now:6765)
+> > > > - Include path found, including - caves-1623/41/morphan
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/41 <> caves-1623/41/morphan
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:morphan, creating new SurvexBlock
+> > > > > > - MEM:48.33984375 Reading. parent:caves-1623/41/morphan <> caves-1623/41/morphan
+[<Cave: 1623-41>]
+> > > > > LEGS: 59 (previous: 6765, now:6824)
+> > > > - Include path found, including - caves-1623/41/basic
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.34375 Reading. parent:caves-1623/41/41 <> caves-1623/41/basic
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:basic, creating new SurvexBlock
+> > > > > > - MEM:48.34375 Reading. parent:caves-1623/41/basic <> caves-1623/41/basic
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6824, now:6838)
+> > > > - Include path found, including - caves-1623/41/tincan
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.34375 Reading. parent:caves-1623/41/41 <> caves-1623/41/tincan
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:tincan, creating new SurvexBlock
+> > > > > > - MEM:48.34375 Reading. parent:caves-1623/41/tincan <> caves-1623/41/tincan
+[<Cave: 1623-41>]
+> > > > > LEGS: 22 (previous: 6838, now:6860)
+> > > > - Include path found, including - caves-1623/41/jade
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.34375 Reading. parent:caves-1623/41/41 <> caves-1623/41/jade
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:jade, creating new SurvexBlock
+> > > > > > - MEM:48.34375 Reading. parent:caves-1623/41/jade <> caves-1623/41/jade
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6860, now:6875)
+> > > > - Include path found, including - caves-1623/41/doplbodn
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.34375 Reading. parent:caves-1623/41/41 <> caves-1623/41/doplbodn
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:doplbodn, creating new SurvexBlock
+> > > > > > - MEM:48.34375 Reading. parent:caves-1623/41/doplbodn <> caves-1623/41/doplbodn
+[<Cave: 1623-41>]
+> > > > > LEGS: 33 (previous: 6875, now:6908)
+> > > > - Include path found, including - caves-1623/41/alice
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.34375 Reading. parent:caves-1623/41/41 <> caves-1623/41/alice
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:alice, creating new SurvexBlock
+> > > > > > - MEM:48.34765625 Reading. parent:caves-1623/41/alice <> caves-1623/41/alice
+[<Cave: 1623-41>]
+> > > > > LEGS: 62 (previous: 6908, now:6970)
+> > > > - Include path found, including - caves-1623/41/wetnwild
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.35546875 Reading. parent:caves-1623/41/41 <> caves-1623/41/wetnwild
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:wetnwild, creating new SurvexBlock
+> > > > > > - MEM:48.35546875 Reading. parent:caves-1623/41/wetnwild <> caves-1623/41/wetnwild
+[<Cave: 1623-41>]
+> > > > > LEGS: 75 (previous: 6970, now:7045)
+> > > > - Include path found, including - caves-1623/41/diaet
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.36328125 Reading. parent:caves-1623/41/41 <> caves-1623/41/diaet
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:diaet, creating new SurvexBlock
+> > > > > > - MEM:48.3671875 Reading. parent:caves-1623/41/diaet <> caves-1623/41/diaet
+[<Cave: 1623-41>]
+> > > > > LEGS: 104 (previous: 7045, now:7149)
+> > > > - Include path found, including - caves-1623/41/roehre
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37890625 Reading. parent:caves-1623/41/41 <> caves-1623/41/roehre
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:roehre, creating new SurvexBlock
+> > > > > > - MEM:48.37890625 Reading. parent:caves-1623/41/roehre <> caves-1623/41/roehre
+[<Cave: 1623-41>]
+> > > > > LEGS: 79 (previous: 7149, now:7228)
+> > > > - Include path found, including - caves-1623/41/rampe
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.38671875 Reading. parent:caves-1623/41/41 <> caves-1623/41/rampe
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:rampe, creating new SurvexBlock
+> > > > > > - MEM:48.38671875 Reading. parent:caves-1623/41/rampe <> caves-1623/41/rampe
+[<Cave: 1623-41>]
+> > > > > LEGS: 37 (previous: 7228, now:7265)
+> > > > LEGS: 1386 (previous: 5879, now:7265)
+> > > - Include path found, including - caves-1623/78/78
+> > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > - MEM:48.38671875 Reading. parent:kataster/1623 <> caves-1623/78/78
+[<Cave: 1623-78>]
+> > > > - Begin found for:78, creating new SurvexBlock
+> > > > > - MEM:48.38671875 Reading. parent:caves-1623/78/78 <> caves-1623/78/78
+[<Cave: 1623-78>]
+> > > > - Include path found, including - caves-1623/78/haupt
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.38671875 Reading. parent:caves-1623/78/78 <> caves-1623/78/haupt
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > > - MEM:48.38671875 Reading. parent:caves-1623/78/haupt <> caves-1623/78/haupt
+[<Cave: 1623-78>]
+> > > > > LEGS: 99 (previous: 7265, now:7364)
+> > > > - Include path found, including - caves-1623/78/nasse
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.38671875 Reading. parent:caves-1623/78/78 <> caves-1623/78/nasse
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:nasse, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/nasse <> caves-1623/78/nasse
+[<Cave: 1623-78>]
+> > > > > LEGS: 42 (previous: 7364, now:7406)
+> > > > - Include path found, including - caves-1623/78/eisdom
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisdom
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:eisdom, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/eisdom <> caves-1623/78/eisdom
+[<Cave: 1623-78>]
+> > > > > LEGS: 21 (previous: 7406, now:7427)
+> > > > - Include path found, including - caves-1623/78/forsten
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/forsten
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:forsten, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/forsten <> caves-1623/78/forsten
+[<Cave: 1623-78>]
+> > > > > LEGS: 23 (previous: 7427, now:7450)
+> > > > - Include path found, including - caves-1623/78/augsburg
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/augsburg
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:augsburg, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/augsburg <> caves-1623/78/augsburg
+[<Cave: 1623-78>]
+> > > > > LEGS: 26 (previous: 7450, now:7476)
+> > > > - Include path found, including - caves-1623/78/eisscha
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisscha
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:eisscha, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/eisscha <> caves-1623/78/eisscha
+[<Cave: 1623-78>]
+> > > > > LEGS: 5 (previous: 7476, now:7481)
+> > > > - Include path found, including - caves-1623/78/fossimea
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/fossimea
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:fossimea, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/fossimea <> caves-1623/78/fossimea
+[<Cave: 1623-78>]
+> > > > > LEGS: 73 (previous: 7481, now:7554)
+> > > > - Include path found, including - caves-1623/78/schwadom
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schwadom
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:schwadom, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/schwadom <> caves-1623/78/schwadom
+[<Cave: 1623-78>]
+> > > > > LEGS: 54 (previous: 7554, now:7608)
+> > > > - Include path found, including - caves-1623/78/stgneu
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/stgneu
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:stgneu, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/stgneu <> caves-1623/78/stgneu
+[<Cave: 1623-78>]
+> > > > > LEGS: 5 (previous: 7608, now:7613)
+> > > > - Include path found, including - caves-1623/78/bayberg
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/bayberg
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:bayberg, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/bayberg <> caves-1623/78/bayberg
+[<Cave: 1623-78>]
+> > > > > LEGS: 30 (previous: 7613, now:7643)
+> > > > - Include path found, including - caves-1623/78/keller
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/keller
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:keller, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/keller <> caves-1623/78/keller
+[<Cave: 1623-78>]
+> > > > > LEGS: 11 (previous: 7643, now:7654)
+> > > > - Include path found, including - caves-1623/78/e2
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/e2
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:e2, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/e2 <> caves-1623/78/e2
+[<Cave: 1623-78>]
+> > > > > LEGS: 17 (previous: 7654, now:7671)
+> > > > - Include path found, including - caves-1623/78/bartl
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/bartl
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:bartl, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/bartl <> caves-1623/78/bartl
+[<Cave: 1623-78>]
+> > > > > LEGS: 68 (previous: 7671, now:7739)
+> > > > - Include path found, including - caves-1623/78/fetzig
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/fetzig
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:fetzig, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/fetzig <> caves-1623/78/fetzig
+[<Cave: 1623-78>]
+> > > > > LEGS: 9 (previous: 7739, now:7748)
+> > > > - Include path found, including - caves-1623/78/verloren
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/verloren
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:verloren, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/verloren <> caves-1623/78/verloren
+[<Cave: 1623-78>]
+> > > > > LEGS: 13 (previous: 7748, now:7761)
+> > > > - Include path found, including - caves-1623/78/highway
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/highway
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:highway, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/highway <> caves-1623/78/highway
+[<Cave: 1623-78>]
+> > > > > LEGS: 148 (previous: 7761, now:7909)
+> > > > - Include path found, including - caves-1623/78/parallel
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/parallel
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:parallel, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/parallel <> caves-1623/78/parallel
+[<Cave: 1623-78>]
+> > > > > LEGS: 22 (previous: 7909, now:7931)
+> > > > - Include path found, including - caves-1623/78/allkaese
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/allkaese
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:allkaese, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/allkaese <> caves-1623/78/allkaese
+[<Cave: 1623-78>]
+> > > > > LEGS: 78 (previous: 7931, now:8009)
+> > > > - Include path found, including - caves-1623/78/schnaps
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schnaps
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:schnaps, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/schnaps <> caves-1623/78/schnaps
+[<Cave: 1623-78>]
+> > > > > LEGS: 35 (previous: 8009, now:8044)
+> > > > - Include path found, including - caves-1623/78/standard
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/standard
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:standard, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/standard <> caves-1623/78/standard
+[<Cave: 1623-78>]
+> > > > > LEGS: 92 (previous: 8044, now:8136)
+> > > > - Include path found, including - caves-1623/78/schlepp
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schlepp
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:schlepp, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/schlepp <> caves-1623/78/schlepp
+[<Cave: 1623-78>]
+> > > > > LEGS: 23 (previous: 8136, now:8159)
+> > > > - Include path found, including - caves-1623/78/igramul
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/igramul
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:igramul, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/igramul <> caves-1623/78/igramul
+[<Cave: 1623-78>]
+> > > > > LEGS: 31 (previous: 8159, now:8190)
+> > > > - Include path found, including - caves-1623/78/spazier
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/spazier
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:spazier, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/78/spazier <> caves-1623/78/spazier
+[<Cave: 1623-78>]
+> > > > > LEGS: 61 (previous: 8190, now:8251)
+> > > > - Include path found, including - caves-1623/78/galakt
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/78/78 <> caves-1623/78/galakt
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:galakt, creating new SurvexBlock
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/78/galakt <> caves-1623/78/galakt
+[<Cave: 1623-78>]
+> > > > > LEGS: 84 (previous: 8251, now:8335)
+> > > > - Include path found, including - caves-1623/78/steinbl
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/78/78 <> caves-1623/78/steinbl
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:steinbl, creating new SurvexBlock
+> > > > > > - MEM:48.40234375 Reading. parent:caves-1623/78/steinbl <> caves-1623/78/steinbl
+[<Cave: 1623-78>]
+> > > > > LEGS: 20 (previous: 8335, now:8355)
+> > > > - Include path found, including - caves-1623/78/rausch
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.40234375 Reading. parent:caves-1623/78/78 <> caves-1623/78/rausch
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:rausch, creating new SurvexBlock
+> > > > > > - MEM:48.40234375 Reading. parent:caves-1623/78/rausch <> caves-1623/78/rausch
+[<Cave: 1623-78>]
+> > > > > LEGS: 27 (previous: 8355, now:8382)
+> > > > - Include path found, including - caves-1623/78/comeback
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.4375 Reading. parent:caves-1623/78/78 <> caves-1623/78/comeback
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:comeback, creating new SurvexBlock
+> > > > > > - MEM:48.4375 Reading. parent:caves-1623/78/comeback <> caves-1623/78/comeback
+[<Cave: 1623-78>]
+> > > > > LEGS: 39 (previous: 8382, now:8421)
+> > > > LEGS: 1156 (previous: 7265, now:8421)
+> > > - Include path found, including - caves-1623/87/87
+> > > - Match in DB (i) for cave 1623-87.
+[]
+> > > > - MEM:48.4375 Reading. parent:kataster/1623 <> caves-1623/87/87
+[]
+> > > > - Begin found for:87, creating new SurvexBlock
+> > > > > - MEM:48.4375 Reading. parent:caves-1623/87/87 <> caves-1623/87/87
+[]
+> > > > LEGS: 48 (previous: 8421, now:8469)
+> > > - Include path found, including - caves-1623/88/88
+> > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > - MEM:48.49609375 Reading. parent:kataster/1623 <> caves-1623/88/88
+[<Cave: 1623-88>]
+> > > > - Begin found for:88, creating new SurvexBlock
+> > > > > - MEM:48.51953125 Reading. parent:caves-1623/88/88 <> caves-1623/88/88
+[<Cave: 1623-88>]
+> > > > - Include path found, including - caves-1623/88/lerche1
+> > > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > > - MEM:48.546875 Reading. parent:caves-1623/88/88 <> caves-1623/88/lerche1
+[<Cave: 1623-88>]
+[<Cave: 1623-88>]
+> > > > > - Begin found for:lerche1, creating new SurvexBlock
+> > > > > > - MEM:48.59375 Reading. parent:caves-1623/88/lerche1 <> caves-1623/88/lerche1
+[<Cave: 1623-88>]
+> > > > > LEGS: 214 (previous: 8469, now:8683)
+> > > > - Include path found, including - caves-1623/88/sophy
+> > > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > > - MEM:48.59375 Reading. parent:caves-1623/88/88 <> caves-1623/88/sophy
+[<Cave: 1623-88>]
+[<Cave: 1623-88>]
+> > > > > - Begin found for:sophy, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/88/sophy <> caves-1623/88/sophy
+[<Cave: 1623-88>]
+> > > > > LEGS: 7 (previous: 8683, now:8690)
+> > > > LEGS: 221 (previous: 8469, now:8690)
+> > > - Include path found, including - caves-1623/115/115
+> > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > - MEM:48.59765625 Reading. parent:kataster/1623 <> caves-1623/115/115
+[<Cave: 1623-115>]
+> > > > - Begin found for:115, creating new SurvexBlock
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115
+[<Cave: 1623-115>]
+> > > > - Include path found, including - caves-1623/115/115eing
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115eing
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:115eing, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115eing <> caves-1623/115/115eing
+[<Cave: 1623-115>]
+> > > > > LEGS: 112 (previous: 8690, now:8802)
+> > > > - Include path found, including - caves-1623/115/nutzlos
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/nutzlos
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:nutzlos, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/nutzlos <> caves-1623/115/nutzlos
+[<Cave: 1623-115>]
+> > > > > LEGS: 24 (previous: 8802, now:8826)
+> > > > - Include path found, including - caves-1623/115/babylon
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/babylon
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:babylon, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/babylon <> caves-1623/115/babylon
+[<Cave: 1623-115>]
+> > > > > LEGS: 71 (previous: 8826, now:8897)
+> > > > - Include path found, including - caves-1623/115/115haupt
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115haupt
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:115haupt, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115haupt <> caves-1623/115/115haupt
+[<Cave: 1623-115>]
+> > > > > LEGS: 32 (previous: 8897, now:8929)
+> > > > - Include path found, including - caves-1623/115/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/purgatory
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:purgatory, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/purgatory <> caves-1623/115/purgatory
+[<Cave: 1623-115>]
+> > > > > LEGS: 74 (previous: 8929, now:9003)
+> > > > - Include path found, including - caves-1623/115/babywind
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/babywind
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:babywind, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/babywind <> caves-1623/115/babywind
+[<Cave: 1623-115>]
+> > > > > LEGS: 45 (previous: 9003, now:9048)
+> > > > - Include path found, including - caves-1623/115/nebukad
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/nebukad
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:nebukad, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/nebukad <> caves-1623/115/nebukad
+[<Cave: 1623-115>]
+> > > > > LEGS: 36 (previous: 9048, now:9084)
+> > > > - Include path found, including - caves-1623/115/dartford
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/dartford
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:dartford, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/dartford <> caves-1623/115/dartford
+[<Cave: 1623-115>]
+> > > > > LEGS: 52 (previous: 9084, now:9136)
+> > > > - Include path found, including - caves-1623/115/koelndom
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/koelndom
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:koelndom, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/koelndom <> caves-1623/115/koelndom
+[<Cave: 1623-115>]
+> > > > > LEGS: 51 (previous: 9136, now:9187)
+> > > > - Include path found, including - caves-1623/115/confluence
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/confluence
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:confluence, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/confluence <> caves-1623/115/confluence
+[<Cave: 1623-115>]
+> > > > > LEGS: 38 (previous: 9187, now:9225)
+> > > > - Include path found, including - caves-1623/115/cucc/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/115 <> caves-1623/115/cucc/purgatory
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:cuccpurgatory, creating new SurvexBlock
+> > > > > > - MEM:48.59765625 Reading. parent:caves-1623/115/cucc/purgatory <> caves-1623/115/cucc/purgatory
+[<Cave: 1623-115>]
+> > > > > LEGS: 25 (previous: 9225, now:9250)
+> > > > - Include path found, including - caves-1623/115/115rest
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115 <> caves-1623/115/115rest
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:115rest, creating new SurvexBlock
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/115rest
+[<Cave: 1623-115>]
+> > > > > - Include path found, including - caves-1623/115/cucc/stream
+> > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/stream
+[<Cave: 1623-115>]
+> > > > > > - Include path found, including - caves-1623/115/cucc/12foot
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/12foot
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:12foot, creating new SurvexBlock
+> > > > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/cucc/12foot <> caves-1623/115/cucc/12foot
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 22 (previous: 9250, now:9272)
+> > > > > > - Include path found, including - caves-1623/115/cucc/confluence
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/confluence
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:confluence, creating new SurvexBlock
+> > > > > > > > - MEM:48.609375 Reading. parent:caves-1623/115/cucc/confluence <> caves-1623/115/cucc/confluence
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 59 (previous: 9272, now:9331)
+> > > > > > - Include path found, including - caves-1623/115/cucc/commando
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.61328125 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/commando
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:commando, creating new SurvexBlock
+> > > > > > > > - MEM:48.625 Reading. parent:caves-1623/115/cucc/commando <> caves-1623/115/cucc/commando
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 86 (previous: 9331, now:9417)
+> > > > > > - Include path found, including - caves-1623/115/cucc/orgasm
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/orgasm
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:orgasm, creating new SurvexBlock
+> > > > > > > > - MEM:48.625 Reading. parent:caves-1623/115/cucc/orgasm <> caves-1623/115/cucc/orgasm
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 65 (previous: 9417, now:9482)
+> > > > > LEGS: 232 (previous: 9250, now:9482)
+> > > > LEGS: 792 (previous: 8690, now:9482)
+> > > - Include path found, including - caves-1623/142/142
+> > > - Match in DB (i) for cave 1623-142.
+[<Cave: 1623-142>]
+> > > > - MEM:48.625 Reading. parent:kataster/1623 <> caves-1623/142/142
+[<Cave: 1623-142>]
+> > > > - Begin found for:142, creating new SurvexBlock
+> > > > > - MEM:48.640625 Reading. parent:caves-1623/142/142 <> caves-1623/142/142
+[<Cave: 1623-142>]
+> > > > LEGS: 124 (previous: 9482, now:9606)
+> > > - Include path found, including - caves-1623/143/143
+> > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > - MEM:48.640625 Reading. parent:kataster/1623 <> caves-1623/143/143
+[<Cave: 1623-143>]
+> > > > - Begin found for:143, creating new SurvexBlock
+> > > > > - MEM:48.640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/143
+[<Cave: 1623-143>]
+> > > > - Include path found, including - caves-1623/143/canyon
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.640625 Reading. parent:caves-1623/143/143 <> caves-1623/143/canyon
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:canyon, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/canyon <> caves-1623/143/canyon
+[<Cave: 1623-143>]
+> > > > > LEGS: 93 (previous: 9606, now:9699)
+> > > > - Include path found, including - caves-1623/143/brauner
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/brauner
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:brauner, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/brauner <> caves-1623/143/brauner
+[<Cave: 1623-143>]
+> > > > > LEGS: 15 (previous: 9699, now:9714)
+> > > > - Include path found, including - caves-1623/143/flammen
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/flammen
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:flammen, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/flammen <> caves-1623/143/flammen
+[<Cave: 1623-143>]
+> > > > > LEGS: 16 (previous: 9714, now:9730)
+> > > > - Include path found, including - caves-1623/143/haupt
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/haupt
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/haupt <> caves-1623/143/haupt
+[<Cave: 1623-143>]
+> > > > > LEGS: 26 (previous: 9730, now:9756)
+> > > > - Include path found, including - caves-1623/143/iqcanyon
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/iqcanyon
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:iqcanyon, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/iqcanyon <> caves-1623/143/iqcanyon
+[<Cave: 1623-143>]
+> > > > > LEGS: 42 (previous: 9756, now:9798)
+> > > > - Include path found, including - caves-1623/143/kuhwiese
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:kuhwiese, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:22a, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+> > > > > LEGS: 43 (previous: 9798, now:9841)
+> > > > - Include path found, including - caves-1623/143/rampe
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/rampe
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:rampe, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/rampe <> caves-1623/143/rampe
+[<Cave: 1623-143>]
+> > > > > LEGS: 53 (previous: 9841, now:9894)
+> > > > - Include path found, including - caves-1623/143/rutsche
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/rutsche
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:rutsche, creating new SurvexBlock
+> > > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/rutsche <> caves-1623/143/rutsche
+[<Cave: 1623-143>]
+> > > > > LEGS: 26 (previous: 9894, now:9920)
+> > > > - Include path found, including - caves-1623/143/doppelrohr
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.64453125 Reading. parent:caves-1623/143/143 <> caves-1623/143/doppelrohr
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:doppelrohr, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/doppelrohr <> caves-1623/143/doppelrohr
+[<Cave: 1623-143>]
+> > > > > LEGS: 28 (previous: 9920, now:9948)
+> > > > - Include path found, including - caves-1623/143/sophy
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/143 <> caves-1623/143/sophy
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:sophy, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/sophy <> caves-1623/143/sophy
+[<Cave: 1623-143>]
+> > > > > LEGS: 12 (previous: 9948, now:9960)
+> > > > - Include path found, including - caves-1623/143/hades
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/143 <> caves-1623/143/hades
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:hades, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/hades <> caves-1623/143/hades
+[<Cave: 1623-143>]
+> > > > > LEGS: 25 (previous: 9960, now:9985)
+> > > > - Include path found, including - caves-1623/143/troja
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/143 <> caves-1623/143/troja
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:troja, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/troja <> caves-1623/143/troja
+[<Cave: 1623-143>]
+> > > > > LEGS: 49 (previous: 9985, now:10034)
+> > > > - Include path found, including - caves-1623/143/hdp
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/143 <> caves-1623/143/hdp
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:hdp, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/hdp <> caves-1623/143/hdp
+[<Cave: 1623-143>]
+> > > > > LEGS: 7 (previous: 10034, now:10041)
+> > > > - Include path found, including - caves-1623/143/soich
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/143 <> caves-1623/143/soich
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:soich, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/143/soich <> caves-1623/143/soich
+[<Cave: 1623-143>]
+> > > > > LEGS: 6 (previous: 10041, now:10047)
+> > > > LEGS: 441 (previous: 9606, now:10047)
+> > > - Include path found, including - caves-1623/144/144
+> > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > - MEM:48.65234375 Reading. parent:kataster/1623 <> caves-1623/144/144
+[<Cave: 1623-144>]
+> > > > - Begin found for:144, creating new SurvexBlock
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/144/144 <> caves-1623/144/144
+[<Cave: 1623-144>]
+> > > > - Include path found, including - caves-1623/144/144ein
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/144/144 <> caves-1623/144/144ein
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:144ein, creating new SurvexBlock
+> > > > > > - MEM:48.65234375 Reading. parent:caves-1623/144/144ein <> caves-1623/144/144ein
+[<Cave: 1623-144>]
+> > > > > LEGS: 26 (previous: 10047, now:10073)
+> > > > - Include path found, including - caves-1623/144/144horiz
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.65234375 Reading. parent:caves-1623/144/144 <> caves-1623/144/144horiz
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:144horiz, creating new SurvexBlock
+> > > > > > - MEM:48.65625 Reading. parent:caves-1623/144/144horiz <> caves-1623/144/144horiz
+[<Cave: 1623-144>]
+> > > > > LEGS: 46 (previous: 10073, now:10119)
+> > > > - Include path found, including - caves-1623/144/144verb
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.65625 Reading. parent:caves-1623/144/144 <> caves-1623/144/144verb
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:144verb, creating new SurvexBlock
+> > > > > > - MEM:48.66796875 Reading. parent:caves-1623/144/144verb <> caves-1623/144/144verb
+[<Cave: 1623-144>]
+> > > > > LEGS: 49 (previous: 10119, now:10168)
+> > > > - Include path found, including - caves-1623/144/America
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.66796875 Reading. parent:caves-1623/144/144 <> caves-1623/144/America
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:america, creating new SurvexBlock
+> > > > > > - MEM:48.6796875 Reading. parent:caves-1623/144/America <> caves-1623/144/America
+[<Cave: 1623-144>]
+> > > > > LEGS: 117 (previous: 10168, now:10285)
+> > > > - Include path found, including - caves-1623/144/cuccrest
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6875 Reading. parent:caves-1623/144/144 <> caves-1623/144/cuccrest
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:cuccrest, creating new SurvexBlock
+> > > > > > - MEM:48.6875 Reading. parent:caves-1623/144/cuccrest <> caves-1623/144/cuccrest
+[<Cave: 1623-144>]
+> > > > > LEGS: 24 (previous: 10285, now:10309)
+> > > > - Include path found, including - caves-1623/144/ElfUhr
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6875 Reading. parent:caves-1623/144/144 <> caves-1623/144/ElfUhr
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:elfuhr, creating new SurvexBlock
+> > > > > > - MEM:48.6875 Reading. parent:caves-1623/144/ElfUhr <> caves-1623/144/ElfUhr
+[<Cave: 1623-144>]
+> > > > > LEGS: 18 (previous: 10309, now:10327)
+> > > > - Include path found, including - caves-1623/144/gang
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6875 Reading. parent:caves-1623/144/144 <> caves-1623/144/gang
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:gang, creating new SurvexBlock
+> > > > > > - MEM:48.6875 Reading. parent:caves-1623/144/gang <> caves-1623/144/gang
+[<Cave: 1623-144>]
+> > > > > LEGS: 88 (previous: 10327, now:10415)
+> > > > - Include path found, including - caves-1623/144/Meander
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6875 Reading. parent:caves-1623/144/144 <> caves-1623/144/Meander
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:meander, creating new SurvexBlock
+> > > > > > - MEM:48.6875 Reading. parent:caves-1623/144/Meander <> caves-1623/144/Meander
+[<Cave: 1623-144>]
+> > > > > LEGS: 98 (previous: 10415, now:10513)
+> > > > - Include path found, including - caves-1623/144/me2
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6875 Reading. parent:caves-1623/144/144 <> caves-1623/144/me2
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:me2, creating new SurvexBlock
+> > > > > > - MEM:48.6875 Reading. parent:caves-1623/144/me2 <> caves-1623/144/me2
+[<Cave: 1623-144>]
+> > > > > LEGS: 15 (previous: 10513, now:10528)
+> > > > LEGS: 481 (previous: 10047, now:10528)
+> > > - Include path found, including - caves-1623/158/158
+> > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > - MEM:48.6875 Reading. parent:kataster/1623 <> caves-1623/158/158
+[<Cave: 1623-158>]
+> > > > - Begin found for:158, creating new SurvexBlock
+> > > > > - MEM:48.6875 Reading. parent:caves-1623/158/158 <> caves-1623/158/158
+[<Cave: 1623-158>]
+> > > > - Include path found, including - caves-1623/158/nagellackentferner
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.69140625 Reading. parent:caves-1623/158/158 <> caves-1623/158/nagellackentferner
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:nagellackentferner, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/nagellackentferner <> caves-1623/158/nagellackentferner
+[<Cave: 1623-158>]
+> > > > > LEGS: 88 (previous: 10528, now:10616)
+> > > > - Include path found, including - caves-1623/158/bigberta
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/158 <> caves-1623/158/bigberta
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:bigberta, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/bigberta <> caves-1623/158/bigberta
+[<Cave: 1623-158>]
+> > > > > LEGS: 71 (previous: 10616, now:10687)
+> > > > - Include path found, including - caves-1623/158/fruttidelmare
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/158 <> caves-1623/158/fruttidelmare
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:fruttidelmare, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/fruttidelmare <> caves-1623/158/fruttidelmare
+[<Cave: 1623-158>]
+> > > > > LEGS: 40 (previous: 10687, now:10727)
+> > > > - Include path found, including - caves-1623/158/lasvegas
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.73046875 Reading. parent:caves-1623/158/158 <> caves-1623/158/lasvegas
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:lasvegas, creating new SurvexBlock
+> > > > > > - MEM:48.73046875 Reading. parent:caves-1623/158/lasvegas <> caves-1623/158/lasvegas
+[<Cave: 1623-158>]
+> > > > > LEGS: 91 (previous: 10727, now:10818)
+> > > > LEGS: 290 (previous: 10528, now:10818)
+> > > - Include path found, including - caves-1623/216/216
+> > > - Match in DB (i) for cave 1623-216.
+[<Cave: 1623-216>]
+> > > > - MEM:48.73046875 Reading. parent:kataster/1623 <> caves-1623/216/216
+[<Cave: 1623-216>]
+> > > > - Begin found for:216, creating new SurvexBlock
+> > > > > - MEM:48.734375 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+[<Cave: 1623-216>]
+[<Cave: 1623-216>]
+> > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > - MEM:48.734375 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+[<Cave: 1623-216>]
+> > > > LEGS: 1 (previous: 10835, now:10836)
+> > - Include path found, including - caves-1623/caves-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-north
+> > > - MEM:48.734375 Reading. parent:kataster/1623 <> caves-1623/caves-smk-north
+> > > - Include path found, including - caves-1623/links-smk-north
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > > - MEM:48.734375 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > > - Include path found, including - caves-1623/links204-258
+> > > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > > - MEM:48.734375 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > > - Include path found, including - caves-1623/links161-204
+> > > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > > - MEM:48.734375 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > > - Include path found, including - caves-1623/83/83
+> > > - Match in DB (i) for cave 1623-83.
+[<Cave: 1623-83>]
+> > > > - MEM:48.734375 Reading. parent:kataster/1623 <> caves-1623/83/83
+[<Cave: 1623-83>]
+> > > > - Begin found for:107entsingleleg, creating new SurvexBlock
+> > > > > - MEM:48.734375 Reading. parent:caves-1623/83/83 <> caves-1623/83/83
+[<Cave: 1623-83>]
+> > > > LEGS: 1 (previous: 10836, now:10837)
+> > > - Include path found, including - caves-1623/107/107
+> > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > - MEM:48.76953125 Reading. parent:kataster/1623 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > - Begin found for:107, creating new SurvexBlock
+> > > > > - MEM:48.7890625 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > - Include path found, including - caves-1623/107/ent
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.828125 Reading. parent:caves-1623/107/107 <> caves-1623/107/ent
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > > - MEM:48.87109375 Reading. parent:caves-1623/107/ent <> caves-1623/107/ent
+[<Cave: 1623-107>]
+> > > > > LEGS: 20 (previous: 10837, now:10857)
+> > > > - Include path found, including - caves-1623/107/fake
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.890625 Reading. parent:caves-1623/107/107 <> caves-1623/107/fake
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for:fake, creating new SurvexBlock
+> > > > > > - MEM:48.89453125 Reading. parent:caves-1623/107/fake <> caves-1623/107/fake
+[<Cave: 1623-107>]
+> > > > > LEGS: 0 (previous: 10857, now:10857)
+> > > > - Include path found, including - caves-1623/107/ext
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.89453125 Reading. parent:caves-1623/107/107 <> caves-1623/107/ext
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for:ext, creating new SurvexBlock
+> > > > > > - MEM:48.8984375 Reading. parent:caves-1623/107/ext <> caves-1623/107/ext
+[<Cave: 1623-107>]
+> > > > > LEGS: 20 (previous: 10857, now:10877)
+[<Cave: 1623-107>]
+> > > > - Begin found for:connectingleg, creating new SurvexBlock
+> > > > > - MEM:48.90234375 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > LEGS: 1 (previous: 10877, now:10878)
+> > > - Include path found, including - caves-1623/136/136-correct
+> > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > - MEM:48.90234375 Reading. parent:kataster/1623 <> caves-1623/136/136-correct
+[<Cave: 1623-136>]
+> > > > - Begin found for:136, creating new SurvexBlock
+> > > > > - MEM:48.90234375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/136-correct
+[<Cave: 1623-136>]
+> > > > - Include path found, including - caves-1623/136/main
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.90234375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/main
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/main <> caves-1623/136/main
+[<Cave: 1623-136>]
+> > > > > LEGS: 32 (previous: 10878, now:10910)
+> > > > - Include path found, including - caves-1623/136/ents
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/ents
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:morent, creating new SurvexBlock
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/ents <> caves-1623/136/ents
+[<Cave: 1623-136>]
+> > > > > LEGS: 11 (previous: 10910, now:10921)
+> > > > - Include path found, including - caves-1623/136/chile/chile
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/chile/chile
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:chile, creating new SurvexBlock
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/chile
+[<Cave: 1623-136>]
+> > > > > - Include path found, including - caves-1623/136/chile/oatso
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/oatso
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:oatso, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/oatso <> caves-1623/136/chile/oatso
+[<Cave: 1623-136>]
+> > > > > > LEGS: 13 (previous: 10921, now:10934)
+> > > > > - Include path found, including - caves-1623/136/chile/ovrshoot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:overshoot, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 10 (previous: 10934, now:10944)
+> > > > > - Include path found, including - caves-1623/136/chile/lostspce
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:lostinspace, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+> > > > > > LEGS: 13 (previous: 10944, now:10957)
+> > > > > - Include path found, including - caves-1623/136/chile/windybot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/windybot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:windybottom, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/windybot <> caves-1623/136/chile/windybot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 4 (previous: 10957, now:10961)
+> > > > > - Include path found, including - caves-1623/136/chile/breeze
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/breeze
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:breezethrough, creating new SurvexBlock
+> > > > > > > - MEM:48.91015625 Reading. parent:caves-1623/136/chile/breeze <> caves-1623/136/chile/breeze
+[<Cave: 1623-136>]
+> > > > > > LEGS: 9 (previous: 10961, now:10970)
+> > > > > - Include path found, including - caves-1623/136/chile/watershoot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/watershoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:watershoot, creating new SurvexBlock
+> > > > > > > - MEM:48.9140625 Reading. parent:caves-1623/136/chile/watershoot <> caves-1623/136/chile/watershoot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 12 (previous: 10970, now:10982)
+> > > > > - Include path found, including - caves-1623/136/chile/leftroute
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91796875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/leftroute
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:leftroute, creating new SurvexBlock
+> > > > > > > - MEM:48.91796875 Reading. parent:caves-1623/136/chile/leftroute <> caves-1623/136/chile/leftroute
+[<Cave: 1623-136>]
+> > > > > > LEGS: 7 (previous: 10982, now:10989)
+> > > > > - Include path found, including - caves-1623/136/chile/runnyb
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.91796875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/runnyb
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:runnybowels, creating new SurvexBlock
+> > > > > > > - MEM:48.91796875 Reading. parent:caves-1623/136/chile/runnyb <> caves-1623/136/chile/runnyb
+[<Cave: 1623-136>]
+> > > > > > LEGS: 38 (previous: 10989, now:11027)
+> > > > > - Include path found, including - caves-1623/136/chile/carpetworld
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/carpetworld
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:carpetworld, creating new SurvexBlock
+> > > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/carpetworld <> caves-1623/136/chile/carpetworld
+[<Cave: 1623-136>]
+> > > > > > LEGS: 7 (previous: 11027, now:11034)
+> > > > > - Include path found, including - caves-1623/136/chile/pebbled
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/pebbled
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:pebbled1, creating new SurvexBlock
+> > > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/pebbled <> caves-1623/136/chile/pebbled
+[<Cave: 1623-136>]
+> > > > > > LEGS: 8 (previous: 11034, now:11042)
+> > > > > - Include path found, including - caves-1623/136/chile/left2route
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/left2route
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:left2route, creating new SurvexBlock
+> > > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/left2route <> caves-1623/136/chile/left2route
+[<Cave: 1623-136>]
+> > > > > > LEGS: 9 (previous: 11042, now:11051)
+> > > > > - Include path found, including - caves-1623/136/chile/aven
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:aven, creating new SurvexBlock
+> > > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/aven <> caves-1623/136/chile/aven
+[<Cave: 1623-136>]
+> > > > > > LEGS: 4 (previous: 11051, now:11055)
+> > > > > - Include path found, including - caves-1623/136/chile/aven2
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven2
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:aven2, creating new SurvexBlock
+> > > > > > > - MEM:48.921875 Reading. parent:caves-1623/136/chile/aven2 <> caves-1623/136/chile/aven2
+[<Cave: 1623-136>]
+> > > > > > LEGS: 3 (previous: 11055, now:11058)
+> > > > > LEGS: 137 (previous: 10921, now:11058)
+> > > > - Include path found, including - caves-1623/136/forbiden
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.9296875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/forbiden
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:hotmc, creating new SurvexBlock
+> > > > > > - MEM:48.9296875 Reading. parent:caves-1623/136/forbiden <> caves-1623/136/forbiden
+[<Cave: 1623-136>]
+> > > > > LEGS: 28 (previous: 11058, now:11086)
+> > > > - Include path found, including - caves-1623/136/gravel
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.984375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/gravel
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:gravel, creating new SurvexBlock
+> > > > > > - MEM:48.984375 Reading. parent:caves-1623/136/gravel <> caves-1623/136/gravel
+[<Cave: 1623-136>]
+> > > > > LEGS: 21 (previous: 11086, now:11107)
+> > > > - Include path found, including - caves-1623/136/footconn
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.984375 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/footconn
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:footconn, creating new SurvexBlock
+> > > > > > - MEM:48.984375 Reading. parent:caves-1623/136/footconn <> caves-1623/136/footconn
+[<Cave: 1623-136>]
+> > > > > LEGS: 5 (previous: 11107, now:11112)
+> > > > LEGS: 234 (previous: 10878, now:11112)
+> > > - Include path found, including - caves-1623/161/161
+> > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > - MEM:48.984375 Reading. parent:kataster/1623 <> caves-1623/161/161
+[<Cave: 1623-161>]
+> > > > - Begin found for:161, creating new SurvexBlock
+> > > > > - MEM:48.984375 Reading. parent:caves-1623/161/161 <> caves-1623/161/161
+[<Cave: 1623-161>]
+> > > > - Include path found, including - caves-1623/161/top/alltop
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:48.984375 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/alltop
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/top/entrance
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:48.984375 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/entrance
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > > > - MEM:48.984375 Reading. parent:caves-1623/161/top/entrance <> caves-1623/161/top/entrance
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 11112, now:11127)
+> > > > > - Include path found, including - caves-1623/161/top/oldp2
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/oldp2
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldp2, creating new SurvexBlock
+> > > > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/top/oldp2 <> caves-1623/161/top/oldp2
+[<Cave: 1623-161>]
+> > > > > > LEGS: 3 (previous: 11127, now:11130)
+> > > > > - Include path found, including - caves-1623/161/top/snot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/snot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:snot, creating new SurvexBlock
+> > > > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/top/snot <> caves-1623/161/top/snot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11130, now:11154)
+> > > > - Include path found, including - caves-1623/161/lhr/alllhr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/alllhr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/lhr/lhroute
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/lhroute
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:lh, creating new SurvexBlock
+> > > > > > > - MEM:48.98828125 Reading. parent:caves-1623/161/lhr/lhroute <> caves-1623/161/lhr/lhroute
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 11154, now:11177)
+> > > > > - Include path found, including - caves-1623/161/lhr/ragnarok
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.0390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ragnarok
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ragnarok, creating new SurvexBlock
+> > > > > > > - MEM:49.0390625 Reading. parent:caves-1623/161/lhr/ragnarok <> caves-1623/161/lhr/ragnarok
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11177, now:11188)
+> > > > > - Include path found, including - caves-1623/161/lhr/drunk
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.0390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:drunk, creating new SurvexBlock
+> > > > > > > - MEM:49.04296875 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:49.046875 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11188, now:11200)
+> > > > > - Include path found, including - caves-1623/161/lhr/gparty
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:gparty, creating new SurvexBlock
+> > > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1st, creating new SurvexBlock
+> > > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 11200, now:11210)
+> > > > > - Include path found, including - caves-1623/161/lhr/powerstn
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/powerstn
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:powerstn, creating new SurvexBlock
+> > > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/lhr/powerstn <> caves-1623/161/lhr/powerstn
+[<Cave: 1623-161>]
+> > > > > > LEGS: 29 (previous: 11210, now:11239)
+> > > > > - Include path found, including - caves-1623/161/lhr/arrow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ptchrp, creating new SurvexBlock
+> > > > > > > - MEM:49.05078125 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:49.0546875 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11239, now:11263)
+> > > > > - Include path found, including - caves-1623/161/lhr/ambi
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.09765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ambi, creating new SurvexBlock
+> > > > > > > - MEM:49.09765625 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 11263, now:11271)
+> > > > - Include path found, including - caves-1623/161/rhr/allrhr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/allrhr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/rhr/chunnel
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/chunnel
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chunnel, creating new SurvexBlock
+> > > > > > > - MEM:49.10546875 Reading. parent:caves-1623/161/rhr/chunnel <> caves-1623/161/rhr/chunnel
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 11271, now:11292)
+> > > > > - Include path found, including - caves-1623/161/rhr/bladerun
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/bladerun
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bladerun, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/bladerun <> caves-1623/161/rhr/bladerun
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 11292, now:11312)
+> > > > > - Include path found, including - caves-1623/161/rhr/vesta
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/vesta
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:vesta, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/vesta <> caves-1623/161/rhr/vesta
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11312, now:11324)
+> > > > > - Include path found, including - caves-1623/161/rhr/pog
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pog
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:potgold, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/pog <> caves-1623/161/rhr/pog
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 11324, now:11362)
+> > > > > - Include path found, including - caves-1623/161/rhr/pitpend
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pitpend, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11362, now:11369)
+> > > > > - Include path found, including - caves-1623/161/rhr/tblocks
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/tblocks
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:knossos, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/rhr/tblocks <> caves-1623/161/rhr/tblocks
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11369, now:11382)
+> > > > > - Include path found, including - caves-1623/161/rhr/olympus
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:olympus, creating new SurvexBlock
+> > > > > > > - MEM:49.15625 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11382, now:11393)
+> > > > > - Include path found, including - caves-1623/161/rhr/dreamtme
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/dreamtme
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:boltconn2, creating new SurvexBlock
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/dreamtme <> caves-1623/161/rhr/dreamtme
+[<Cave: 1623-161>]
+> > > > > > LEGS: 2 (previous: 11393, now:11395)
+> > > > > - Include path found, including - caves-1623/161/rhr/deepslp
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/deepslp
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:deepsleep, creating new SurvexBlock
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/deepslp <> caves-1623/161/rhr/deepslp
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11395, now:11407)
+> > > > > - Include path found, including - caves-1623/161/rhr/gnome
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/gnome
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:gnome, creating new SurvexBlock
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/gnome <> caves-1623/161/rhr/gnome
+[<Cave: 1623-161>]
+> > > > > > LEGS: 27 (previous: 11407, now:11434)
+> > > > > - Include path found, including - caves-1623/161/rhr/notwhat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/notwhat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:notwhat, creating new SurvexBlock
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/notwhat <> caves-1623/161/rhr/notwhat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 51 (previous: 11434, now:11485)
+> > > > > - Include path found, including - caves-1623/161/rhr/nights
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/nights
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:nightsoil, creating new SurvexBlock
+> > > > > > > - MEM:49.17578125 Reading. parent:caves-1623/161/rhr/nights <> caves-1623/161/rhr/nights
+[<Cave: 1623-161>]
+> > > > > > LEGS: 43 (previous: 11485, now:11528)
+> > > > > - Include path found, including - caves-1623/161/rhr/oral
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.19921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/oral
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oral, creating new SurvexBlock
+> > > > > > > - MEM:49.19921875 Reading. parent:caves-1623/161/rhr/oral <> caves-1623/161/rhr/oral
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 11528, now:11547)
+> > > > > - Include path found, including - caves-1623/161/rhr/splat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.234375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/splat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:splattery, creating new SurvexBlock
+> > > > > > > - MEM:49.234375 Reading. parent:caves-1623/161/rhr/splat <> caves-1623/161/rhr/splat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 11547, now:11573)
+> > > > > - Include path found, including - caves-1623/161/rhr/revenge
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.23828125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/revenge
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:revenge, creating new SurvexBlock
+> > > > > > > - MEM:49.2421875 Reading. parent:caves-1623/161/rhr/revenge <> caves-1623/161/rhr/revenge
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11573, now:11585)
+> > > > > - Include path found, including - caves-1623/161/rhr/doubting
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/doubting
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:doubting, creating new SurvexBlock
+> > > > > > > - MEM:49.2421875 Reading. parent:caves-1623/161/rhr/doubting <> caves-1623/161/rhr/doubting
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 11585, now:11623)
+> > > > - Include path found, including - caves-1623/161/north/allnth
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.2421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/allnth
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/north/yapate
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/yapate
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:yapate, creating new SurvexBlock
+> > > > > > > - MEM:49.25 Reading. parent:caves-1623/161/north/yapate <> caves-1623/161/north/yapate
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 11623, now:11639)
+> > > > > - Include path found, including - caves-1623/161/north/flapjack
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.25 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flapjack
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:flapjack, creating new SurvexBlock
+> > > > > > > - MEM:49.25 Reading. parent:caves-1623/161/north/flapjack <> caves-1623/161/north/flapjack
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 11639, now:11664)
+> > > > > - Include path found, including - caves-1623/161/north/toomuch
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.25 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:toomuch, creating new SurvexBlock
+> > > > > > > - MEM:49.25 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 11664, now:11683)
+> > > > > - Include path found, including - caves-1623/161/north/flatbatt
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fbs, creating new SurvexBlock
+> > > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 11683, now:11706)
+> > > > > - Include path found, including - caves-1623/161/north/dehy
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.26171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/dehy
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:cfn, creating new SurvexBlock
+> > > > > > > - MEM:49.265625 Reading. parent:caves-1623/161/north/dehy <> caves-1623/161/north/dehy
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 11706, now:11721)
+> > > > > - Include path found, including - caves-1623/161/north/gob
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.26953125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:gob, creating new SurvexBlock
+> > > > > > > - MEM:49.26953125 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:top, creating new SurvexBlock
+> > > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+> > > > > > LEGS: 5 (previous: 11721, now:11726)
+> > > > > - Include path found, including - caves-1623/161/north/burble
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/burble
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:burblcrawl, creating new SurvexBlock
+> > > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/north/burble <> caves-1623/161/north/burble
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 11726, now:11744)
+> > > > > - Include path found, including - caves-1623/161/north/pipeless
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/pipeless
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:beeconn, creating new SurvexBlock
+> > > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/north/pipeless <> caves-1623/161/north/pipeless
+[<Cave: 1623-161>]
+> > > > > > LEGS: 1 (previous: 11744, now:11745)
+> > > > > - Include path found, including - caves-1623/161/north/3wisemen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/3wisemen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:3wisemen, creating new SurvexBlock
+> > > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/north/3wisemen <> caves-1623/161/north/3wisemen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11745, now:11752)
+> > > > > - Include path found, including - caves-1623/161/north/further
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/further
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:further, creating new SurvexBlock
+> > > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/north/further <> caves-1623/161/north/further
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11752, now:11776)
+> > > > > - Include path found, including - caves-1623/161/north/anglia
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/anglia
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:anglia, creating new SurvexBlock
+> > > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/north/anglia <> caves-1623/161/north/anglia
+[<Cave: 1623-161>]
+> > > > > > LEGS: 28 (previous: 11776, now:11804)
+> > > > > - Include path found, including - caves-1623/161/north/siberia
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/siberia
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:siberia, creating new SurvexBlock
+> > > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/north/siberia <> caves-1623/161/north/siberia
+[<Cave: 1623-161>]
+> > > > > > LEGS: 34 (previous: 11804, now:11838)
+> > > > > - Include path found, including - caves-1623/161/north/sep
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.28515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sep, creating new SurvexBlock
+> > > > > > > - MEM:49.2890625 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:teama, creating new SurvexBlock
+> > > > > > > - MEM:49.2890625 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11838, now:11851)
+> > > > > - Include path found, including - caves-1623/161/north/midnight
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.29296875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/midnight
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:midnght1, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/midnight <> caves-1623/161/north/midnight
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11851, now:11864)
+> > > > > - Include path found, including - caves-1623/161/north/logic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/logic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:logic, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/logic <> caves-1623/161/north/logic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 11864, now:11880)
+> > > > > - Include path found, including - caves-1623/161/north/psychost
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/psychost
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:psycho, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/psychost <> caves-1623/161/north/psychost
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 11880, now:11897)
+> > > > > - Include path found, including - caves-1623/161/north/clearas
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/clearas
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:clearas, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/clearas <> caves-1623/161/north/clearas
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 11897, now:11922)
+> > > > > - Include path found, including - caves-1623/161/north/bearbum
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bearbum
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bearbum, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/bearbum <> caves-1623/161/north/bearbum
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11922, now:11931)
+> > > > > - Include path found, including - caves-1623/161/north/forgetmenot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/forgetmenot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:forgetmenot, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/forgetmenot <> caves-1623/161/north/forgetmenot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11931, now:11938)
+> > > > > - Include path found, including - caves-1623/161/north/solidrock
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/solidrock
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:solidrock, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/solidrock <> caves-1623/161/north/solidrock
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11938, now:11947)
+> > > > > - Include path found, including - caves-1623/161/north/direstraits
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/direstraits
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:direstraits, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/direstraits <> caves-1623/161/north/direstraits
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11947, now:11956)
+> > > > > - Include path found, including - caves-1623/161/north/satansitter
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/satansitter
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:satansitter, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/satansitter <> caves-1623/161/north/satansitter
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11956, now:11967)
+> > > > > - Include path found, including - caves-1623/161/north/naturalway
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:naturalway, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/naturalway <> caves-1623/161/north/naturalway
+[<Cave: 1623-161>]
+> > > > > > LEGS: 39 (previous: 11967, now:12006)
+> > > > > - Include path found, including - caves-1623/161/north/6milebottom
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/6milebottom
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:6milebottom, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/6milebottom <> caves-1623/161/north/6milebottom
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12006, now:12028)
+> > > > > - Include path found, including - caves-1623/161/north/sofaraway
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sofaraway
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sofaraway, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/sofaraway <> caves-1623/161/north/sofaraway
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 12028, now:12036)
+> > > > > - Include path found, including - caves-1623/161/north/ironyoftime
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/ironyoftime
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ironyoftime, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/ironyoftime <> caves-1623/161/north/ironyoftime
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12036, now:12043)
+> > > > > - Include path found, including - caves-1623/161/north/naturalway2
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway2
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:naturalway2, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/naturalway2 <> caves-1623/161/north/naturalway2
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 12043, now:12049)
+> > > > > - Include path found, including - caves-1623/161/north/oldmen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldmen, creating new SurvexBlock
+> > > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/north/oldmen <> caves-1623/161/north/oldmen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 30 (previous: 12049, now:12079)
+> > > > > - Include path found, including - caves-1623/161/north/chocolateloops
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/chocolateloops
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chocolateloops, creating new SurvexBlock
+> > > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/north/chocolateloops <> caves-1623/161/north/chocolateloops
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 12079, now:12089)
+> > > > > - Include path found, including - caves-1623/161/north/mendip
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mendip
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:mendip, creating new SurvexBlock
+> > > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/north/mendip <> caves-1623/161/north/mendip
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 12089, now:12100)
+> > > > > - Include path found, including - caves-1623/161/north/popcorn
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/popcorn
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:popcorn, creating new SurvexBlock
+> > > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/north/popcorn <> caves-1623/161/north/popcorn
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12100, now:12112)
+> > > > > - Include path found, including - caves-1623/161/north/oldmensouth
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmensouth
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldmensouth, creating new SurvexBlock
+> > > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/north/oldmensouth <> caves-1623/161/north/oldmensouth
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 12112, now:12123)
+> > > > > - Include path found, including - caves-1623/161/north/oldmenleft
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmenleft
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldmenleft, creating new SurvexBlock
+> > > > > > > - MEM:49.32421875 Reading. parent:caves-1623/161/north/oldmenleft <> caves-1623/161/north/oldmenleft
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12123, now:12130)
+> > > > > - Include path found, including - caves-1623/161/north/mordor
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.36328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mordor
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:mordor, creating new SurvexBlock
+> > > > > > > - MEM:49.37890625 Reading. parent:caves-1623/161/north/mordor <> caves-1623/161/north/mordor
+[<Cave: 1623-161>]
+> > > > > > LEGS: 35 (previous: 12130, now:12165)
+> > > > > - Include path found, including - caves-1623/161/north/bored
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.37890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bored
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bored, creating new SurvexBlock
+> > > > > > > - MEM:49.37890625 Reading. parent:caves-1623/161/north/bored <> caves-1623/161/north/bored
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 12165, now:12183)
+> > > > > - Include path found, including - caves-1623/161/north/stables
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.37890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/stables
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:stables, creating new SurvexBlock
+> > > > > > > - MEM:49.37890625 Reading. parent:caves-1623/161/north/stables <> caves-1623/161/north/stables
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 12183, now:12221)
+> > > > > - Include path found, including - caves-1623/161/north/holeycow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.37890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/holeycow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:holeycow, creating new SurvexBlock
+> > > > > > > - MEM:49.3828125 Reading. parent:caves-1623/161/north/holeycow <> caves-1623/161/north/holeycow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 56 (previous: 12221, now:12277)
+> > > > > - Include path found, including - caves-1623/161/north/blownout
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/blownout
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:blownout, creating new SurvexBlock
+> > > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/north/blownout <> caves-1623/161/north/blownout
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12277, now:12303)
+> > > > > - Include path found, including - caves-1623/161/north/sauron
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sauron
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sauron, creating new SurvexBlock
+> > > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/north/sauron <> caves-1623/161/north/sauron
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12303, now:12312)
+> > > > > - Include path found, including - caves-1623/161/north/soilathon
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilathon
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:soilathon, creating new SurvexBlock
+> > > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/north/soilathon <> caves-1623/161/north/soilathon
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 12312, now:12335)
+> > > > > - Include path found, including - caves-1623/161/north/wellypopper
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/wellypopper
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:wellypopper, creating new SurvexBlock
+> > > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/north/wellypopper <> caves-1623/161/north/wellypopper
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12335, now:12357)
+> > > > > - Include path found, including - caves-1623/161/north/runnelnorth
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/runnelnorth
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:runnelnorth, creating new SurvexBlock
+> > > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/north/runnelnorth <> caves-1623/161/north/runnelnorth
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12357, now:12383)
+> > > > > - Include path found, including - caves-1623/161/north/soilchute
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilchute
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:soilchute, creating new SurvexBlock
+> > > > > > > - MEM:49.390625 Reading. parent:caves-1623/161/north/soilchute <> caves-1623/161/north/soilchute
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12383, now:12390)
+> > > > > - Include path found, including - caves-1623/161/north/polkadot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.39453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/polkadot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:polkadot, creating new SurvexBlock
+> > > > > > > - MEM:49.39453125 Reading. parent:caves-1623/161/north/polkadot <> caves-1623/161/north/polkadot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 12390, now:12407)
+> > > > > - Include path found, including - caves-1623/161/north/larchenrepublic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/larchenrepublic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:larchenrepublic, creating new SurvexBlock
+> > > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/north/larchenrepublic <> caves-1623/161/north/larchenrepublic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 12407, now:12425)
+> > > > > - Include path found, including - caves-1623/161/north/bundestrasse
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bundestrasse
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bundestrasse, creating new SurvexBlock
+> > > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/north/bundestrasse <> caves-1623/161/north/bundestrasse
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12425, now:12451)
+> > > > > - Include path found, including - caves-1623/161/north/fbitw
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fbitw
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fbitw, creating new SurvexBlock
+> > > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/north/fbitw <> caves-1623/161/north/fbitw
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12451, now:12467)
+> > > > > - Include path found, including - caves-1623/161/north/fallingspike
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fallingspike
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fallingspike, creating new SurvexBlock
+> > > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/north/fallingspike <> caves-1623/161/north/fallingspike
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12467, now:12474)
+> > > > > - Include path found, including - caves-1623/161/north/qualitybelays
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/qualitybelays
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:quality, creating new SurvexBlock
+> > > > > > > - MEM:49.41796875 Reading. parent:caves-1623/161/north/qualitybelays <> caves-1623/161/north/qualitybelays
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12474, now:12486)
+> > > > - Include path found, including - caves-1623/161/france/allfr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/allfr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/france/adrian
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:adrian, creating new SurvexBlock
+> > > > > > > - MEM:49.43359375 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12486, now:12502)
+> > > > > - Include path found, including - caves-1623/161/france/btoc
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/btoc
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:btoc, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/france/btoc <> caves-1623/161/france/btoc
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12502, now:12515)
+> > > > > - Include path found, including - caves-1623/161/france/vertfran
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:france, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:a, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 12515, now:12525)
+> > > > > - Include path found, including - caves-1623/161/france/algeria
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/algeria
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:algeria, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/france/algeria <> caves-1623/161/france/algeria
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12525, now:12539)
+> > > > > - Include path found, including - caves-1623/161/france/orient
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/orient
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:orient, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/france/orient <> caves-1623/161/france/orient
+[<Cave: 1623-161>]
+> > > > > > LEGS: 30 (previous: 12539, now:12569)
+> > > > > - Include path found, including - caves-1623/161/france/missip
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/missip
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:missip, creating new SurvexBlock
+> > > > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/france/missip <> caves-1623/161/france/missip
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12569, now:12591)
+> > > > > - Include path found, including - caves-1623/161/france/toplo
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/toplo
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:toploader, creating new SurvexBlock
+> > > > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/france/toplo <> caves-1623/161/france/toplo
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12591, now:12600)
+> > > > > - Include path found, including - caves-1623/161/france/browni
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/browni
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:brownie, creating new SurvexBlock
+> > > > > > > - MEM:49.44921875 Reading. parent:caves-1623/161/france/browni <> caves-1623/161/france/browni
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12600, now:12607)
+> > > > > - Include path found, including - caves-1623/161/france/rocky
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/rocky
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:rocky, creating new SurvexBlock
+> > > > > > > - MEM:49.44921875 Reading. parent:caves-1623/161/france/rocky <> caves-1623/161/france/rocky
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12607, now:12620)
+> > > > > - Include path found, including - caves-1623/161/france/iidriv
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/iidriv
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:infinite, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/iidriv <> caves-1623/161/france/iidriv
+[<Cave: 1623-161>]
+> > > > > > LEGS: 27 (previous: 12620, now:12647)
+> > > > > - Include path found, including - caves-1623/161/france/bisfac
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/bisfac
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ginger, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/bisfac <> caves-1623/161/france/bisfac
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 12647, now:12672)
+> > > > > - Include path found, including - caves-1623/161/france/sultans
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/sultans
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sultans, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/sultans <> caves-1623/161/france/sultans
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12672, now:12681)
+> > > > > - Include path found, including - caves-1623/161/france/regurg
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/regurg
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:regurg, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/regurg <> caves-1623/161/france/regurg
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12681, now:12688)
+> > > > > - Include path found, including - caves-1623/161/france/room
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/room
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:room, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/room <> caves-1623/161/france/room
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 12688, now:12708)
+> > > > > - Include path found, including - caves-1623/161/france/irrig
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/irrig
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:irrig, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/irrig <> caves-1623/161/france/irrig
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12708, now:12721)
+> > > > - Include path found, including - caves-1623/161/triassic/alltrias
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/alltrias
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/triassic/triassic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:triassic, creating new SurvexBlock
+> > > > > > > - MEM:49.55078125 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.56640625 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 41 (previous: 12721, now:12762)
+> > > > > - Include path found, including - caves-1623/161/triassic/palace
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/palace
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:palace, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/palace <> caves-1623/161/triassic/palace
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 12762, now:12768)
+> > > > > - Include path found, including - caves-1623/161/triassic/teapot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/teapot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:teapot, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/teapot <> caves-1623/161/triassic/teapot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 12768, now:12788)
+> > > > > - Include path found, including - caves-1623/161/triassic/snug
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/snug
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:snug, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/snug <> caves-1623/161/triassic/snug
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12788, now:12809)
+> > > > > - Include path found, including - caves-1623/161/triassic/altuni
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/altuni
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:altuni, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/altuni <> caves-1623/161/triassic/altuni
+[<Cave: 1623-161>]
+> > > > > > LEGS: 33 (previous: 12809, now:12842)
+> > > > > - Include path found, including - caves-1623/161/triassic/hymen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/hymen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:hymen, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/hymen <> caves-1623/161/triassic/hymen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12842, now:12851)
+> > > > > - Include path found, including - caves-1623/161/triassic/magicjum
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/magicjum
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:magicjumars, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/magicjum <> caves-1623/161/triassic/magicjum
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12851, now:12863)
+> > > > > - Include path found, including - caves-1623/161/triassic/fogies
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fogies
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fogies, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/fogies <> caves-1623/161/triassic/fogies
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 12863, now:12882)
+> > > > > - Include path found, including - caves-1623/161/triassic/keinzimm
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/keinzimm
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:keinzimmer, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/keinzimm <> caves-1623/161/triassic/keinzimm
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12882, now:12903)
+> > > > > - Include path found, including - caves-1623/161/triassic/lostworl
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:lostworld, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:downstream, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12903, now:12910)
+> > > > > - Include path found, including - caves-1623/161/triassic/tapeworm
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/tapeworm
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:tapeworm, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/tapeworm <> caves-1623/161/triassic/tapeworm
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12910, now:12924)
+> > > > > - Include path found, including - caves-1623/161/triassic/chaos
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chaos
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chaos, creating new SurvexBlock
+> > > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/triassic/chaos <> caves-1623/161/triassic/chaos
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12924, now:12945)
+> > > > > - Include path found, including - caves-1623/161/triassic/intrview
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.57421875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:interview, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12945, now:12957)
+> > > > > - Include path found, including - caves-1623/161/triassic/fcr
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fcr
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fcr, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/fcr <> caves-1623/161/triassic/fcr
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12957, now:12971)
+> > > > > - Include path found, including - caves-1623/161/triassic/chosspot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chosspot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chosspot, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/chosspot <> caves-1623/161/triassic/chosspot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12971, now:12984)
+> > > > > - Include path found, including - caves-1623/161/triassic/henricat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:henricat, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12984, now:13000)
+> > > > > - Include path found, including - caves-1623/161/triassic/ovflow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/ovflow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:overflow, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/ovflow <> caves-1623/161/triassic/ovflow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 13000, now:13006)
+> > > > > - Include path found, including - caves-1623/161/triassic/eaunat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/eaunat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:eaunatlink, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/eaunat <> caves-1623/161/triassic/eaunat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 1 (previous: 13006, now:13007)
+> > > > > - Include path found, including - caves-1623/161/triassic/scorchio
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/scorchio
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:scorchio, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/triassic/scorchio <> caves-1623/161/triassic/scorchio
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 13007, now:13013)
+> > > > - Include path found, including - caves-1623/161/phumour/allphs
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/allphs
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/phumour/thighs
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/thighs
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:thighs, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/phumour/thighs <> caves-1623/161/phumour/thighs
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 13013, now:13030)
+> > > > > - Include path found, including - caves-1623/161/phumour/venereal
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/venereal
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:venereal, creating new SurvexBlock
+> > > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/phumour/venereal <> caves-1623/161/phumour/venereal
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13030, now:13041)
+> > > > > - Include path found, including - caves-1623/161/phumour/natural
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/natural
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:natural, creating new SurvexBlock
+> > > > > > > - MEM:49.5859375 Reading. parent:caves-1623/161/phumour/natural <> caves-1623/161/phumour/natural
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 13041, now:13050)
+> > > > > - Include path found, including - caves-1623/161/phumour/deadbats
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.5859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/deadbats
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:deadbats, creating new SurvexBlock
+> > > > > > > - MEM:49.58984375 Reading. parent:caves-1623/161/phumour/deadbats <> caves-1623/161/phumour/deadbats
+[<Cave: 1623-161>]
+> > > > > > LEGS: 41 (previous: 13050, now:13091)
+> > > > > - Include path found, including - caves-1623/161/phumour/loopy
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.58984375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/loopy
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:loopy, creating new SurvexBlock
+> > > > > > > - MEM:49.59375 Reading. parent:caves-1623/161/phumour/loopy <> caves-1623/161/phumour/loopy
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 13091, now:13099)
+> > > > > - Include path found, including - caves-1623/161/phumour/catwoman
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catwoman
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:catwoman, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/catwoman <> caves-1623/161/phumour/catwoman
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 13099, now:13115)
+> > > > > - Include path found, including - caves-1623/161/phumour/wheretwb
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/wheretwb
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:wheretwb, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/wheretwb <> caves-1623/161/phumour/wheretwb
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 13115, now:13128)
+> > > > > - Include path found, including - caves-1623/161/phumour/asturias
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/asturias
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:asturias, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/asturias <> caves-1623/161/phumour/asturias
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 13128, now:13147)
+> > > > > - Include path found, including - caves-1623/161/phumour/catshfts
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catshfts
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:shafts1, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/catshfts <> caves-1623/161/phumour/catshfts
+[<Cave: 1623-161>]
+> > > > > > LEGS: 2 (previous: 13147, now:13149)
+> > > > > - Include path found, including - caves-1623/161/phumour/shaftmin
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/shaftmin
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:shaftmin, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/shaftmin <> caves-1623/161/phumour/shaftmin
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 13149, now:13156)
+> > > > > - Include path found, including - caves-1623/161/phumour/pudding
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/pudding
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pudding, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/pudding <> caves-1623/161/phumour/pudding
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 13156, now:13176)
+> > > > > - Include path found, including - caves-1623/161/phumour/iceland
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/iceland
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:iceland1, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/iceland <> caves-1623/161/phumour/iceland
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 13176, now:13191)
+> > > > > - Include path found, including - caves-1623/161/phumour/turkey
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/turkey
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:turkey, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/phumour/turkey <> caves-1623/161/phumour/turkey
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13191, now:13202)
+> > > > > - Include path found, including - caves-1623/161/phumour/161g
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:161g, creating new SurvexBlock
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:161g_1, creating new SurvexBlock
+> > > > > > > - MEM:49.60546875 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+> > > > > > LEGS: 4 (previous: 13202, now:13206)
+> > > > > - Include path found, including - caves-1623/161/phumour/161h
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161h
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:161h, creating new SurvexBlock
+> > > > > > > - MEM:49.609375 Reading. parent:caves-1623/161/phumour/161h <> caves-1623/161/phumour/161h
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13206, now:13217)
+> > > > LEGS: 2105 (previous: 11112, now:13217)
+> > > - Include path found, including - caves-1623/204/204
+> > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > - MEM:49.609375 Reading. parent:kataster/1623 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > - Begin found for:204, creating new SurvexBlock
+> > > > > - MEM:49.609375 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > - Include path found, including - caves-1623/204/nearend/nearend
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.609375 Reading. parent:caves-1623/204/204 <> caves-1623/204/nearend/nearend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:nearend, creating new SurvexBlock
+> > > > > > - MEM:49.609375 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/nearend
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/nearend/ent
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.609375 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/ent
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/ent <> caves-1623/204/nearend/ent
+[<Cave: 1623-204>]
+> > > > > > LEGS: 39 (previous: 13218, now:13257)
+> > > > > - Include path found, including - caves-1623/204/nearend/link
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/link
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:link, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/link <> caves-1623/204/nearend/link
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 13257, now:13259)
+> > > > > - Include path found, including - caves-1623/204/nearend/junction
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/junction
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:junction, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/junction <> caves-1623/204/nearend/junction
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13259, now:13263)
+> > > > > - Include path found, including - caves-1623/204/nearend/updip
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/updip
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:updip, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/updip <> caves-1623/204/nearend/updip
+[<Cave: 1623-204>]
+> > > > > > LEGS: 11 (previous: 13263, now:13274)
+> > > > > - Include path found, including - caves-1623/204/nearend/stitchthis
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/stitchthis
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stitchthis, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/stitchthis <> caves-1623/204/nearend/stitchthis
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13274, now:13279)
+> > > > > - Include path found, including - caves-1623/204/nearend/kingcarbide
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kingcarbide
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kingcarbide, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/kingcarbide <> caves-1623/204/nearend/kingcarbide
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13279, now:13289)
+> > > > > - Include path found, including - caves-1623/204/nearend/kidney
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kidney
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kidney, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/kidney <> caves-1623/204/nearend/kidney
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13289, now:13297)
+> > > > > - Include path found, including - caves-1623/204/nearend/atob
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/atob
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:atob, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/atob <> caves-1623/204/nearend/atob
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13297, now:13300)
+> > > > > - Include path found, including - caves-1623/204/nearend/deathglory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/deathglory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:deathglory, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/nearend/deathglory <> caves-1623/204/nearend/deathglory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 13300, now:13313)
+> > > > > LEGS: 95 (previous: 13218, now:13313)
+> > > > - Include path found, including - caves-1623/204/midlevel/midlevel
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/204 <> caves-1623/204/midlevel/midlevel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:midlevel, creating new SurvexBlock
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/midlevel
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/midlevel/pendulum
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pendulum
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pendulum, creating new SurvexBlock
+> > > > > > > - MEM:49.62109375 Reading. parent:caves-1623/204/midlevel/pendulum <> caves-1623/204/midlevel/pendulum
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 13313, now:13333)
+> > > > > - Include path found, including - caves-1623/204/midlevel/veined
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.62109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:veined, creating new SurvexBlock
+> > > > > > > - MEM:49.62109375 Reading. parent:caves-1623/204/midlevel/veined <> caves-1623/204/midlevel/veined
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 13333, now:13349)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110aday
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110aday, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/204/midlevel/110aday <> caves-1623/204/midlevel/110aday
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 13349, now:13373)
+> > > > > - Include path found, including - caves-1623/204/midlevel/rainbow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6328125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/rainbow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rainbow, creating new SurvexBlock
+> > > > > > > - MEM:49.6328125 Reading. parent:caves-1623/204/midlevel/rainbow <> caves-1623/204/midlevel/rainbow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 13373, now:13388)
+> > > > > - Include path found, including - caves-1623/204/midlevel/phreatic
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phreatic
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:phreatic, creating new SurvexBlock
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/phreatic <> caves-1623/204/midlevel/phreatic
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 13388, now:13395)
+> > > > > - Include path found, including - caves-1623/204/midlevel/aday2bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/aday2bidet
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:aday2bidet, creating new SurvexBlock
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/aday2bidet <> caves-1623/204/midlevel/aday2bidet
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13395, now:13400)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110_bidet_b
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet_b
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110_bidet_b, creating new SurvexBlock
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/110_bidet_b <> caves-1623/204/midlevel/110_bidet_b
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13400, now:13404)
+> > > > > - Include path found, including - caves-1623/204/midlevel/veined_deadend
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined_deadend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:veined_deadend, creating new SurvexBlock
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/veined_deadend <> caves-1623/204/midlevel/veined_deadend
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13404, now:13407)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110_bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110_bidet, creating new SurvexBlock
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/midlevel/110_bidet <> caves-1623/204/midlevel/110_bidet
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 13407, now:13420)
+> > > > > - Include path found, including - caves-1623/204/midlevel/marble_run
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.640625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/marble_run
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:marble_run, creating new SurvexBlock
+> > > > > > > - MEM:49.640625 Reading. parent:caves-1623/204/midlevel/marble_run <> caves-1623/204/midlevel/marble_run
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 13420, now:13429)
+> > > > > - Include path found, including - caves-1623/204/midlevel/botofwolpertinger1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:botofwolpertinger1, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/midlevel/botofwolpertinger1 <> caves-1623/204/midlevel/botofwolpertinger1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 13429, now:13435)
+> > > > > - Include path found, including - caves-1623/204/midlevel/botofwolpertinger2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:botofwolpertinger2, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/midlevel/botofwolpertinger2 <> caves-1623/204/midlevel/botofwolpertinger2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13435, now:13445)
+> > > > > - Include path found, including - caves-1623/204/midlevel/merry
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/merry
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merry, creating new SurvexBlock
+> > > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/merry <> caves-1623/204/midlevel/merry
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 13445, now:13463)
+> > > > > - Include path found, including - caves-1623/204/midlevel/recycled
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/recycled
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:recycled, creating new SurvexBlock
+> > > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/recycled <> caves-1623/204/midlevel/recycled
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13463, now:13471)
+> > > > > - Include path found, including - caves-1623/204/midlevel/upat45deg
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:upat45deg, creating new SurvexBlock
+> > > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/upat45deg <> caves-1623/204/midlevel/upat45deg
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 13471, now:13485)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110aday2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110aday2, creating new SurvexBlock
+> > > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/110aday2 <> caves-1623/204/midlevel/110aday2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13485, now:13488)
+> > > > > - Include path found, including - caves-1623/204/midlevel/upat45deg2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:upat45deg2, creating new SurvexBlock
+> > > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/upat45deg2 <> caves-1623/204/midlevel/upat45deg2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 13488, now:13489)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussyprance
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pussyprance, creating new SurvexBlock
+> > > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/pussyprance <> caves-1623/204/midlevel/pussyprance
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 13489, now:13518)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussyprance2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pussyprance2, creating new SurvexBlock
+> > > > > > > - MEM:49.65625 Reading. parent:caves-1623/204/midlevel/pussyprance2 <> caves-1623/204/midlevel/pussyprance2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 13518, now:13537)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.66015625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflap, creating new SurvexBlock
+> > > > > > > - MEM:49.66015625 Reading. parent:caves-1623/204/midlevel/catflap <> caves-1623/204/midlevel/catflap
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 13537, now:13559)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflap2, creating new SurvexBlock
+> > > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/catflap2 <> caves-1623/204/midlevel/catflap2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13559, now:13564)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflap3, creating new SurvexBlock
+> > > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/catflap3 <> caves-1623/204/midlevel/catflap3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 13564, now:13566)
+> > > > > - Include path found, including - caves-1623/204/midlevel/paintedlady
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.66796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/paintedlady
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:paintedlady, creating new SurvexBlock
+> > > > > > > - MEM:49.66796875 Reading. parent:caves-1623/204/midlevel/paintedlady <> caves-1623/204/midlevel/paintedlady
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13566, now:13571)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussinbolts
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.66796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussinbolts
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pussinbolts, creating new SurvexBlock
+> > > > > > > - MEM:49.66796875 Reading. parent:caves-1623/204/midlevel/pussinbolts <> caves-1623/204/midlevel/pussinbolts
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13571, now:13576)
+> > > > > - Include path found, including - caves-1623/204/midlevel/ontheprowl
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/ontheprowl
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ontheprowl, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/ontheprowl <> caves-1623/204/midlevel/ontheprowl
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 13576, now:13593)
+> > > > > - Include path found, including - caves-1623/204/midlevel/snowleopard
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/snowleopard
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:snowleopard, creating new SurvexBlock
+> > > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/snowleopard <> caves-1623/204/midlevel/snowleopard
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13593, now:13598)
+> > > > > - Include path found, including - caves-1623/204/midlevel/theowlandthepussycat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/theowlandthepussycat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:theowlandthepussycat, creating new SurvexBlock
+> > > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/theowlandthepussycat <> caves-1623/204/midlevel/theowlandthepussycat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13598, now:13601)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatcat, creating new SurvexBlock
+> > > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/fatcat <> caves-1623/204/midlevel/fatcat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 13601, now:13608)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatcat2, creating new SurvexBlock
+> > > > > > > - MEM:49.6796875 Reading. parent:caves-1623/204/midlevel/fatcat2 <> caves-1623/204/midlevel/fatcat2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13608, now:13618)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatcat3, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/fatcat3 <> caves-1623/204/midlevel/fatcat3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13618, now:13623)
+> > > > > - Include path found, including - caves-1623/204/midlevel/somethingelse
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/somethingelse
+[<Cave: 1623-204>]
+> > > > > > - Include path found, including - caves-1623/204/midlevel/catgut
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catgut
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for:catgut, creating new SurvexBlock
+> > > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/catgut <> caves-1623/204/midlevel/catgut
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 14 (previous: 13623, now:13637)
+> > > > > > - Include path found, including - caves-1623/204/midlevel/cirquedusoleil
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/cirquedusoleil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for:cirquedusoleil, creating new SurvexBlock
+> > > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/cirquedusoleil <> caves-1623/204/midlevel/cirquedusoleil
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 9 (previous: 13637, now:13646)
+> > > > > > - Include path found, including - caves-1623/204/midlevel/pussyriot
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyriot
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for:pussyriot, creating new SurvexBlock
+> > > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/pussyriot <> caves-1623/204/midlevel/pussyriot
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 13 (previous: 13646, now:13659)
+> > > > > - Include path found, including - caves-1623/204/midlevel/phat2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phat2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:phat2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/phat2 <> caves-1623/204/midlevel/phat2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13659, now:13669)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflea
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflea
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflea, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/catflea <> caves-1623/204/midlevel/catflea
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13669, now:13677)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dogdays, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/dogdays <> caves-1623/204/midlevel/dogdays
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13677, now:13681)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dogdays2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/dogdays2 <> caves-1623/204/midlevel/dogdays2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 13681, now:13695)
+> > > > > - Include path found, including - caves-1623/204/midlevel/farfromsupport
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/farfromsupport
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:farfromsupport, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/farfromsupport <> caves-1623/204/midlevel/farfromsupport
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13695, now:13700)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dogdays3, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/dogdays3 <> caves-1623/204/midlevel/dogdays3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 90 (previous: 13700, now:13790)
+> > > > > - Include path found, including - caves-1623/204/midlevel/bigboulders
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/bigboulders
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:bigboulders, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/bigboulders <> caves-1623/204/midlevel/bigboulders
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13790, now:13795)
+> > > > > - Include path found, including - caves-1623/204/midlevel/BoulderChamber
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:boulderchamber, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/BoulderChamber <> caves-1623/204/midlevel/BoulderChamber
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 13795, now:13821)
+> > > > > - Include path found, including - caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber_upper
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:boulderchamber_upper, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/BoulderChamber_upper <> caves-1623/204/midlevel/BoulderChamber_upper
+[<Cave: 1623-204>]
+> > > > > > LEGS: 64 (previous: 13821, now:13885)
+> > > > > - Include path found, including - caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/downfrombigboulderchamber
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:downfrombigboulderchamber, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/downfrombigboulderchamber <> caves-1623/204/midlevel/downfrombigboulderchamber
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 13885, now:13902)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pretzelpassage1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pretzelpassage1, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/pretzelpassage1 <> caves-1623/204/midlevel/pretzelpassage1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 13902, now:13922)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pretzelpassage2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pretzelpassage2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/pretzelpassage2 <> caves-1623/204/midlevel/pretzelpassage2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 13922, now:13934)
+> > > > > LEGS: 621 (previous: 13313, now:13934)
+> > > > - Include path found, including - caves-1623/204/domes/domes
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/204 <> caves-1623/204/domes/domes
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:domes, creating new SurvexBlock
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/domes
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/domes/millennium
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/millennium
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:millennium, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/millennium <> caves-1623/204/domes/millennium
+[<Cave: 1623-204>]
+> > > > > > LEGS: 40 (previous: 13934, now:13974)
+> > > > > - Include path found, including - caves-1623/204/domes/pleasuredome
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/pleasuredome
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pleasuredome, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/pleasuredome <> caves-1623/204/domes/pleasuredome
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 13974, now:13990)
+> > > > > - Include path found, including - caves-1623/204/domes/loop22
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/loop22
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:loop22, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/loop22 <> caves-1623/204/domes/loop22
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13990, now:13993)
+> > > > > - Include path found, including - caves-1623/204/domes/phat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/phat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:phat, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/phat <> caves-1623/204/domes/phat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 13993, now:14002)
+> > > > > - Include path found, including - caves-1623/204/domes/micturation
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/micturation
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:micturation, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/micturation <> caves-1623/204/domes/micturation
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14002, now:14010)
+> > > > > - Include path found, including - caves-1623/204/domes/obese
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/obese
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:obese, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/obese <> caves-1623/204/domes/obese
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14010, now:14013)
+> > > > > - Include path found, including - caves-1623/204/domes/allroads
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/allroads
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:allroads, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/domes/allroads <> caves-1623/204/domes/allroads
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14013, now:14019)
+> > > > > LEGS: 85 (previous: 13934, now:14019)
+> > > > - Include path found, including - caves-1623/204/deepsouth/deepsouth
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/204 <> caves-1623/204/deepsouth/deepsouth
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:deepsouth, creating new SurvexBlock
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/deepsouth
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/deepsouth/ariston1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ariston1, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/ariston1 <> caves-1623/204/deepsouth/ariston1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14019, now:14024)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/ariston2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ariston2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/ariston2 <> caves-1623/204/deepsouth/ariston2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 14024, now:14050)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/fledermaus
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/fledermaus
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fledermaus, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/fledermaus <> caves-1623/204/deepsouth/fledermaus
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14050, now:14063)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/kiwisuit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/kiwisuit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kiwisuit, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/kiwisuit <> caves-1623/204/deepsouth/kiwisuit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14063, now:14076)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor1, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/razor1 <> caves-1623/204/deepsouth/razor1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 14076, now:14105)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/razor2 <> caves-1623/204/deepsouth/razor2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14105, now:14118)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor3, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/razor3 <> caves-1623/204/deepsouth/razor3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14118, now:14122)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor4, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/razor4 <> caves-1623/204/deepsouth/razor4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14122, now:14134)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor5, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor5 <> caves-1623/204/deepsouth/razor5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14134, now:14149)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor6
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor6
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor6, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor6 <> caves-1623/204/deepsouth/razor6
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14149, now:14150)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor7
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor7
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor7, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor7 <> caves-1623/204/deepsouth/razor7
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 14150, now:14176)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor8
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor8
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor8, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor8 <> caves-1623/204/deepsouth/razor8
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 14176, now:14196)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor9
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor9
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor9, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor9 <> caves-1623/204/deepsouth/razor9
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14196, now:14217)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor10
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor10
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor10, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor10 <> caves-1623/204/deepsouth/razor10
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14217, now:14238)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor11
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor11
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor11, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor11 <> caves-1623/204/deepsouth/razor11
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 14238, now:14252)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor12
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor12
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor12, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/razor12 <> caves-1623/204/deepsouth/razor12
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14252, now:14267)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkroad
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:silkroad, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/silkroad <> caves-1623/204/deepsouth/silkroad
+[<Cave: 1623-204>]
+> > > > > > LEGS: 30 (previous: 14267, now:14297)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkroad2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:silkroad2, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/silkroad2 <> caves-1623/204/deepsouth/silkroad2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14297, now:14319)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/entertheflagon
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/entertheflagon
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:entertheflagon, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/entertheflagon <> caves-1623/204/deepsouth/entertheflagon
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14319, now:14332)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkworm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkworm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:silkworm, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/silkworm <> caves-1623/204/deepsouth/silkworm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14332, now:14336)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/crouching
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/crouching
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crouching, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/deepsouth/crouching <> caves-1623/204/deepsouth/crouching
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14336, now:14358)
+> > > > > LEGS: 339 (previous: 14019, now:14358)
+> > > > - Include path found, including - caves-1623/204/trunk/trunk
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/204 <> caves-1623/204/trunk/trunk
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:trunk, creating new SurvexBlock
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/trunk
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/trunk/nopainnogain
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/nopainnogain
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:nopainnogain, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/trunk/nopainnogain <> caves-1623/204/trunk/nopainnogain
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 14358, now:14382)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:insig, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/insig <> caves-1623/204/trunk/insig
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14382, now:14389)
+> > > > > - Include path found, including - caves-1623/204/trunk/bonsai
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/bonsai
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:bonsai, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/bonsai <> caves-1623/204/trunk/bonsai
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14389, now:14395)
+> > > > > - Include path found, including - caves-1623/204/trunk/treeumphant
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeumphant
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:treeumphant, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/treeumphant <> caves-1623/204/trunk/treeumphant
+[<Cave: 1623-204>]
+> > > > > > LEGS: 27 (previous: 14395, now:14422)
+> > > > > - Include path found, including - caves-1623/204/trunk/colonade
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/colonade
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:colonade, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/colonade <> caves-1623/204/trunk/colonade
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14422, now:14430)
+> > > > > - Include path found, including - caves-1623/204/trunk/scroat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/scroat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:scroat, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/scroat <> caves-1623/204/trunk/scroat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14430, now:14434)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crowningglory, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/crowningglory <> caves-1623/204/trunk/crowningglory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 40 (previous: 14434, now:14474)
+> > > > > - Include path found, including - caves-1623/204/trunk/sucker
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sucker
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sucker, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/sucker <> caves-1623/204/trunk/sucker
+[<Cave: 1623-204>]
+> > > > > > LEGS: 30 (previous: 14474, now:14504)
+> > > > > - Include path found, including - caves-1623/204/trunk/csballs
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/csballs
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:csballs, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/csballs <> caves-1623/204/trunk/csballs
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14504, now:14517)
+> > > > > - Include path found, including - caves-1623/204/trunk/moreballs
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/moreballs
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:moreballs, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/moreballs <> caves-1623/204/trunk/moreballs
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14517, now:14539)
+> > > > > - Include path found, including - caves-1623/204/trunk/backpassage
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/backpassage
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:backpassage, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/backpassage <> caves-1623/204/trunk/backpassage
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14539, now:14545)
+> > > > > - Include path found, including - caves-1623/204/trunk/treeslope
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeslope
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:treeslope, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/treeslope <> caves-1623/204/trunk/treeslope
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14545, now:14549)
+> > > > > - Include path found, including - caves-1623/204/trunk/tree15c
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree15c
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:tree15c, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/tree15c <> caves-1623/204/trunk/tree15c
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14549, now:14552)
+> > > > > - Include path found, including - caves-1623/204/trunk/helterskelter
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterskelter
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:helterskelter, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/helterskelter <> caves-1623/204/trunk/helterskelter
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14552, now:14561)
+> > > > > - Include path found, including - caves-1623/204/trunk/gknodel
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:gknodel, creating new SurvexBlock
+> > > > > > > - MEM:49.72265625 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:part1, creating new SurvexBlock
+> > > > > > > - MEM:49.72265625 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14561, now:14570)
+> > > > > - Include path found, including - caves-1623/204/trunk/drillingdelight
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.72265625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/drillingdelight
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:drillingdelight, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/trunk/drillingdelight <> caves-1623/204/trunk/drillingdelight
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14570, now:14578)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:insig2, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/insig2 <> caves-1623/204/trunk/insig2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14578, now:14586)
+> > > > > - Include path found, including - caves-1623/204/trunk/flopsy
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/flopsy
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:flopsy, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/flopsy <> caves-1623/204/trunk/flopsy
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14586, now:14593)
+> > > > > - Include path found, including - caves-1623/204/trunk/greatoak
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:greatoak, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/greatoak <> caves-1623/204/trunk/greatoak
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14593, now:14598)
+> > > > > - Include path found, including - caves-1623/204/trunk/tree2glory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree2glory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:tree2glory, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/tree2glory <> caves-1623/204/trunk/tree2glory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14598, now:14606)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sandpit, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/sandpit <> caves-1623/204/trunk/sandpit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 42 (previous: 14606, now:14648)
+> > > > > - Include path found, including - caves-1623/204/trunk/helterdig
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterdig
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:helterdig, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/helterdig <> caves-1623/204/trunk/helterdig
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14648, now:14652)
+> > > > > - Include path found, including - caves-1623/204/trunk/dontstep
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dontstep
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dontstep, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/dontstep <> caves-1623/204/trunk/dontstep
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14652, now:14665)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig2rhino
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2rhino
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:insig2rhino, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/insig2rhino <> caves-1623/204/trunk/insig2rhino
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14665, now:14669)
+> > > > > - Include path found, including - caves-1623/204/trunk/twiglets
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/twiglets
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:twiglets, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/twiglets <> caves-1623/204/trunk/twiglets
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 14669, now:14683)
+> > > > > - Include path found, including - caves-1623/204/trunk/stageleft
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/stageleft
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stageleft, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/stageleft <> caves-1623/204/trunk/stageleft
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14683, now:14690)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goesser, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/goesser <> caves-1623/204/trunk/goesser
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14690, now:14700)
+> > > > > - Include path found, including - caves-1623/204/trunk/greatoak2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:greatoak2, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/greatoak2 <> caves-1623/204/trunk/greatoak2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14700, now:14701)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:riverdance, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/riverdance <> caves-1623/204/trunk/riverdance
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14701, now:14709)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:riverdance2, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/riverdance2 <> caves-1623/204/trunk/riverdance2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14709, now:14714)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:riverdance3, creating new SurvexBlock
+> > > > > > > - MEM:49.73828125 Reading. parent:caves-1623/204/trunk/riverdance3 <> caves-1623/204/trunk/riverdance3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14714, now:14729)
+> > > > > - Include path found, including - caves-1623/204/trunk/fingerbang
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fingerbang
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fingerbang, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/fingerbang <> caves-1623/204/trunk/fingerbang
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14729, now:14735)
+> > > > > - Include path found, including - caves-1623/204/trunk/fblink
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fblink
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fblink, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/fblink <> caves-1623/204/trunk/fblink
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14735, now:14736)
+> > > > > - Include path found, including - caves-1623/204/trunk/dutchelm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dutchelm, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/dutchelm <> caves-1623/204/trunk/dutchelm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14736, now:14748)
+> > > > > - Include path found, including - caves-1623/204/trunk/dutchelm2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dutchelm2, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/dutchelm2 <> caves-1623/204/trunk/dutchelm2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14748, now:14750)
+> > > > > - Include path found, including - caves-1623/204/trunk/wotnosurvey
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wotnosurvey
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wotnosurvey, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/wotnosurvey <> caves-1623/204/trunk/wotnosurvey
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14750, now:14755)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goesser2, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/goesser2 <> caves-1623/204/trunk/goesser2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14755, now:14757)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crowningglory2, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/crowningglory2 <> caves-1623/204/trunk/crowningglory2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14757, now:14767)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crowningglory3, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/crowningglory3 <> caves-1623/204/trunk/crowningglory3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14767, now:14770)
+> > > > > - Include path found, including - caves-1623/204/trunk/11sr
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/11sr
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:11sr, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/11sr <> caves-1623/204/trunk/11sr
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 14770, now:14793)
+> > > > > - Include path found, including - caves-1623/204/trunk/swisscheese
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/swisscheese
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swisscheese, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/swisscheese <> caves-1623/204/trunk/swisscheese
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14793, now:14814)
+> > > > > - Include path found, including - caves-1623/204/trunk/wetdry
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wetdry
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wetdry, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/wetdry <> caves-1623/204/trunk/wetdry
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14814, now:14822)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goesser3, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/goesser3 <> caves-1623/204/trunk/goesser3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14822, now:14824)
+> > > > > - Include path found, including - caves-1623/204/trunk/godonlyknows
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/godonlyknows
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:godonlyknows, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/godonlyknows <> caves-1623/204/trunk/godonlyknows
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14824, now:14830)
+> > > > > - Include path found, including - caves-1623/204/trunk/goodvibrations
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goodvibrations
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goodvibrations, creating new SurvexBlock
+> > > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/goodvibrations <> caves-1623/204/trunk/goodvibrations
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14830, now:14835)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.74609375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sandpit2, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/sandpit2 <> caves-1623/204/trunk/sandpit2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14835, now:14840)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pingu, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/pingu <> caves-1623/204/trunk/pingu
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14840, now:14847)
+> > > > > - Include path found, including - caves-1623/204/trunk/noodnoodles
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/noodnoodles
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:noodnoodles, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/noodnoodles <> caves-1623/204/trunk/noodnoodles
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14847, now:14852)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sandpit3, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/sandpit3 <> caves-1623/204/trunk/sandpit3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14852, now:14854)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pingu2, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/pingu2 <> caves-1623/204/trunk/pingu2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14854, now:14861)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pingu3, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/pingu3 <> caves-1623/204/trunk/pingu3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14861, now:14867)
+> > > > > - Include path found, including - caves-1623/204/trunk/appendix
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/appendix
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:appendix, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/appendix <> caves-1623/204/trunk/appendix
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14867, now:14871)
+> > > > > - Include path found, including - caves-1623/204/trunk/root
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/root
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:root, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/root <> caves-1623/204/trunk/root
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14871, now:14878)
+> > > > > LEGS: 520 (previous: 14358, now:14878)
+> > > > - Include path found, including - caves-1623/204/swings/allswings
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/204 <> caves-1623/204/swings/allswings
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allswings, creating new SurvexBlock
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/allswings
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/swings/playground
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76171875 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/playground
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:playground, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/swings/playground <> caves-1623/204/swings/playground
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14878, now:14885)
+> > > > > - Include path found, including - caves-1623/204/swings/swings
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/swings/swings <> caves-1623/204/swings/swings
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 14885, now:14913)
+> > > > > - Include path found, including - caves-1623/204/swings/swings2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings2, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/swings/swings2 <> caves-1623/204/swings/swings2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14913, now:14920)
+> > > > > - Include path found, including - caves-1623/204/swings/swings3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings3, creating new SurvexBlock
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/swings/swings3 <> caves-1623/204/swings/swings3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14920, now:14924)
+> > > > > - Include path found, including - caves-1623/204/swings/swings4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings4, creating new SurvexBlock
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/swings/swings4 <> caves-1623/204/swings/swings4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14924, now:14934)
+> > > > > - Include path found, including - caves-1623/204/swings/swings5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings5, creating new SurvexBlock
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/swings/swings5 <> caves-1623/204/swings/swings5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14934, now:14936)
+> > > > > - Include path found, including - caves-1623/204/swings/swings6
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings6
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings6, creating new SurvexBlock
+> > > > > > > - MEM:49.7734375 Reading. parent:caves-1623/204/swings/swings6 <> caves-1623/204/swings/swings6
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14936, now:14940)
+> > > > > - Include path found, including - caves-1623/204/swings/swings7
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings7
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings7, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/swings7 <> caves-1623/204/swings/swings7
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14940, now:14942)
+> > > > > - Include path found, including - caves-1623/204/swings/swings8
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings8
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings8, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/swings8 <> caves-1623/204/swings/swings8
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14942, now:14948)
+> > > > > - Include path found, including - caves-1623/204/swings/swings9
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings9
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings9, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/swings9 <> caves-1623/204/swings/swings9
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14948, now:14960)
+> > > > > - Include path found, including - caves-1623/204/swings/prettybits
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/prettybits
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:prettybits, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/prettybits <> caves-1623/204/swings/prettybits
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14960, now:14968)
+> > > > > - Include path found, including - caves-1623/204/swings/juicybits
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/juicybits
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:juicybits, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/juicybits <> caves-1623/204/swings/juicybits
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14968, now:14977)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merrygoround, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/merrygoround <> caves-1623/204/swings/merrygoround
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14977, now:14984)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merrygoround2, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/merrygoround2 <> caves-1623/204/swings/merrygoround2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14984, now:14989)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merrygoround3, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/merrygoround3 <> caves-1623/204/swings/merrygoround3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14989, now:14996)
+> > > > > - Include path found, including - caves-1623/204/swings/ermintrude
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ermintrude, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/ermintrude <> caves-1623/204/swings/ermintrude
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14996, now:15002)
+> > > > > - Include path found, including - caves-1623/204/swings/trapeze
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/trapeze
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:trapeze, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/trapeze <> caves-1623/204/swings/trapeze
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 15002, now:15010)
+> > > > > - Include path found, including - caves-1623/204/swings/crestarun
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/crestarun
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crestarun, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/crestarun <> caves-1623/204/swings/crestarun
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 15010, now:15026)
+> > > > > - Include path found, including - caves-1623/204/swings/piledriver
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/piledriver
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:piledriver, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/piledriver <> caves-1623/204/swings/piledriver
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15026, now:15032)
+> > > > > - Include path found, including - caves-1623/204/swings/toothless
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/toothless
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:toothless, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/toothless <> caves-1623/204/swings/toothless
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15032, now:15044)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopes, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/highhopes <> caves-1623/204/swings/highhopes
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15044, now:15054)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopes2, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/highhopes2 <> caves-1623/204/swings/highhopes2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 15054, now:15070)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopeslink
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopeslink
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopeslink, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/highhopeslink <> caves-1623/204/swings/highhopeslink
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15070, now:15072)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopes3, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/highhopes3 <> caves-1623/204/swings/highhopes3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15072, now:15081)
+> > > > > - Include path found, including - caves-1623/204/swings/enth
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enth
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:enth, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/enth <> caves-1623/204/swings/enth
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 15081, now:15099)
+> > > > > - Include path found, including - caves-1623/204/swings/enti
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enti
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:enti, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/enti <> caves-1623/204/swings/enti
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15099, now:15105)
+> > > > > - Include path found, including - caves-1623/204/swings/ermintrude2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ermintrude2, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/ermintrude2 <> caves-1623/204/swings/ermintrude2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15105, now:15114)
+> > > > > - Include path found, including - caves-1623/204/swings/entg
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/entg
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:entg, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/entg <> caves-1623/204/swings/entg
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15114, now:15121)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/ubantu <> caves-1623/204/swings/ubantu
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15121, now:15128)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu2, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/ubantu2 <> caves-1623/204/swings/ubantu2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15128, now:15135)
+> > > > > - Include path found, including - caves-1623/204/swings/zebedee
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/zebedee
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:zebedee, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/zebedee <> caves-1623/204/swings/zebedee
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15135, now:15141)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu3, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/ubantu3 <> caves-1623/204/swings/ubantu3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 15141, now:15167)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu4, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/ubantu4 <> caves-1623/204/swings/ubantu4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 15167, now:15182)
+> > > > > - Include path found, including - caves-1623/204/swings/05-9cQMkilling
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/05-9cQMkilling
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:05-9cqmkilling, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/05-9cQMkilling <> caves-1623/204/swings/05-9cQMkilling
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15182, now:15185)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu5, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/swings/ubantu5 <> caves-1623/204/swings/ubantu5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15185, now:15188)
+> > > > > LEGS: 310 (previous: 14878, now:15188)
+> > > > - Include path found, including - caves-1623/204/gaffered/allgaffered
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/204 <> caves-1623/204/gaffered/allgaffered
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allgaffered, creating new SurvexBlock
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/allgaffered
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/gaffered/plan
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/plan
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:plan, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/plan <> caves-1623/204/gaffered/plan
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15188, now:15191)
+> > > > > - Include path found, including - caves-1623/204/gaffered/not
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/not
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:not, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/not <> caves-1623/204/gaffered/not
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15191, now:15198)
+> > > > > - Include path found, including - caves-1623/204/gaffered/interesting
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/interesting
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:interesting, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/interesting <> caves-1623/204/gaffered/interesting
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15198, now:15201)
+> > > > > - Include path found, including - caves-1623/204/gaffered/trihang
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/trihang
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:trihang, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/trihang <> caves-1623/204/gaffered/trihang
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 15201, now:15214)
+> > > > > - Include path found, including - caves-1623/204/gaffered/eeyore
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/eeyore
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:eeyore, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/eeyore <> caves-1623/204/gaffered/eeyore
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15214, now:15218)
+> > > > > - Include path found, including - caves-1623/204/gaffered/poohstyx
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:poohstyx, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/poohstyx <> caves-1623/204/gaffered/poohstyx
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15218, now:15227)
+> > > > > - Include path found, including - caves-1623/204/gaffered/sirens
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sirens, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/sirens <> caves-1623/204/gaffered/sirens
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15227, now:15233)
+> > > > > - Include path found, including - caves-1623/204/gaffered/sirens2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sirens2, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/sirens2 <> caves-1623/204/gaffered/sirens2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 15233, now:15250)
+> > > > > - Include path found, including - caves-1623/204/gaffered/kanga
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/kanga
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kanga, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/kanga <> caves-1623/204/gaffered/kanga
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15250, now:15255)
+> > > > > - Include path found, including - caves-1623/204/gaffered/mudslope
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/mudslope
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:mudslope, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/mudslope <> caves-1623/204/gaffered/mudslope
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15255, now:15258)
+> > > > > - Include path found, including - caves-1623/204/gaffered/gardenersworld
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/gardenersworld
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:gardenersworld, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/gardenersworld <> caves-1623/204/gaffered/gardenersworld
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15258, now:15261)
+> > > > > - Include path found, including - caves-1623/204/gaffered/uppertube
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/uppertube
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:uppertube, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/uppertube <> caves-1623/204/gaffered/uppertube
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15261, now:15264)
+> > > > > - Include path found, including - caves-1623/204/gaffered/terrafirma
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/terrafirma
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:terrafirma, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/terrafirma <> caves-1623/204/gaffered/terrafirma
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15264, now:15266)
+> > > > > - Include path found, including - caves-1623/204/gaffered/oxtailoxbow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/oxtailoxbow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:oxtailoxbow, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/oxtailoxbow <> caves-1623/204/gaffered/oxtailoxbow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15266, now:15271)
+> > > > > - Include path found, including - caves-1623/204/gaffered/blackmaria
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/blackmaria
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:blackmaria, creating new SurvexBlock
+> > > > > > > - MEM:49.7890625 Reading. parent:caves-1623/204/gaffered/blackmaria <> caves-1623/204/gaffered/blackmaria
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15271, now:15274)
+> > > > > - Include path found, including - caves-1623/204/gaffered/poohstyx2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:poohstyx2, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/poohstyx2 <> caves-1623/204/gaffered/poohstyx2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15274, now:15276)
+> > > > > - Include path found, including - caves-1623/204/gaffered/shprinkles
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/shprinkles
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:shprinkles, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/shprinkles <> caves-1623/204/gaffered/shprinkles
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15276, now:15281)
+> > > > > - Include path found, including - caves-1623/204/gaffered/dangly
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangly
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dangly, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/dangly <> caves-1623/204/gaffered/dangly
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15281, now:15286)
+> > > > > - Include path found, including - caves-1623/204/gaffered/slimy1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:slimy1, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/slimy1 <> caves-1623/204/gaffered/slimy1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15286, now:15291)
+> > > > > - Include path found, including - caves-1623/204/gaffered/dangerous
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangerous
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dangerous, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/dangerous <> caves-1623/204/gaffered/dangerous
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 15291, now:15315)
+> > > > > - Include path found, including - caves-1623/204/gaffered/slimy2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:slimy2, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/gaffered/slimy2 <> caves-1623/204/gaffered/slimy2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15315, now:15325)
+> > > > > LEGS: 137 (previous: 15188, now:15325)
+> > > > - Include path found, including - caves-1623/204/rhino/allrhino
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/204 <> caves-1623/204/rhino/allrhino
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allrhino, creating new SurvexBlock
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/allrhino
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/rhino/21boltsalute
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/21boltsalute
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:21boltsalute, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/rhino/21boltsalute <> caves-1623/204/rhino/21boltsalute
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15325, now:15334)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rhinorift, creating new SurvexBlock
+> > > > > > > - MEM:49.79296875 Reading. parent:caves-1623/204/rhino/rhinorift <> caves-1623/204/rhino/rhinorift
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 15334, now:15362)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:onamission, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/onamission <> caves-1623/204/rhino/onamission
+[<Cave: 1623-204>]
+> > > > > > LEGS: 35 (previous: 15362, now:15397)
+> > > > > - Include path found, including - caves-1623/204/rhino/watnobutcombe
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/watnobutcombe
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:watnobutcombe, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/watnobutcombe <> caves-1623/204/rhino/watnobutcombe
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15397, now:15403)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rhinorift2, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/rhinorift2 <> caves-1623/204/rhino/rhinorift2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15403, now:15415)
+> > > > > - Include path found, including - caves-1623/204/rhino/ratbiscuit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/ratbiscuit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ratbiscuit, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/rhino/ratbiscuit <> caves-1623/204/rhino/ratbiscuit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 15415, now:15438)
+> > > > > - Include path found, including - caves-1623/204/rhino/crimper
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8046875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/crimper
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crimper, creating new SurvexBlock
+> > > > > > > - MEM:49.8046875 Reading. parent:caves-1623/204/rhino/crimper <> caves-1623/204/rhino/crimper
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15438, now:15445)
+> > > > > - Include path found, including - caves-1623/204/rhino/swallowhard
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8046875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/swallowhard
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swallowhard, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/swallowhard <> caves-1623/204/rhino/swallowhard
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15445, now:15457)
+> > > > > - Include path found, including - caves-1623/204/rhino/takingthepiss
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/takingthepiss
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:takingthepiss, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/takingthepiss <> caves-1623/204/rhino/takingthepiss
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15457, now:15463)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rhinorift3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/rhinorift3 <> caves-1623/204/rhino/rhinorift3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 15463, now:15464)
+> > > > > - Include path found, including - caves-1623/204/rhino/unconformity
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:unconformity, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/unconformity <> caves-1623/204/rhino/unconformity
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 15464, now:15483)
+> > > > > - Include path found, including - caves-1623/204/rhino/unconformity2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:unconformity2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/unconformity2 <> caves-1623/204/rhino/unconformity2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15483, now:15492)
+> > > > > - Include path found, including - caves-1623/204/rhino/belief
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/belief
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:belief, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/belief <> caves-1623/204/rhino/belief
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15492, now:15496)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:onamission2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/onamission2 <> caves-1623/204/rhino/onamission2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15496, now:15498)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:onamission3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/onamission3 <> caves-1623/204/rhino/onamission3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15498, now:15507)
+> > > > > - Include path found, including - caves-1623/204/rhino/faith
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/faith
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:faith, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/faith <> caves-1623/204/rhino/faith
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15507, now:15517)
+> > > > > - Include path found, including - caves-1623/204/rhino/roundtrip
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/roundtrip
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:roundtrip, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/roundtrip <> caves-1623/204/rhino/roundtrip
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15517, now:15523)
+> > > > > - Include path found, including - caves-1623/204/rhino/wotnoconnection
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/wotnoconnection
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wotnoconnection, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/wotnoconnection <> caves-1623/204/rhino/wotnoconnection
+[<Cave: 1623-204>]
+> > > > > > LEGS: 11 (previous: 15523, now:15534)
+> > > > > - Include path found, including - caves-1623/204/rhino/grater
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/grater
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:grater, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/grater <> caves-1623/204/rhino/grater
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15534, now:15538)
+> > > > > - Include path found, including - caves-1623/204/rhino/uncrimped
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/uncrimped
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:uncrimped, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/uncrimped <> caves-1623/204/rhino/uncrimped
+[<Cave: 1623-204>]
+> > > > > > LEGS: 0 (previous: 15538, now:15538)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:beyondbelief, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/beyondbelief <> caves-1623/204/rhino/beyondbelief
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15538, now:15548)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:beyondbelief2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/beyondbelief2 <> caves-1623/204/rhino/beyondbelief2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15548, now:15569)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:beyondbelief3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/beyondbelief3 <> caves-1623/204/rhino/beyondbelief3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 15569, now:15577)
+> > > > > - Include path found, including - caves-1623/204/rhino/hangingontofaith
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hangingontofaith
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hangingontofaith, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/hangingontofaith <> caves-1623/204/rhino/hangingontofaith
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 15577, now:15591)
+> > > > > - Include path found, including - caves-1623/204/rhino/shanks
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/shanks
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:shanks, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/shanks <> caves-1623/204/rhino/shanks
+[<Cave: 1623-204>]
+> > > > > > LEGS: 25 (previous: 15591, now:15616)
+> > > > > - Include path found, including - caves-1623/204/rhino/nonconformism
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/nonconformism
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:nonconformism, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/nonconformism <> caves-1623/204/rhino/nonconformism
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15616, now:15619)
+> > > > > - Include path found, including - caves-1623/204/rhino/spittersend
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/spittersend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:spittersend, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/spittersend <> caves-1623/204/rhino/spittersend
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15619, now:15624)
+> > > > > - Include path found, including - caves-1623/204/rhino/hollow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hollow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hollow, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/rhino/hollow <> caves-1623/204/rhino/hollow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15624, now:15633)
+> > > > > LEGS: 308 (previous: 15325, now:15633)
+> > > > - Include path found, including - caves-1623/204/subsoil/allsubsoil
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/204/204 <> caves-1623/204/subsoil/allsubsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allsubsoil, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/allsubsoil
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/subsoil/subsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:subsoil, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/subsoil <> caves-1623/204/subsoil/subsoil
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 15633, now:15652)
+> > > > > - Include path found, including - caves-1623/204/subsoil/subsoil2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:subsoil2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/subsoil2 <> caves-1623/204/subsoil/subsoil2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 32 (previous: 15652, now:15684)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippohollows
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippohollows
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hippohollows, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/hippohollows <> caves-1623/204/subsoil/hippohollows
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15684, now:15696)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatworm, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/fatworm <> caves-1623/204/subsoil/fatworm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15696, now:15708)
+> > > > > - Include path found, including - caves-1623/204/subsoil/heavilysoiled
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/heavilysoiled
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:heavilysoiled, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/heavilysoiled <> caves-1623/204/subsoil/heavilysoiled
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15708, now:15720)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:earthenware, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/earthenware <> caves-1623/204/subsoil/earthenware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15720, now:15732)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatworm2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/fatworm2 <> caves-1623/204/subsoil/fatworm2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15732, now:15753)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatworm3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/fatworm3 <> caves-1623/204/subsoil/fatworm3
+[<Cave: 1623-204>]
+> > > > > > ! Wallet ; ref 2004#34 - NOT found in survexscansfolders caves-1623/204/subsoil/fatworm3
+> > > > > > LEGS: 15 (previous: 15753, now:15768)
+> > > > > - Include path found, including - caves-1623/204/subsoil/thinrift
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/thinrift
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thinrift, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/thinrift <> caves-1623/204/subsoil/thinrift
+[<Cave: 1623-204>]
+> > > > > > ! Wallet ; ref 2004#35 - NOT found in survexscansfolders caves-1623/204/subsoil/thinrift
+> > > > > > LEGS: 6 (previous: 15768, now:15774)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:earthenware2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/earthenware2 <> caves-1623/204/subsoil/earthenware2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 15774, now:15798)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:earthenware3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/earthenware3 <> caves-1623/204/subsoil/earthenware3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 15798, now:15816)
+> > > > > - Include path found, including - caves-1623/204/subsoil/chimney
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/chimney
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:chimney, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/chimney <> caves-1623/204/subsoil/chimney
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15816, now:15823)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hardware, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/hardware <> caves-1623/204/subsoil/hardware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15823, now:15835)
+> > > > > - Include path found, including - caves-1623/204/subsoil/someware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/someware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:someware, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/someware <> caves-1623/204/subsoil/someware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 33 (previous: 15835, now:15868)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:software, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/software <> caves-1623/204/subsoil/software
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15868, now:15872)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-43a
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:qm04_43a, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/hardware_QM04-43a <> caves-1623/204/subsoil/hardware_QM04-43a
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15872, now:15874)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-38b
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:qm04_38b, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/hardware_QM04-38b <> caves-1623/204/subsoil/hardware_QM04-38b
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15874, now:15878)
+> > > > > - Include path found, including - caves-1623/204/subsoil/nightsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/nightsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:nightsoil, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/nightsoil <> caves-1623/204/subsoil/nightsoil
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15878, now:15884)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippocratic
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hippocratic, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/hippocratic <> caves-1623/204/subsoil/hippocratic
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15884, now:15905)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippocratic2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hippocratic2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/hippocratic2 <> caves-1623/204/subsoil/hippocratic2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 15905, now:15925)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:software2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/software2 <> caves-1623/204/subsoil/software2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 15925, now:15954)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:software3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/software3 <> caves-1623/204/subsoil/software3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15954, now:15961)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/whereoware <> caves-1623/204/subsoil/whereoware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 31 (previous: 15961, now:15992)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/whereoware2 <> caves-1623/204/subsoil/whereoware2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15992, now:15995)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/whereoware3 <> caves-1623/204/subsoil/whereoware3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15995, now:16002)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware4, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/whereoware4 <> caves-1623/204/subsoil/whereoware4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 16002, now:16011)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware5, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/whereoware5 <> caves-1623/204/subsoil/whereoware5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 16011, now:16013)
+> > > > > - Include path found, including - caves-1623/204/subsoil/wareforartthou
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wareforartthou, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/wareforartthou <> caves-1623/204/subsoil/wareforartthou
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 16013, now:16041)
+> > > > > - Include path found, including - caves-1623/204/subsoil/wareforartthou2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wareforartthou2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/wareforartthou2 <> caves-1623/204/subsoil/wareforartthou2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16041, now:16062)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stupidhole, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/stupidhole <> caves-1623/204/subsoil/stupidhole
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 16062, now:16071)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stupidhole2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/stupidhole2 <> caves-1623/204/subsoil/stupidhole2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16071, now:16092)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stupidhole3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/stupidhole3 <> caves-1623/204/subsoil/stupidhole3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 16092, now:16099)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:granddayout, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/granddayout <> caves-1623/204/subsoil/granddayout
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 16099, now:16113)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:granddayout2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/granddayout2 <> caves-1623/204/subsoil/granddayout2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 51 (previous: 16113, now:16164)
+> > > > > - Include path found, including - caves-1623/204/subsoil/birdonawire
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:birdonawire, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/birdonawire <> caves-1623/204/subsoil/birdonawire
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 16164, now:16170)
+> > > > > - Include path found, including - caves-1623/204/subsoil/birdonawire2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:birdonawire2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/birdonawire2 <> caves-1623/204/subsoil/birdonawire2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 16170, now:16175)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:granddayout3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subsoil/granddayout3 <> caves-1623/204/subsoil/granddayout3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 16175, now:16177)
+> > > > > LEGS: 544 (previous: 15633, now:16177)
+> > > > - Include path found, including - caves-1623/204/subway/subway
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/204/204 <> caves-1623/204/subway/subway
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:subway, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/subway
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/subway/apocalypse
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/apocalypse
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:apocalypse, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/apocalypse <> caves-1623/204/subway/apocalypse
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 16177, now:16190)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/thetube <> caves-1623/204/subway/thetube
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16190, now:16211)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/thetube2 <> caves-1623/204/subway/thetube2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 16211, now:16234)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/thetube3 <> caves-1623/204/subway/thetube3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 16234, now:16262)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube4, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/thetube4 <> caves-1623/204/subway/thetube4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 35 (previous: 16262, now:16297)
+> > > > > - Include path found, including - caves-1623/204/subway/morningtoncrescent
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/morningtoncrescent
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:morningtoncrescent, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/subway/morningtoncrescent <> caves-1623/204/subway/morningtoncrescent
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 16297, now:16312)
+> > > > > LEGS: 135 (previous: 16177, now:16312)
+[<Cave: 1623-204>]
+> > > > - Begin found for:slimylink, creating new SurvexBlock
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > LEGS: 0 (previous: 16312, now:16312)
+> > > - Include path found, including - caves-1623/258/258
+> > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - MEM:49.8125 Reading. parent:kataster/1623 <> caves-1623/258/258
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - Begin found for:258, creating new SurvexBlock
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/258
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkeyall
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkeyall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey <> caves-1623/258/stonemonkey/stonemonkey
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 17 (previous: 16312, now:16329)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey2 <> caves-1623/258/stonemonkey/stonemonkey2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16329, now:16334)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey3 <> caves-1623/258/stonemonkey/stonemonkey3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16334, now:16348)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey4
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey4, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey4 <> caves-1623/258/stonemonkey/stonemonkey4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 13 (previous: 16348, now:16361)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey5
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey5, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey5 <> caves-1623/258/stonemonkey/stonemonkey5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 9 (previous: 16361, now:16370)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey6
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey6, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey6 <> caves-1623/258/stonemonkey/stonemonkey6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16370, now:16375)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey7
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey7, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey7 <> caves-1623/258/stonemonkey/stonemonkey7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16375, now:16380)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey8
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey8
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey8, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey8 <> caves-1623/258/stonemonkey/stonemonkey8
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16380, now:16390)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey9
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey9
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey9, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stonemonkey/stonemonkey9 <> caves-1623/258/stonemonkey/stonemonkey9
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16390, now:16394)
+> > > > - Include path found, including - caves-1623/258/hydra/hydra
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hydra
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Include path found, including - caves-1623/258/hydra/kraken
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kraken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:kraken, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/kraken <> caves-1623/258/hydra/kraken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16394, now:16408)
+> > > > > - Include path found, including - caves-1623/258/hydra/tentacle
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/tentacle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:tentacle, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/tentacle <> caves-1623/258/hydra/tentacle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 8 (previous: 16408, now:16416)
+> > > > > - Include path found, including - caves-1623/258/hydra/livingthedream
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/livingthedream
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:livingthedream, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/livingthedream <> caves-1623/258/hydra/livingthedream
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 30 (previous: 16416, now:16446)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers <> caves-1623/258/hydra/slackers
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 75 (previous: 16446, now:16521)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers2 <> caves-1623/258/hydra/slackers2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 18 (previous: 16521, now:16539)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers3 <> caves-1623/258/hydra/slackers3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16539, now:16545)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers4
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers4, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers4 <> caves-1623/258/hydra/slackers4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 26 (previous: 16545, now:16571)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers5
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers5, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers5 <> caves-1623/258/hydra/slackers5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 31 (previous: 16571, now:16602)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers6
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers6, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers6 <> caves-1623/258/hydra/slackers6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16602, now:16606)
+> > > > > - Include path found, including - caves-1623/258/hydra/wrongcustard
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/wrongcustard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:wrongcustard, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/wrongcustard <> caves-1623/258/hydra/wrongcustard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16606, now:16613)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers7
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers7, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackers7 <> caves-1623/258/hydra/slackers7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 3 (previous: 16613, now:16616)
+> > > > > - Include path found, including - caves-1623/258/hydra/lobsterpot
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lobsterpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:lobsterpot, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/lobsterpot <> caves-1623/258/hydra/lobsterpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16616, now:16626)
+> > > > > - Include path found, including - caves-1623/258/hydra/kippercock
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kippercock
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:kippercock, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/kippercock <> caves-1623/258/hydra/kippercock
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16626, now:16640)
+> > > > > - Include path found, including - caves-1623/258/hydra/indianropetrick
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/indianropetrick
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:indianropetrick, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/indianropetrick <> caves-1623/258/hydra/indianropetrick
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16640, now:16646)
+> > > > > - Include path found, including - caves-1623/258/hydra/songoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:songoftheearth, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:part1, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 13 (previous: 16646, now:16659)
+> > > > > - Include path found, including - caves-1623/258/hydra/dontstopmenow
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/dontstopmenow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:dontstopmenow, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/dontstopmenow <> caves-1623/258/hydra/dontstopmenow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 24 (previous: 16659, now:16683)
+> > > > > - Include path found, including - caves-1623/258/hydra/screamer
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/screamer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:screamer, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/screamer <> caves-1623/258/hydra/screamer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16683, now:16688)
+> > > > > - Include path found, including - caves-1623/258/hydra/papawpassage
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/papawpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:papawpassage, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/papawpassage <> caves-1623/258/hydra/papawpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 3 (previous: 16688, now:16691)
+> > > > > - Include path found, including - caves-1623/258/hydra/therestherub
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/therestherub
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:therestherub, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/therestherub <> caves-1623/258/hydra/therestherub
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 12 (previous: 16691, now:16703)
+> > > > > - Include path found, including - caves-1623/258/hydra/biglad
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/biglad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:biglad, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/biglad <> caves-1623/258/hydra/biglad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 28 (previous: 16703, now:16731)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackerstidyup1
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackerstidyup1, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackerstidyup1 <> caves-1623/258/hydra/slackerstidyup1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16731, now:16737)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackerstidyup2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackerstidyup2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/slackerstidyup2 <> caves-1623/258/hydra/slackerstidyup2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16737, now:16744)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:snakecharmer, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/snakecharmer <> caves-1623/258/hydra/snakecharmer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 27 (previous: 16744, now:16771)
+> > > > > - Include path found, including - caves-1623/258/hydra/mastercave
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/mastercave
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:mastercave, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/mastercave <> caves-1623/258/hydra/mastercave
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16771, now:16775)
+> > > > > - Include path found, including - caves-1623/258/hydra/gryke-of-the-earth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/gryke-of-the-earth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:gryke-of-the-earth, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/gryke-of-the-earth <> caves-1623/258/hydra/gryke-of-the-earth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 12 (previous: 16775, now:16787)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:snakecharmer2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/snakecharmer2 <> caves-1623/258/hydra/snakecharmer2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16787, now:16809)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:snakecharmer3, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/snakecharmer3 <> caves-1623/258/hydra/snakecharmer3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 15 (previous: 16809, now:16824)
+> > > > > - Include path found, including - caves-1623/258/hydra/hipstersreturn
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hipstersreturn
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:hipstersreturn, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/hipstersreturn <> caves-1623/258/hydra/hipstersreturn
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16824, now:16834)
+> > > > > - Include path found, including - caves-1623/258/hydra/beckoning_silence
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/beckoning_silence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:beckoning_silence, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/beckoning_silence <> caves-1623/258/hydra/beckoning_silence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16834, now:16856)
+> > > > > - Include path found, including - caves-1623/258/hydra/theloserlido
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/theloserlido
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:theloserlido, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/theloserlido <> caves-1623/258/hydra/theloserlido
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16856, now:16878)
+> > > > > - Include path found, including - caves-1623/258/hydra/bahamastunnel
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/bahamastunnel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:bahamastunnel, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/bahamastunnel <> caves-1623/258/hydra/bahamastunnel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16878, now:16885)
+> > > > > - Include path found, including - caves-1623/258/hydra/unfathomablestupidity
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/unfathomablestupidity
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:unfathomablestupidity, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/unfathomablestupidity <> caves-1623/258/hydra/unfathomablestupidity
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16885, now:16890)
+> > > > > - Include path found, including - caves-1623/258/hydra/lower_snakebite
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lower_snakebite
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:lower_snakebite, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/lower_snakebite <> caves-1623/258/hydra/lower_snakebite
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16890, now:16900)
+> > > > > - Include path found, including - caves-1623/258/hydra/radiosilence
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/radiosilence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:radiosilence, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/radiosilence <> caves-1623/258/hydra/radiosilence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16900, now:16907)
+> > > > > - Include path found, including - caves-1623/258/hydra/scumoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scumoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:scumoftheearth, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/scumoftheearth <> caves-1623/258/hydra/scumoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 512 (previous: 16907, now:17419)
+> > > > > - Include path found, including - caves-1623/258/hydra/scum2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scum2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:scum2, creating new SurvexBlock
+> > > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hydra/scum2 <> caves-1623/258/hydra/scum2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 75 (previous: 17419, now:17494)
+> > > > - Include path found, including - caves-1623/258/1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/1 <> caves-1623/258/1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17494, now:17498)
+> > > > - Include path found, including - caves-1623/258/2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/2 <> caves-1623/258/2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 24 (previous: 17498, now:17522)
+> > > > - Include path found, including - caves-1623/258/ribsknodel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:ribsknodel, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/ribsknodel <> caves-1623/258/ribsknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 18 (previous: 17522, now:17540)
+> > > > - Include path found, including - caves-1623/258/ribsknodel2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:ribsknodel2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/ribsknodel2 <> caves-1623/258/ribsknodel2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17540, now:17543)
+> > > > - Include path found, including - caves-1623/258/skrautlink
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/skrautlink
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:skrautlink, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/skrautlink <> caves-1623/258/skrautlink
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 1 (previous: 17543, now:17544)
+> > > > - Include path found, including - caves-1623/258/sauerkraut
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/sauerkraut
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sauerkraut, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/sauerkraut <> caves-1623/258/sauerkraut
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17544, now:17548)
+> > > > - Include path found, including - caves-1623/258/gknodel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/gknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:gknodel, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/gknodel <> caves-1623/258/gknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 17548, now:17564)
+> > > > - Include path found, including - caves-1623/258/literalnorth
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/literalnorth <> caves-1623/258/literalnorth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 17564, now:17581)
+> > > > - Include path found, including - caves-1623/258/squirrel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/squirrel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:squirrel, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/squirrel <> caves-1623/258/squirrel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17581, now:17591)
+> > > > - Include path found, including - caves-1623/258/oompah
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:oompah, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/oompah <> caves-1623/258/oompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17591, now:17596)
+> > > > - Include path found, including - caves-1623/258/apfelstrudel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/apfelstrudel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:apfelstrudel, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/apfelstrudel <> caves-1623/258/apfelstrudel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 18 (previous: 17596, now:17614)
+> > > > - Include path found, including - caves-1623/258/literalnorth2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/literalnorth2 <> caves-1623/258/literalnorth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 17614, now:17616)
+> > > > - Include path found, including - caves-1623/258/literalnorth3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth3, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/literalnorth3 <> caves-1623/258/literalnorth3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17616, now:17620)
+> > > > - Include path found, including - caves-1623/258/maxpleasure1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure1, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/maxpleasure1 <> caves-1623/258/maxpleasure1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 24 (previous: 17620, now:17644)
+> > > > - Include path found, including - caves-1623/258/dubiouspleasure
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/dubiouspleasure
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:dubiouspleasure, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/dubiouspleasure <> caves-1623/258/dubiouspleasure
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17644, now:17654)
+> > > > - Include path found, including - caves-1623/258/maxpleasure2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/maxpleasure2 <> caves-1623/258/maxpleasure2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 37 (previous: 17654, now:17691)
+> > > > - Include path found, including - caves-1623/258/hedonismhighway
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hedonismhighway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:hedonismhighway, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hedonismhighway <> caves-1623/258/hedonismhighway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17691, now:17695)
+> > > > - Include path found, including - caves-1623/258/flyinghigh
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/flyinghigh <> caves-1623/258/flyinghigh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 17695, now:17718)
+> > > > - Include path found, including - caves-1623/258/flyinghigh2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/flyinghigh2 <> caves-1623/258/flyinghigh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17718, now:17723)
+> > > > - Include path found, including - caves-1623/258/pantinsales
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/pantinsales
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pantinsales, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/pantinsales <> caves-1623/258/pantinsales
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17723, now:17728)
+> > > > - Include path found, including - caves-1623/258/maxpleasure3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure3, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/maxpleasure3 <> caves-1623/258/maxpleasure3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 42 (previous: 17728, now:17770)
+> > > > - Include path found, including - caves-1623/258/maxpleasure4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure4, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/maxpleasure4 <> caves-1623/258/maxpleasure4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17770, now:17773)
+> > > > - Include path found, including - caves-1623/258/literalnorth4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth4, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/literalnorth4 <> caves-1623/258/literalnorth4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17773, now:17779)
+> > > > - Include path found, including - caves-1623/258/maxpleasure5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure5, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/maxpleasure5 <> caves-1623/258/maxpleasure5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17779, now:17782)
+> > > > - Include path found, including - caves-1623/258/justforalaugh
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:justforalaugh, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/justforalaugh <> caves-1623/258/justforalaugh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 17782, now:17805)
+> > > > - Include path found, including - caves-1623/258/letsgetnaked
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/letsgetnaked
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:letsgetnaked, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/letsgetnaked <> caves-1623/258/letsgetnaked
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 17805, now:17827)
+> > > > - Include path found, including - caves-1623/258/maxpleasure6
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure6, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/maxpleasure6 <> caves-1623/258/maxpleasure6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17827, now:17830)
+> > > > - Include path found, including - caves-1623/258/justforalaugh2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:justforalaugh2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/justforalaugh2 <> caves-1623/258/justforalaugh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17830, now:17836)
+> > > > - Include path found, including - caves-1623/258/loompah
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/loompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:loompah, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/loompah <> caves-1623/258/loompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17836, now:17841)
+> > > > - Include path found, including - caves-1623/258/delicious1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:delicious1, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/delicious1 <> caves-1623/258/delicious1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 17841, now:17843)
+> > > > - Include path found, including - caves-1623/258/delicious2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:delicious2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/delicious2 <> caves-1623/258/delicious2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17843, now:17853)
+> > > > - Include path found, including - caves-1623/258/darkfumblings
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/darkfumblings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:darkfumblings, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/darkfumblings <> caves-1623/258/darkfumblings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17853, now:17859)
+> > > > - Include path found, including - caves-1623/258/bouldersurfer
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/bouldersurfer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bouldersurfer, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/bouldersurfer <> caves-1623/258/bouldersurfer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 17859, now:17880)
+> > > > - Include path found, including - caves-1623/258/naughtynaughty
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:naughtynaughty, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/naughtynaughty <> caves-1623/258/naughtynaughty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 37 (previous: 17880, now:17917)
+> > > > - Include path found, including - caves-1623/258/flapjackchoke
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/flapjackchoke
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flapjackchoke, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/flapjackchoke <> caves-1623/258/flapjackchoke
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 17917, now:17928)
+> > > > - Include path found, including - caves-1623/258/rockyroad
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/rockyroad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:rockyroad, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/rockyroad <> caves-1623/258/rockyroad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 46 (previous: 17928, now:17974)
+> > > > - Include path found, including - caves-1623/258/flyinghigh3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh3, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/flyinghigh3 <> caves-1623/258/flyinghigh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17974, now:17984)
+> > > > - Include path found, including - caves-1623/258/gravityalwayswins
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/gravityalwayswins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:gravityalwayswins, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/gravityalwayswins <> caves-1623/258/gravityalwayswins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 17984, now:18005)
+> > > > - Include path found, including - caves-1623/258/thinredline
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thinredline, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/thinredline <> caves-1623/258/thinredline
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 18005, now:18011)
+> > > > - Include path found, including - caves-1623/258/blindandbroken
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/blindandbroken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:blindandbroken, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/blindandbroken <> caves-1623/258/blindandbroken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18011, now:18019)
+> > > > - Include path found, including - caves-1623/258/franklyfreezing
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:franklyfreezing, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/franklyfreezing <> caves-1623/258/franklyfreezing
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18019, now:18027)
+> > > > - Include path found, including - caves-1623/258/franklyfreezing2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:franklyfreezing2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/franklyfreezing2 <> caves-1623/258/franklyfreezing2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18027, now:18043)
+> > > > - Include path found, including - caves-1623/258/literalnorth5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth5, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/literalnorth5 <> caves-1623/258/literalnorth5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18043, now:18047)
+> > > > - Include path found, including - caves-1623/258/naughtynaughty2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:naughtynaughty2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/naughtynaughty2 <> caves-1623/258/naughtynaughty2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 26 (previous: 18047, now:18073)
+> > > > - Include path found, including - caves-1623/258/thinredline2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thinredline2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/thinredline2 <> caves-1623/258/thinredline2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 18073, now:18083)
+> > > > - Include path found, including - caves-1623/258/toomuch
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/toomuch
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:toomuch, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/toomuch <> caves-1623/258/toomuch
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 18083, now:18095)
+> > > > - Include path found, including - caves-1623/258/sleepingbeauty
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/sleepingbeauty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sleepingbeauty, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/sleepingbeauty <> caves-1623/258/sleepingbeauty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18095, now:18099)
+> > > > - Include path found, including - caves-1623/258/usualsuspects
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 27 (previous: 18099, now:18126)
+> > > > - Include path found, including - caves-1623/258/marconianempire1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/marconianempire1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:marconianempire1, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/marconianempire1 <> caves-1623/258/marconianempire1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18126, now:18140)
+> > > > - Include path found, including - caves-1623/258/stomachulsa
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:stomachulsa, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stomachulsa <> caves-1623/258/stomachulsa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18140, now:18157)
+> > > > - Include path found, including - caves-1623/258/dampsquib
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/dampsquib
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:dampsquib, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/dampsquib <> caves-1623/258/dampsquib
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18157, now:18164)
+> > > > - Include path found, including - caves-1623/258/stomachulsa2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:stomachulsa2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stomachulsa2 <> caves-1623/258/stomachulsa2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18164, now:18172)
+> > > > - Include path found, including - caves-1623/258/cleadjackpot
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/cleadjackpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:cleadjackpot, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/cleadjackpot <> caves-1623/258/cleadjackpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18172, now:18186)
+> > > > - Include path found, including - caves-1623/258/alphabetsoup
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/alphabetsoup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:alphabetsoup, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/alphabetsoup <> caves-1623/258/alphabetsoup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18186, now:18197)
+> > > > - Include path found, including - caves-1623/258/goodygoody
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/goodygoody
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:goodygoody, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/goodygoody <> caves-1623/258/goodygoody
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 63 (previous: 18197, now:18260)
+> > > > - Include path found, including - caves-1623/258/atobtoc
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/atobtoc
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:atobtoc, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/atobtoc <> caves-1623/258/atobtoc
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18260, now:18271)
+> > > > - Include path found, including - caves-1623/258/stringtheory
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/stringtheory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:stringtheory, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/stringtheory <> caves-1623/258/stringtheory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 18271, now:18292)
+> > > > - Include path found, including - caves-1623/258/konigsbergpassage
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsbergpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsbergpassage, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/konigsbergpassage <> caves-1623/258/konigsbergpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 35 (previous: 18292, now:18327)
+> > > > - Include path found, including - caves-1623/258/usualsuspects4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects4, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/usualsuspects4 <> caves-1623/258/usualsuspects4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18327, now:18341)
+> > > > - Include path found, including - caves-1623/258/usualsuspects5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects5, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/usualsuspects5 <> caves-1623/258/usualsuspects5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18341, now:18349)
+> > > > - Include path found, including - caves-1623/258/usualsuspects6
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects6, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/usualsuspects6 <> caves-1623/258/usualsuspects6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18349, now:18362)
+> > > > - Include path found, including - caves-1623/258/sovein
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sovein, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/sovein <> caves-1623/258/sovein
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18362, now:18379)
+> > > > - Include path found, including - caves-1623/258/konigsberg2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/konigsberg2 <> caves-1623/258/konigsberg2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 18379, now:18389)
+> > > > - Include path found, including - caves-1623/258/konigsberg3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg3, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/konigsberg3 <> caves-1623/258/konigsberg3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 19 (previous: 18389, now:18408)
+> > > > - Include path found, including - caves-1623/258/fallempire
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/fallempire
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:fallempire, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/fallempire <> caves-1623/258/fallempire
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18408, now:18415)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pigeondroppings, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/pigeondroppings <> caves-1623/258/pigeondroppings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18415, now:18432)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pigeondroppings2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/pigeondroppings2 <> caves-1623/258/pigeondroppings2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18432, now:18449)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pigeondroppings3, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/pigeondroppings3 <> caves-1623/258/pigeondroppings3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 26 (previous: 18449, now:18475)
+> > > > - Include path found, including - caves-1623/258/trident
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:trident, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/trident <> caves-1623/258/trident
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 15 (previous: 18475, now:18490)
+> > > > - Include path found, including - caves-1623/258/hastespeed
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/hastespeed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:hastespeed, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/hastespeed <> caves-1623/258/hastespeed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 18490, now:18512)
+> > > > - Include path found, including - caves-1623/258/straightchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:straightchoice, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/straightchoice <> caves-1623/258/straightchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 25 (previous: 18512, now:18537)
+> > > > - Include path found, including - caves-1623/258/arcticangle
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/arcticangle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:arcticangle, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/arcticangle <> caves-1623/258/arcticangle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 19 (previous: 18537, now:18556)
+> > > > - Include path found, including - caves-1623/258/straightchoiceexposed
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoiceexposed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:straightchoiceexposed, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/straightchoiceexposed <> caves-1623/258/straightchoiceexposed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 18556, now:18561)
+> > > > - Include path found, including - caves-1623/258/beerandsunshine
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/beerandsunshine
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:beerandsunshine, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/beerandsunshine <> caves-1623/258/beerandsunshine
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18561, now:18564)
+> > > > - Include path found, including - caves-1623/258/trident2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:trident2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/trident2 <> caves-1623/258/trident2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18564, now:18571)
+> > > > - Include path found, including - caves-1623/258/konigsberg4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg4, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/konigsberg4 <> caves-1623/258/konigsberg4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 18571, now:18593)
+> > > > - Include path found, including - caves-1623/258/sovein2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sovein2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/sovein2 <> caves-1623/258/sovein2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18593, now:18600)
+> > > > - Include path found, including - caves-1623/258/downtoearth
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:downtoearth, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/downtoearth <> caves-1623/258/downtoearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18600, now:18603)
+> > > > - Include path found, including - caves-1623/258/konigsberg5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg5, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/konigsberg5 <> caves-1623/258/konigsberg5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 29 (previous: 18603, now:18632)
+> > > > - Include path found, including - caves-1623/258/downtoearth2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:downtoearth2, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/downtoearth2 <> caves-1623/258/downtoearth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18632, now:18643)
+> > > > - Include path found, including - caves-1623/258/flyinghigh4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh4, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/flyinghigh4 <> caves-1623/258/flyinghigh4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18643, now:18647)
+> > > > - Include path found, including - caves-1623/258/flyinghigh5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh5, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/flyinghigh5 <> caves-1623/258/flyinghigh5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18647, now:18658)
+> > > > - Include path found, including - caves-1623/258/gawbypass
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/gawbypass
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:gawbypass, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/gawbypass <> caves-1623/258/gawbypass
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18658, now:18666)
+> > > > - Include path found, including - caves-1623/258/iceflow
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/iceflow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:iceflow, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/iceflow <> caves-1623/258/iceflow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 18666, now:18686)
+> > > > - Include path found, including - caves-1623/258/rampant
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/rampant
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:rampant, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/rampant <> caves-1623/258/rampant
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 18686, now:18698)
+> > > > - Include path found, including - caves-1623/258/tagbolts
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/tagbolts
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:tagbolta, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/tagbolts <> caves-1623/258/tagbolts
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 1 (previous: 18698, now:18699)
+> > > > - Include path found, including - caves-1623/258/popcornrift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/popcornrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:popcornrift, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/popcornrift <> caves-1623/258/popcornrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18699, now:18715)
+> > > > - Include path found, including - caves-1623/258/westsidestory
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/westsidestory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:westsidestory, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/westsidestory <> caves-1623/258/westsidestory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 18715, now:18721)
+> > > > - Include path found, including - caves-1623/258/sovein3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sovein3, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/sovein3 <> caves-1623/258/sovein3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 18721, now:18723)
+> > > > - Include path found, including - caves-1623/258/intothinair
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/intothinair
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:intothinair, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/intothinair <> caves-1623/258/intothinair
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18723, now:18736)
+> > > > - Include path found, including - caves-1623/258/tenthousandbusstops
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/tenthousandbusstops
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:tenthousandbusstops, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/tenthousandbusstops <> caves-1623/258/tenthousandbusstops
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18736, now:18743)
+> > > > - Include path found, including - caves-1623/258/bobon
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/bobon
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bobon, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/bobon <> caves-1623/258/bobon
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18743, now:18756)
+> > > > - Include path found, including - caves-1623/258/aboveandbeyond
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/aboveandbeyond
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:aboveandbeyond, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/aboveandbeyond <> caves-1623/258/aboveandbeyond
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 18756, now:18779)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/thirtyninesteps <> caves-1623/258/thirtyninesteps
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 39 (previous: 18779, now:18818)
+> > > > - Include path found, including - caves-1623/258/marchofthepenguins
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/258/258 <> caves-1623/258/marchofthepenguins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:marchofthepenguins, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/258/marchofthepenguins <> caves-1623/258/marchofthepenguins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 40 (previous: 18818, now:18858)
+> > > > - Include path found, including - caves-1623/258/aboveandbeyond2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/aboveandbeyond2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:aboveandbeyond2, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/aboveandbeyond2 <> caves-1623/258/aboveandbeyond2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 28 (previous: 18858, now:18886)
+> > > > - Include path found, including - caves-1623/258/thatsthewaytodoit
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thatsthewaytodoit
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thatsthewaytodoit, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/thatsthewaytodoit <> caves-1623/258/thatsthewaytodoit
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 31 (previous: 18886, now:18917)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps2, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/thirtyninesteps2 <> caves-1623/258/thirtyninesteps2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18917, now:18920)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps3, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/thirtyninesteps3 <> caves-1623/258/thirtyninesteps3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18920, now:18924)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps4, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/thirtyninesteps4 <> caves-1623/258/thirtyninesteps4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 18924, now:18926)
+> > > > - Include path found, including - caves-1623/258/itsbehindyou
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/itsbehindyou
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:itsbehindyou, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/itsbehindyou <> caves-1623/258/itsbehindyou
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18926, now:18934)
+> > > > - Include path found, including - caves-1623/258/procrastination
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/procrastination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:procrastination, creating new SurvexBlock
+> > > > > > - MEM:49.8203125 Reading. parent:caves-1623/258/procrastination <> caves-1623/258/procrastination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18934, now:18950)
+> > > > - Include path found, including - caves-1623/258/climbofthepenguins1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.82421875 Reading. parent:caves-1623/258/258 <> caves-1623/258/climbofthepenguins1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:climbofthepenguins1, creating new SurvexBlock
+> > > > > > - MEM:49.82421875 Reading. parent:caves-1623/258/climbofthepenguins1 <> caves-1623/258/climbofthepenguins1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18950, now:18953)
+> > > > - Include path found, including - caves-1623/258/climbofthepenguins2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.82421875 Reading. parent:caves-1623/258/258 <> caves-1623/258/climbofthepenguins2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:climbofthepenguins2, creating new SurvexBlock
+> > > > > > - MEM:49.82421875 Reading. parent:caves-1623/258/climbofthepenguins2 <> caves-1623/258/climbofthepenguins2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18953, now:18964)
+> > > > - Include path found, including - caves-1623/258/penguinacrobatics
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.82421875 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinacrobatics
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:penguinacrobatics, creating new SurvexBlock
+> > > > > > - MEM:49.82421875 Reading. parent:caves-1623/258/penguinacrobatics <> caves-1623/258/penguinacrobatics
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 86 (previous: 18964, now:19050)
+> > > > - Include path found, including - caves-1623/258/penguinrift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:penguinrift, creating new SurvexBlock
+> > > > > > - MEM:49.828125 Reading. parent:caves-1623/258/penguinrift <> caves-1623/258/penguinrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19050, now:19070)
+> > > > - Include path found, including - caves-1623/258/innerflapcontinuation
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/innerflapcontinuation
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:innerflapcontinuation, creating new SurvexBlock
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/258/innerflapcontinuation <> caves-1623/258/innerflapcontinuation
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19070, now:19090)
+> > > > - Include path found, including - caves-1623/258/suicidalvampyre
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/suicidalvampyre
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:suicidalvampyre, creating new SurvexBlock
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/258/suicidalvampyre <> caves-1623/258/suicidalvampyre
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19090, now:19094)
+> > > > - Include path found, including - caves-1623/258/bringontheclowns
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83203125 Reading. parent:caves-1623/258/258 <> caves-1623/258/bringontheclowns
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bringontheclowns, creating new SurvexBlock
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/258/bringontheclowns <> caves-1623/258/bringontheclowns
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19094, now:19102)
+> > > > - Include path found, including - caves-1623/258/determination
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8359375 Reading. parent:caves-1623/258/258 <> caves-1623/258/determination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:determination, creating new SurvexBlock
+> > > > > > - MEM:49.8359375 Reading. parent:caves-1623/258/determination <> caves-1623/258/determination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19102, now:19110)
+> > > > - Include path found, including - caves-1623/258/determination2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/determination2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:determination2, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/determination2 <> caves-1623/258/determination2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19110, now:19127)
+> > > > - Include path found, including - caves-1623/258/surfergirl
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/surfergirl
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:surfergirl, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/surfergirl <> caves-1623/258/surfergirl
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19127, now:19131)
+> > > > - Include path found, including - caves-1623/258/bringontheclowns2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/bringontheclowns2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bringontheclowns2, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/bringontheclowns2 <> caves-1623/258/bringontheclowns2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19131, now:19136)
+> > > > - Include path found, including - caves-1623/258/numberofthebeast
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/numberofthebeast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:numberofthebeast, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/numberofthebeast <> caves-1623/258/numberofthebeast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 19136, now:19149)
+> > > > - Include path found, including - caves-1623/258/numberofthebeast2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/numberofthebeast2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:numberofthebeast2, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/numberofthebeast2 <> caves-1623/258/numberofthebeast2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19149, now:19153)
+> > > > - Include path found, including - caves-1623/258/justforalaugh3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:justforalaugh3, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/justforalaugh3 <> caves-1623/258/justforalaugh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 19153, now:19155)
+> > > > - Include path found, including - caves-1623/258/downgrade
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/downgrade
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:downgrade, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/downgrade <> caves-1623/258/downgrade
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 19155, now:19177)
+> > > > - Include path found, including - caves-1623/258/boomboom
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/boomboom
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:boomboom, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/boomboom <> caves-1623/258/boomboom
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19177, now:19185)
+> > > > - Include path found, including - caves-1623/258/window
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/window
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:window, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/window <> caves-1623/258/window
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 19185, now:19199)
+> > > > - Include path found, including - caves-1623/258/crossword
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/crossword
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:crossword, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/crossword <> caves-1623/258/crossword
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 39 (previous: 19199, now:19238)
+> > > > - Include path found, including - caves-1623/258/oompharift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompharift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:oompharift, creating new SurvexBlock
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/oompharift <> caves-1623/258/oompharift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 19238, now:19250)
+> > > > - Include path found, including - caves-1623/258/withintheabove
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/withintheabove
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:withintheabove, creating new SurvexBlock
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/withintheabove <> caves-1623/258/withintheabove
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19250, now:19258)
+> > > > - Include path found, including - caves-1623/258/trireme
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/trireme
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:trireme, creating new SurvexBlock
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/trireme <> caves-1623/258/trireme
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19258, now:19263)
+> > > > - Include path found, including - caves-1623/258/ducksonice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/ducksonice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:ducksonice, creating new SurvexBlock
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/258/ducksonice <> caves-1623/258/ducksonice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19263, now:19280)
+> > > > - Include path found, including - caves-1623/258/coldladyslegs1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84375 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldladyslegs1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldladyslegs1, creating new SurvexBlock
+> > > > > > - MEM:49.84765625 Reading. parent:caves-1623/258/coldladyslegs1 <> caves-1623/258/coldladyslegs1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 51 (previous: 19280, now:19331)
+> > > > - Include path found, including - caves-1623/258/coldfinger
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84765625 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldfinger, creating new SurvexBlock
+> > > > > > - MEM:49.84765625 Reading. parent:caves-1623/258/coldfinger <> caves-1623/258/coldfinger
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 15 (previous: 19331, now:19346)
+> > > > - Include path found, including - caves-1623/258/coldfinger2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.84765625 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldfinger2, creating new SurvexBlock
+> > > > > > - MEM:49.84765625 Reading. parent:caves-1623/258/coldfinger2 <> caves-1623/258/coldfinger2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19346, now:19352)
+> > > > - Include path found, including - caves-1623/258/coldfinger3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldfinger3, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/coldfinger3 <> caves-1623/258/coldfinger3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19352, now:19369)
+> > > > - Include path found, including - caves-1623/258/thewrongchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/thewrongchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thewrongchoice, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/thewrongchoice <> caves-1623/258/thewrongchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 27 (previous: 19369, now:19396)
+> > > > - Include path found, including - caves-1623/258/nochoiceatall
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/nochoiceatall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:nochoiceatall, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/nochoiceatall <> caves-1623/258/nochoiceatall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 19396, now:19408)
+> > > > - Include path found, including - caves-1623/258/nochoiceatall2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/nochoiceatall2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:nochoiceatall2, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/nochoiceatall2 <> caves-1623/258/nochoiceatall2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19408, now:19413)
+> > > > - Include path found, including - caves-1623/258/generalscrot
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/generalscrot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:generalscrot, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/generalscrot <> caves-1623/258/generalscrot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 19413, now:19416)
+> > > > - Include path found, including - caves-1623/258/feckingtight
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/feckingtight
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:feckingtight, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/feckingtight <> caves-1623/258/feckingtight
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19416, now:19424)
+> > > > - Include path found, including - caves-1623/258/grikeexpectations
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/grikeexpectations
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:grikeexpectations, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/grikeexpectations <> caves-1623/258/grikeexpectations
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 19424, now:19438)
+> > > > - Include path found, including - caves-1623/258/inferno
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/inferno
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:inferno, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/inferno <> caves-1623/258/inferno
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19438, now:19458)
+> > > > - Include path found, including - caves-1623/258/anthemusa
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/anthemusa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:anthemusa, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/anthemusa <> caves-1623/258/anthemusa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19458, now:19475)
+> > > > - Include path found, including - caves-1623/258/flashhard
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/flashhard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flashhard, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/flashhard <> caves-1623/258/flashhard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19475, now:19479)
+> > > > - Include path found, including - caves-1623/258/flashhard2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/flashhard2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flashhard2, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/flashhard2 <> caves-1623/258/flashhard2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 9 (previous: 19479, now:19488)
+> > > > - Include path found, including - caves-1623/258/claytonscockup
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/claytonscockup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:claytonscockup, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/claytonscockup <> caves-1623/258/claytonscockup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 19488, now:19495)
+> > > > - Include path found, including - caves-1623/258/penguinfellatio2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinfellatio2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:penguinfellatio2, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/penguinfellatio2 <> caves-1623/258/penguinfellatio2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 19495, now:19506)
+> > > > - Include path found, including - caves-1623/258/daftchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:daftchoice, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/daftchoice <> caves-1623/258/daftchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 38 (previous: 19506, now:19544)
+> > > > - Include path found, including - caves-1623/258/daftchoice2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:daftchoice2, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/daftchoice2 <> caves-1623/258/daftchoice2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19544, now:19552)
+> > > > - Include path found, including - caves-1623/258/daftchoice3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:daftchoice3, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/daftchoice3 <> caves-1623/258/daftchoice3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19552, now:19558)
+> > > > - Include path found, including - caves-1623/258/whatwouldyourmothersay
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/whatwouldyourmothersay
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:whatwouldyourmothersay, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/whatwouldyourmothersay <> caves-1623/258/whatwouldyourmothersay
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 19558, now:19574)
+> > > > - Include path found, including - caves-1623/258/wrongway
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/wrongway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:wrongway, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/wrongway <> caves-1623/258/wrongway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 51 (previous: 19574, now:19625)
+> > > > - Include path found, including - caves-1623/258/not_the_beast
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/not_the_beast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:not_the_beast, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/not_the_beast <> caves-1623/258/not_the_beast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 19625, now:19635)
+> > > > - Include path found, including - caves-1623/258/riggermortis
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/riggermortis
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:riggermortis, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/riggermortis <> caves-1623/258/riggermortis
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 34 (previous: 19635, now:19669)
+> > > > - Include path found, including - caves-1623/258/thebeastloop
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/thebeastloop
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thebeastloop, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/thebeastloop <> caves-1623/258/thebeastloop
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19669, now:19674)
+> > > > - Include path found, including - caves-1623/258/beastsideleads
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/beastsideleads
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:beastsideleads, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/beastsideleads <> caves-1623/258/beastsideleads
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 19674, now:19677)
+> > > > - Include path found, including - caves-1623/258/corroborate
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/258 <> caves-1623/258/corroborate
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:corroborate1, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/258/corroborate <> caves-1623/258/corroborate
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19677, now:19683)
+> > > > LEGS: 3371 (previous: 16312, now:19683)
+> > > - Include path found, including - caves-1623/264/264
+> > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > - MEM:49.8515625 Reading. parent:kataster/1623 <> caves-1623/264/264
+[<Cave: 1623-264>]
+> > > > - Begin found for:264, creating new SurvexBlock
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/264 <> caves-1623/264/264
+[<Cave: 1623-264>]
+> > > > - Include path found, including - caves-1623/264/lower_balkon/lower_balkon
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/264 <> caves-1623/264/lower_balkon/lower_balkon
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lower_balkon, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lower_balkon
+[<Cave: 1623-264>]
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/naturecalls
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/naturecalls
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:naturecalls, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/naturecalls <> caves-1623/264/lower_balkon/naturecalls
+[<Cave: 1623-264>]
+> > > > > > LEGS: 9 (previous: 19683, now:19692)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mash
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mash, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/mash <> caves-1623/264/lower_balkon/mash
+[<Cave: 1623-264>]
+> > > > > > LEGS: 48 (previous: 19692, now:19740)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mash2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mash2, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/mash2 <> caves-1623/264/lower_balkon/mash2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 65 (previous: 19740, now:19805)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/hangman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:hangman, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/hangman <> caves-1623/264/lower_balkon/hangman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 145 (previous: 19805, now:19950)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangmansdaughter
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:hangmansdaughter, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/hangmansdaughter <> caves-1623/264/lower_balkon/hangmansdaughter
+[<Cave: 1623-264>]
+> > > > > > LEGS: 217 (previous: 19950, now:20167)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/prangman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/prangman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:prangman, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/prangman <> caves-1623/264/lower_balkon/prangman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 55 (previous: 20167, now:20222)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/snailtrail
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/snailtrail
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:snailtrail, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/snailtrail <> caves-1623/264/lower_balkon/snailtrail
+[<Cave: 1623-264>]
+> > > > > > LEGS: 206 (previous: 20222, now:20428)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/sluggish
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/sluggish
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:sluggish, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/sluggish <> caves-1623/264/lower_balkon/sluggish
+[<Cave: 1623-264>]
+> > > > > > LEGS: 173 (previous: 20428, now:20601)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mudslope
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mudslope, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/mudslope <> caves-1623/264/lower_balkon/mudslope
+[<Cave: 1623-264>]
+> > > > > > LEGS: 241 (previous: 20601, now:20842)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/choked
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/choked
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:choked, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/choked <> caves-1623/264/lower_balkon/choked
+[<Cave: 1623-264>]
+> > > > > > LEGS: 152 (previous: 20842, now:20994)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mudslope2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mudslope2, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/mudslope2 <> caves-1623/264/lower_balkon/mudslope2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 255 (previous: 20994, now:21249)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mongolrally
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mongolrally
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mongolrally, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/mongolrally <> caves-1623/264/lower_balkon/mongolrally
+[<Cave: 1623-264>]
+> > > > > > LEGS: 398 (previous: 21249, now:21647)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/littleboy
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboy
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:littleboy, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/littleboy <> caves-1623/264/lower_balkon/littleboy
+[<Cave: 1623-264>]
+> > > > > > LEGS: 1169 (previous: 21647, now:22816)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/floodland
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/floodland
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:floodland, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/floodland <> caves-1623/264/lower_balkon/floodland
+[<Cave: 1623-264>]
+> > > > > > LEGS: 93 (previous: 22816, now:22909)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/catlitter
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/catlitter
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:catlitter, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/catlitter <> caves-1623/264/lower_balkon/catlitter
+[<Cave: 1623-264>]
+> > > > > > LEGS: 7 (previous: 22909, now:22916)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/myopia
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:myopia, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/myopia <> caves-1623/264/lower_balkon/myopia
+[<Cave: 1623-264>]
+> > > > > > LEGS: 11 (previous: 22916, now:22927)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop <> caves-1623/264/lower_balkon/pitstop
+[<Cave: 1623-264>]
+> > > > > > LEGS: 56 (previous: 22927, now:22983)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/safencomfortable
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/safencomfortable
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:safencomfortable, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/safencomfortable <> caves-1623/264/lower_balkon/safencomfortable
+[<Cave: 1623-264>]
+> > > > > > LEGS: 43 (previous: 22983, now:23026)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/turnbacktime
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/turnbacktime
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:turnbacktime, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/turnbacktime <> caves-1623/264/lower_balkon/turnbacktime
+[<Cave: 1623-264>]
+> > > > > > LEGS: 21 (previous: 23026, now:23047)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop_2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop_2 <> caves-1623/264/lower_balkon/pitstop_2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 2 (previous: 23047, now:23049)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_3
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop_3, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop_3 <> caves-1623/264/lower_balkon/pitstop_3
+[<Cave: 1623-264>]
+> > > > > > LEGS: 7 (previous: 23049, now:23056)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_4
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop_4, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop_4 <> caves-1623/264/lower_balkon/pitstop_4
+[<Cave: 1623-264>]
+> > > > > > LEGS: 9 (previous: 23056, now:23065)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/suctioncup
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/suctioncup
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:suctioncup, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/suctioncup <> caves-1623/264/lower_balkon/suctioncup
+[<Cave: 1623-264>]
+> > > > > > LEGS: 371 (previous: 23065, now:23436)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/onedirection
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/onedirection
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:onedirection, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/onedirection <> caves-1623/264/lower_balkon/onedirection
+[<Cave: 1623-264>]
+> > > > > > LEGS: 28 (previous: 23436, now:23464)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/scoopyloopy
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/scoopyloopy
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:scoopyloopy, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/scoopyloopy <> caves-1623/264/lower_balkon/scoopyloopy
+[<Cave: 1623-264>]
+> > > > > > LEGS: 12 (previous: 23464, now:23476)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/2cold2think
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/2cold2think
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:2cold2think, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/2cold2think <> caves-1623/264/lower_balkon/2cold2think
+[<Cave: 1623-264>]
+> > > > > > LEGS: 64 (previous: 23476, now:23540)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mush
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mush
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mush, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mush <> caves-1623/264/lower_balkon/mush
+[<Cave: 1623-264>]
+> > > > > > LEGS: 465 (previous: 23540, now:24005)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/rubberman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubberman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:rubberman, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/rubberman <> caves-1623/264/lower_balkon/rubberman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 217 (previous: 24005, now:24222)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/rubbermanstream
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubbermanstream
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:rubbermanstream, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/rubbermanstream <> caves-1623/264/lower_balkon/rubbermanstream
+[<Cave: 1623-264>]
+> > > > > > LEGS: 86 (previous: 24222, now:24308)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/camploop
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/camploop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:camploop, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/camploop <> caves-1623/264/lower_balkon/camploop
+[<Cave: 1623-264>]
+> > > > > > LEGS: 35 (previous: 24308, now:24343)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/waterhole
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/waterhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:waterhole, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/waterhole <> caves-1623/264/lower_balkon/waterhole
+[<Cave: 1623-264>]
+> > > > > > LEGS: 18 (previous: 24343, now:24361)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboyboltclimbs
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:littleboyboltclimbs, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/littleboyboltclimbs <> caves-1623/264/lower_balkon/littleboyboltclimbs
+[<Cave: 1623-264>]
+> > > > > > LEGS: 4 (previous: 24361, now:24365)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:lbbeneaththeboulders, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lbbeneaththeboulders <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+[<Cave: 1623-264>]
+> > > > > > LEGS: 10 (previous: 24365, now:24375)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/ntdwyt
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ntdwyt
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:ntdwyt, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/ntdwyt <> caves-1623/264/lower_balkon/ntdwyt
+[<Cave: 1623-264>]
+> > > > > > LEGS: 6 (previous: 24375, now:24381)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/northernpowerhouse
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:northernpowerhouse, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/northernpowerhouse <> caves-1623/264/lower_balkon/northernpowerhouse
+[<Cave: 1623-264>]
+> > > > > > LEGS: 202 (previous: 24381, now:24583)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:youdontknowyourebeautiful, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/youdontknowyourebeautiful <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+[<Cave: 1623-264>]
+> > > > > > LEGS: 237 (previous: 24583, now:24820)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/microscopicthunder
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/microscopicthunder
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:microscopicthunder, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/microscopicthunder <> caves-1623/264/lower_balkon/microscopicthunder
+[<Cave: 1623-264>]
+> > > > > > LEGS: 62 (previous: 24820, now:24882)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ichfuhlenichts
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:ichfuhlenichts, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/ichfuhlenichts <> caves-1623/264/lower_balkon/ichfuhlenichts
+[<Cave: 1623-264>]
+> > > > > > LEGS: 118 (previous: 24882, now:25000)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/einfach
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/einfach
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:einfach, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/einfach <> caves-1623/264/lower_balkon/einfach
+[<Cave: 1623-264>]
+> > > > > > LEGS: 20 (previous: 25000, now:25020)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lipstickdipstick
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:lipstickdipstick, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lipstickdipstick <> caves-1623/264/lower_balkon/lipstickdipstick
+[<Cave: 1623-264>]
+> > > > > > LEGS: 19 (previous: 25020, now:25039)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/medusasmaze
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:medusasmaze, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/medusasmaze <> caves-1623/264/lower_balkon/medusasmaze
+[<Cave: 1623-264>]
+> > > > > > LEGS: 32 (previous: 25039, now:25071)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/medusasmaze2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:medusasmaze2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/medusasmaze2 <> caves-1623/264/lower_balkon/medusasmaze2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 33 (previous: 25071, now:25104)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/wheresthemilk
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/wheresthemilk
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:wheresthemilk, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/wheresthemilk <> caves-1623/264/lower_balkon/wheresthemilk
+[<Cave: 1623-264>]
+> > > > > > LEGS: 6 (previous: 25104, now:25110)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/drunkdrivers
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/drunkdrivers
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:drunkdrivers, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/drunkdrivers <> caves-1623/264/lower_balkon/drunkdrivers
+[<Cave: 1623-264>]
+> > > > > > LEGS: 3 (previous: 25110, now:25113)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/custardcavalry
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/custardcavalry
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:custardcavalry, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/custardcavalry <> caves-1623/264/lower_balkon/custardcavalry
+[<Cave: 1623-264>]
+> > > > > > LEGS: 2 (previous: 25113, now:25115)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/myopia2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:myopia2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/myopia2 <> caves-1623/264/lower_balkon/myopia2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 3 (previous: 25115, now:25118)
+> > > > > LEGS: 5435 (previous: 19683, now:25118)
+> > > > - Include path found, including - caves-1623/264/horizontalentrance
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/horizontalentrance
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:horizontalentrance, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/horizontalentrance <> caves-1623/264/horizontalentrance
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25118, now:25126)
+> > > > - Include path found, including - caves-1623/264/entrancepitch1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:entrancepitch1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/entrancepitch1 <> caves-1623/264/entrancepitch1
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25126, now:25129)
+> > > > - Include path found, including - caves-1623/264/entrancepitch2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:entrancepitch2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/entrancepitch2 <> caves-1623/264/entrancepitch2
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25129, now:25134)
+> > > > - Include path found, including - caves-1623/264/roomwithaview
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roomwithaview, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roomwithaview <> caves-1623/264/roomwithaview
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 25134, now:25144)
+> > > > - Include path found, including - caves-1623/264/roommop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roommop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roommop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roommop <> caves-1623/264/roommop
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25144, now:25147)
+> > > > - Include path found, including - caves-1623/264/roomwithaview2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roomwithaview2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roomwithaview2 <> caves-1623/264/roomwithaview2
+[<Cave: 1623-264>]
+> > > > > LEGS: 20 (previous: 25147, now:25167)
+> > > > - Include path found, including - caves-1623/264/smashcrashpassage
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/smashcrashpassage
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:smashcrashpassage, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/smashcrashpassage <> caves-1623/264/smashcrashpassage
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25167, now:25179)
+> > > > - Include path found, including - caves-1623/264/crashmop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/crashmop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:crashmop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/crashmop <> caves-1623/264/crashmop
+[<Cave: 1623-264>]
+> > > > > LEGS: 26 (previous: 25179, now:25205)
+> > > > - Include path found, including - caves-1623/264/liarsbakery
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/liarsbakery
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:liarsbakery, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/liarsbakery <> caves-1623/264/liarsbakery
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 25205, now:25220)
+> > > > - Include path found, including - caves-1623/264/pitpot
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitpot, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitpot <> caves-1623/264/pitpot
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25220, now:25222)
+> > > > - Include path found, including - caves-1623/264/lemonsnout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lemonsnout, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lemonsnout <> caves-1623/264/lemonsnout
+[<Cave: 1623-264>]
+> > > > > LEGS: 27 (previous: 25222, now:25249)
+> > > > - Include path found, including - caves-1623/264/leedsbypass
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:leedsbypass, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/leedsbypass <> caves-1623/264/leedsbypass
+[<Cave: 1623-264>]
+> > > > > LEGS: 37 (previous: 25249, now:25286)
+> > > > - Include path found, including - caves-1623/264/pitpot2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitpot2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitpot2 <> caves-1623/264/pitpot2
+[<Cave: 1623-264>]
+> > > > > LEGS: 13 (previous: 25286, now:25299)
+> > > > - Include path found, including - caves-1623/264/pitpot3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitpot3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitpot3 <> caves-1623/264/pitpot3
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25299, now:25304)
+> > > > - Include path found, including - caves-1623/264/amalgamation
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/amalgamation
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:amalgamation, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/amalgamation <> caves-1623/264/amalgamation
+[<Cave: 1623-264>]
+> > > > > LEGS: 48 (previous: 25304, now:25352)
+> > > > - Include path found, including - caves-1623/264/darkarts
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkarts
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkarts, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkarts <> caves-1623/264/darkarts
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25352, now:25363)
+> > > > - Include path found, including - caves-1623/264/darkartsII
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsII
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsii, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsII <> caves-1623/264/darkartsII
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 25363, now:25373)
+> > > > - Include path found, including - caves-1623/264/darkartsI
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsI
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsi, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsI <> caves-1623/264/darkartsI
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 25373, now:25388)
+> > > > - Include path found, including - caves-1623/264/leedsbypass2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:leedsbypass2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/leedsbypass2 <> caves-1623/264/leedsbypass2
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25388, now:25400)
+> > > > - Include path found, including - caves-1623/264/darkartsiii
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiii
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsiii, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsiii <> caves-1623/264/darkartsiii
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25400, now:25405)
+> > > > - Include path found, including - caves-1623/264/scrottytubei
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubei
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:scrottytubei, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/scrottytubei <> caves-1623/264/scrottytubei
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25405, now:25408)
+> > > > - Include path found, including - caves-1623/264/scrottytubeii
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubeii
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:scrottytubeii, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/scrottytubeii <> caves-1623/264/scrottytubeii
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25408, now:25415)
+> > > > - Include path found, including - caves-1623/264/lemonsnoutrosyringpiece
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnoutrosyringpiece
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lemonsnoutrosyringpiece, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lemonsnoutrosyringpiece <> caves-1623/264/lemonsnoutrosyringpiece
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25415, now:25421)
+> > > > - Include path found, including - caves-1623/264/pointlesssniffing
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointlesssniffing
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pointlesssniffing, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pointlesssniffing <> caves-1623/264/pointlesssniffing
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25421, now:25423)
+> > > > - Include path found, including - caves-1623/264/deadbatpitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:deadbatpitch, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/deadbatpitch <> caves-1623/264/deadbatpitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25423, now:25430)
+> > > > - Include path found, including - caves-1623/264/deadbatpitchconn
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitchconn
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:deadbatpitchconn, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/deadbatpitchconn <> caves-1623/264/deadbatpitchconn
+[<Cave: 1623-264>]
+> > > > > LEGS: 1 (previous: 25430, now:25431)
+> > > > - Include path found, including - caves-1623/264/lemoncrapout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemoncrapout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lemoncrapout, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lemoncrapout <> caves-1623/264/lemoncrapout
+[<Cave: 1623-264>]
+> > > > > LEGS: 16 (previous: 25431, now:25447)
+> > > > - Include path found, including - caves-1623/264/farside
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/farside
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:farside, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/farside <> caves-1623/264/farside
+[<Cave: 1623-264>]
+> > > > > LEGS: 77 (previous: 25447, now:25524)
+> > > > - Include path found, including - caves-1623/264/turtlehead
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtlehead
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:turtlehead, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/turtlehead <> caves-1623/264/turtlehead
+[<Cave: 1623-264>]
+> > > > > LEGS: 48 (previous: 25524, now:25572)
+> > > > - Include path found, including - caves-1623/264/turtleheadco
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtleheadco
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:turtleheadco, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/turtleheadco <> caves-1623/264/turtleheadco
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25572, now:25578)
+> > > > - Include path found, including - caves-1623/264/leedsbypass3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:leedsbypass3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/leedsbypass3 <> caves-1623/264/leedsbypass3
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25578, now:25581)
+> > > > - Include path found, including - caves-1623/264/hiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplenty
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltiaplenty, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltiaplenty <> caves-1623/264/hiltiaplenty
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 25581, now:25585)
+> > > > - Include path found, including - caves-1623/264/spanner
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/spanner
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:spanner, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/spanner <> caves-1623/264/spanner
+[<Cave: 1623-264>]
+> > > > > LEGS: 14 (previous: 25585, now:25599)
+> > > > - Include path found, including - caves-1623/264/cathedralchasm
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedralchasm, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralchasm <> caves-1623/264/cathedralchasm
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25599, now:25610)
+> > > > - Include path found, including - caves-1623/264/cathedralLC1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedrallc1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralLC1 <> caves-1623/264/cathedralLC1
+[<Cave: 1623-264>]
+> > > > > LEGS: 1 (previous: 25610, now:25611)
+> > > > - Include path found, including - caves-1623/264/cathedralLC2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedrallc2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralLC2 <> caves-1623/264/cathedralLC2
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25611, now:25619)
+> > > > - Include path found, including - caves-1623/264/avalancheexperience
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/avalancheexperience
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:avalancheexperience, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/avalancheexperience <> caves-1623/264/avalancheexperience
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 25619, now:25638)
+> > > > - Include path found, including - caves-1623/264/pitch59b
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitch59b
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitch59b, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitch59b <> caves-1623/264/pitch59b
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25638, now:25655)
+> > > > - Include path found, including - caves-1623/264/noserock
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:noserock, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/noserock <> caves-1623/264/noserock
+[<Cave: 1623-264>]
+> > > > > LEGS: 39 (previous: 25655, now:25694)
+> > > > - Include path found, including - caves-1623/264/einundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/einundzwanzig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:einundzwanzig, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/einundzwanzig <> caves-1623/264/einundzwanzig
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25694, now:25706)
+> > > > - Include path found, including - caves-1623/264/icecock
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecock, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecock <> caves-1623/264/icecock
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25706, now:25717)
+> > > > - Include path found, including - caves-1623/264/noserock2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:noserock2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/noserock2 <> caves-1623/264/noserock2
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25717, now:25723)
+> > > > - Include path found, including - caves-1623/264/northhole
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:northhole, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/northhole <> caves-1623/264/northhole
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25723, now:25740)
+> > > > - Include path found, including - caves-1623/264/icecock2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecock2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecock2 <> caves-1623/264/icecock2
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25740, now:25747)
+> > > > - Include path found, including - caves-1623/264/gosserwager
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager <> caves-1623/264/gosserwager
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25747, now:25755)
+> > > > - Include path found, including - caves-1623/264/gosserwager2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager2 <> caves-1623/264/gosserwager2
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25755, now:25761)
+> > > > - Include path found, including - caves-1623/264/frozennorth
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth <> caves-1623/264/frozennorth
+[<Cave: 1623-264>]
+> > > > > LEGS: 18 (previous: 25761, now:25779)
+> > > > - Include path found, including - caves-1623/264/frozennorth2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth2 <> caves-1623/264/frozennorth2
+[<Cave: 1623-264>]
+> > > > > LEGS: 25 (previous: 25779, now:25804)
+> > > > - Include path found, including - caves-1623/264/icecockLC1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecocklc1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecockLC1 <> caves-1623/264/icecockLC1
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25804, now:25807)
+> > > > - Include path found, including - caves-1623/264/icecockLC2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecocklc2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecockLC2 <> caves-1623/264/icecockLC2
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25807, now:25809)
+> > > > - Include path found, including - caves-1623/264/bipedal
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedal
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedal, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedal <> caves-1623/264/bipedal
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25809, now:25811)
+> > > > - Include path found, including - caves-1623/264/frozennorth3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth3 <> caves-1623/264/frozennorth3
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25811, now:25817)
+> > > > - Include path found, including - caves-1623/264/rabbitwarrens
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrens
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:rabbitwarrens, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/rabbitwarrens <> caves-1623/264/rabbitwarrens
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 25817, now:25836)
+> > > > - Include path found, including - caves-1623/264/digdug
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/digdug
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:digdug, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/digdug <> caves-1623/264/digdug
+[<Cave: 1623-264>]
+> > > > > LEGS: 57 (previous: 25836, now:25893)
+> > > > - Include path found, including - caves-1623/264/beyonddigdug
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyonddigdug
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:beyonddigdug, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/beyonddigdug <> caves-1623/264/beyonddigdug
+[<Cave: 1623-264>]
+> > > > > LEGS: 16 (previous: 25893, now:25909)
+> > > > - Include path found, including - caves-1623/264/beyondthunderdome
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyondthunderdome
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:beyondthunderdome, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/beyondthunderdome <> caves-1623/264/beyondthunderdome
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25909, now:25926)
+> > > > - Include path found, including - caves-1623/264/pubicsynthesis
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pubicsynthesis
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pubicsynthesis, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pubicsynthesis <> caves-1623/264/pubicsynthesis
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25926, now:25933)
+> > > > - Include path found, including - caves-1623/264/hiltiaplentypitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentypitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltiaplentypitch, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltiaplentypitch <> caves-1623/264/hiltiaplentypitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 38 (previous: 25933, now:25971)
+> > > > - Include path found, including - caves-1623/264/hiltiaplentychamber
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentychamber
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltiaplentychamber, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltiaplentychamber <> caves-1623/264/hiltiaplentychamber
+[<Cave: 1623-264>]
+> > > > > LEGS: 44 (previous: 25971, now:26015)
+> > > > - Include path found, including - caves-1623/264/ulsagrotto
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/ulsagrotto
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:ulsagrotto, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/ulsagrotto <> caves-1623/264/ulsagrotto
+[<Cave: 1623-264>]
+> > > > > LEGS: 73 (previous: 26015, now:26088)
+> > > > - Include path found, including - caves-1623/264/sponge_chamber
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sponge_chamber, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/sponge_chamber <> caves-1623/264/sponge_chamber
+[<Cave: 1623-264>]
+> > > > > LEGS: 56 (previous: 26088, now:26144)
+> > > > - Include path found, including - caves-1623/264/sponge_chamber2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sponge_chamber2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/sponge_chamber2 <> caves-1623/264/sponge_chamber2
+[<Cave: 1623-264>]
+> > > > > LEGS: 31 (previous: 26144, now:26175)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage <> caves-1623/264/bipedalpassage
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26175, now:26205)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage2 <> caves-1623/264/bipedalpassage2
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 26205, now:26220)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage3 <> caves-1623/264/bipedalpassage3
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26220, now:26224)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage4, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage4 <> caves-1623/264/bipedalpassage4
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26224, now:26231)
+> > > > - Include path found, including - caves-1623/264/icecock3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecock3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecock3 <> caves-1623/264/icecock3
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26231, now:26235)
+> > > > - Include path found, including - caves-1623/264/northhole2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:northhole2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/northhole2 <> caves-1623/264/northhole2
+[<Cave: 1623-264>]
+> > > > > LEGS: 9 (previous: 26235, now:26244)
+> > > > - Include path found, including - caves-1623/264/frozennorth4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth4, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth4 <> caves-1623/264/frozennorth4
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26244, now:26251)
+> > > > - Include path found, including - caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:rabbitwarrenstoeinundzwanzig, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/rabbitwarrenstoeinundzwanzig <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 26251, now:26257)
+> > > > - Include path found, including - caves-1623/264/gosserwager3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager3 <> caves-1623/264/gosserwager3
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26257, now:26267)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage5
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage5
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage5, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/bipedalpassage5 <> caves-1623/264/bipedalpassage5
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26267, now:26271)
+> > > > - Include path found, including - caves-1623/264/gosserwager4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager4, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/gosserwager4 <> caves-1623/264/gosserwager4
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26271, now:26275)
+> > > > - Include path found, including - caves-1623/264/belowhiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:belowhiltiaplenty, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/belowhiltiaplenty <> caves-1623/264/belowhiltiaplenty
+[<Cave: 1623-264>]
+> > > > > LEGS: 38 (previous: 26275, now:26313)
+> > > > - Include path found, including - caves-1623/264/belowhiltiaplenty2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:belowhiltiaplenty2, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/belowhiltiaplenty2 <> caves-1623/264/belowhiltiaplenty2
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 26313, now:26315)
+> > > > - Include path found, including - caves-1623/264/penguinfellatio
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/penguinfellatio
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:penguinfellatio, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/penguinfellatio <> caves-1623/264/penguinfellatio
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26315, now:26323)
+> > > > - Include path found, including - caves-1623/264/voyeur
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/voyeur
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:voyeur, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/voyeur <> caves-1623/264/voyeur
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26323, now:26330)
+> > > > - Include path found, including - caves-1623/264/darkartsiv
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiv
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsiv, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/darkartsiv <> caves-1623/264/darkartsiv
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26330, now:26334)
+> > > > - Include path found, including - caves-1623/264/darkartsv
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsv
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsv, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/darkartsv <> caves-1623/264/darkartsv
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26334, now:26339)
+> > > > - Include path found, including - caves-1623/264/darkartsvi
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsvi
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsvi, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/darkartsvi <> caves-1623/264/darkartsvi
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26339, now:26344)
+> > > > - Include path found, including - caves-1623/264/tightyorkshireman
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/tightyorkshireman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:tightyorkshireman, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/tightyorkshireman <> caves-1623/264/tightyorkshireman
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26344, now:26352)
+> > > > - Include path found, including - caves-1623/264/swingers
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/swingers
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:swingers, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/swingers <> caves-1623/264/swingers
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26352, now:26357)
+> > > > - Include path found, including - caves-1623/264/crushedplumbspitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/264 <> caves-1623/264/crushedplumbspitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:crushedplumbspitch, creating new SurvexBlock
+> > > > > > - MEM:49.93359375 Reading. parent:caves-1623/264/crushedplumbspitch <> caves-1623/264/crushedplumbspitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26357, now:26362)
+> > > > - Include path found, including - caves-1623/264/tinaturnersmerkin
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9375 Reading. parent:caves-1623/264/264 <> caves-1623/264/tinaturnersmerkin
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:tinaturnersmerkin, creating new SurvexBlock
+> > > > > > - MEM:49.9375 Reading. parent:caves-1623/264/tinaturnersmerkin <> caves-1623/264/tinaturnersmerkin
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 26362, now:26373)
+> > > > - Include path found, including - caves-1623/264/underexcitment
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/underexcitment
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:underexcitment, creating new SurvexBlock
+> > > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/underexcitment <> caves-1623/264/underexcitment
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26373, now:26383)
+> > > > - Include path found, including - caves-1623/264/consolidation
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/consolidation
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:consolidation, creating new SurvexBlock
+> > > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/consolidation <> caves-1623/264/consolidation
+[<Cave: 1623-264>]
+> > > > > LEGS: 59 (previous: 26383, now:26442)
+> > > > - Include path found, including - caves-1623/264/oneshotwonder
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/oneshotwonder
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:oneshotwonder, creating new SurvexBlock
+> > > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/oneshotwonder <> caves-1623/264/oneshotwonder
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26442, now:26472)
+> > > > - Include path found, including - caves-1623/264/longdrop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:longdrop, creating new SurvexBlock
+> > > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/longdrop <> caves-1623/264/longdrop
+[<Cave: 1623-264>]
+> > > > > LEGS: 20 (previous: 26472, now:26492)
+> > > > - Include path found, including - caves-1623/264/northern_straight
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/264 <> caves-1623/264/northern_straight
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:northernstraight, creating new SurvexBlock
+> > > > > > - MEM:49.94140625 Reading. parent:caves-1623/264/northern_straight <> caves-1623/264/northern_straight
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26492, now:26522)
+> > > > - Include path found, including - caves-1623/264/snowhole
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/snowhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:snowhole, creating new SurvexBlock
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/snowhole <> caves-1623/264/snowhole
+[<Cave: 1623-264>]
+> > > > > LEGS: 55 (previous: 26522, now:26577)
+> > > > - Include path found, including - caves-1623/264/roundabout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/roundabout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roundabout, creating new SurvexBlock
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/roundabout <> caves-1623/264/roundabout
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26577, now:26607)
+> > > > - Include path found, including - caves-1623/264/caving101
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/caving101
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:caving101, creating new SurvexBlock
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/caving101 <> caves-1623/264/caving101
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 26607, now:26609)
+> > > > - Include path found, including - caves-1623/264/doublescoop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:doublescoop, creating new SurvexBlock
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/doublescoop <> caves-1623/264/doublescoop
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26609, now:26619)
+> > > > - Include path found, including - caves-1623/264/doublescoop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:doublescoop2, creating new SurvexBlock
+> > > > > > - MEM:49.9453125 Reading. parent:caves-1623/264/doublescoop2 <> caves-1623/264/doublescoop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26619, now:26627)
+> > > > - Include path found, including - caves-1623/264/fatmanscoop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:fatmanscoop, creating new SurvexBlock
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/fatmanscoop <> caves-1623/264/fatmanscoop
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26627, now:26637)
+> > > > - Include path found, including - caves-1623/264/fatmanscoop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:fatmanscoop2, creating new SurvexBlock
+> > > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/fatmanscoop2 <> caves-1623/264/fatmanscoop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 26637, now:26640)
+> > > > - Include path found, including - caves-1623/264/badattitude
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.94921875 Reading. parent:caves-1623/264/264 <> caves-1623/264/badattitude
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:badattitude, creating new SurvexBlock
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/badattitude <> caves-1623/264/badattitude
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 26640, now:26652)
+> > > > - Include path found, including - caves-1623/264/lets_be_appalling
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.953125 Reading. parent:caves-1623/264/264 <> caves-1623/264/lets_be_appalling
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lets_be_appalling, creating new SurvexBlock
+> > > > > > - MEM:49.953125 Reading. parent:caves-1623/264/lets_be_appalling <> caves-1623/264/lets_be_appalling
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 26652, now:26671)
+> > > > - Include path found, including - caves-1623/264/cant_stop_bat_country
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/cant_stop_bat_country
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cant_stop_bat_country, creating new SurvexBlock
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/cant_stop_bat_country <> caves-1623/264/cant_stop_bat_country
+[<Cave: 1623-264>]
+> > > > > LEGS: 26 (previous: 26671, now:26697)
+> > > > - Include path found, including - caves-1623/264/watertorture
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/watertorture
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:watertorture, creating new SurvexBlock
+> > > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/watertorture <> caves-1623/264/watertorture
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26697, now:26701)
+> > > > - Include path found, including - caves-1623/264/keepsongiving
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.95703125 Reading. parent:caves-1623/264/264 <> caves-1623/264/keepsongiving
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:keepsongiving, creating new SurvexBlock
+> > > > > > - MEM:49.9609375 Reading. parent:caves-1623/264/keepsongiving <> caves-1623/264/keepsongiving
+[<Cave: 1623-264>]
+> > > > > LEGS: 13 (previous: 26701, now:26714)
+> > > > - Include path found, including - caves-1623/264/hiltigalactica
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9609375 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltigalactica
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltigalactica, creating new SurvexBlock
+> > > > > > - MEM:49.984375 Reading. parent:caves-1623/264/hiltigalactica <> caves-1623/264/hiltigalactica
+[<Cave: 1623-264>]
+> > > > > LEGS: 247 (previous: 26714, now:26961)
+> > > > - Include path found, including - caves-1623/264/cathedralchasm2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedralchasm2, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/cathedralchasm2 <> caves-1623/264/cathedralchasm2
+[<Cave: 1623-264>]
+> > > > > LEGS: 195 (previous: 26961, now:27156)
+> > > > - Include path found, including - caves-1623/264/longdrop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:longdrop2, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/longdrop2 <> caves-1623/264/longdrop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 92 (previous: 27156, now:27248)
+> > > > - Include path found, including - caves-1623/264/sloppyseconds1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sloppyseconds1, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/sloppyseconds1 <> caves-1623/264/sloppyseconds1
+[<Cave: 1623-264>]
+> > > > > LEGS: 40 (previous: 27248, now:27288)
+> > > > - Include path found, including - caves-1623/264/galactica
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/galactica
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:galactica, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/galactica <> caves-1623/264/galactica
+[<Cave: 1623-264>]
+> > > > > LEGS: 23 (previous: 27288, now:27311)
+> > > > - Include path found, including - caves-1623/264/sloppyseconds2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sloppyseconds2, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/sloppyseconds2 <> caves-1623/264/sloppyseconds2
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 27311, now:27322)
+> > > > - Include path found, including - caves-1623/264/nothingtosee
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:nothingtosee, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/nothingtosee <> caves-1623/264/nothingtosee
+[<Cave: 1623-264>]
+> > > > > LEGS: 22 (previous: 27322, now:27344)
+> > > > - Include path found, including - caves-1623/264/the_mendips
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_mendips
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:the_mendips, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/the_mendips <> caves-1623/264/the_mendips
+[<Cave: 1623-264>]
+> > > > > LEGS: 257 (previous: 27344, now:27601)
+> > > > - Include path found, including - caves-1623/264/mysterious_schlag
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/mysterious_schlag
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:mysterious_schlag, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/mysterious_schlag <> caves-1623/264/mysterious_schlag
+[<Cave: 1623-264>]
+> > > > > LEGS: 33 (previous: 27601, now:27634)
+> > > > - Include path found, including - caves-1623/264/pointless_dig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointless_dig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pointless_dig, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/pointless_dig <> caves-1623/264/pointless_dig
+[<Cave: 1623-264>]
+> > > > > LEGS: 21 (previous: 27634, now:27655)
+> > > > - Include path found, including - caves-1623/264/secondwind
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondwind
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:secondwind, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/secondwind <> caves-1623/264/secondwind
+[<Cave: 1623-264>]
+> > > > > LEGS: 28 (previous: 27655, now:27683)
+> > > > - Include path found, including - caves-1623/264/secondhand
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondhand
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:secondhand, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/secondhand <> caves-1623/264/secondhand
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 27683, now:27689)
+> > > > - Include path found, including - caves-1623/264/dog_end_series
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/dog_end_series
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:dog_end_series, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/dog_end_series <> caves-1623/264/dog_end_series
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 27689, now:27701)
+> > > > - Include path found, including - caves-1623/264/nothing2see
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothing2see
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:nothing2see, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/nothing2see <> caves-1623/264/nothing2see
+[<Cave: 1623-264>]
+> > > > > LEGS: 18 (previous: 27701, now:27719)
+> > > > - Include path found, including - caves-1623/264/nothingtosee3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:nothingtosee3, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/nothingtosee3 <> caves-1623/264/nothingtosee3
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 27719, now:27738)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_bones_pitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_bones_pitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hilti_nts_bones_pitch, creating new SurvexBlock
+> > > > > > - MEM:49.98828125 Reading. parent:caves-1623/264/hilti_nts_bones_pitch <> caves-1623/264/hilti_nts_bones_pitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 52 (previous: 27738, now:27790)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_near_bats
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.99609375 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_bats
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hilti_nts_near_bats, creating new SurvexBlock
+> > > > > > - MEM:49.99609375 Reading. parent:caves-1623/264/hilti_nts_near_bats <> caves-1623/264/hilti_nts_near_bats
+[<Cave: 1623-264>]
+> > > > > LEGS: 44 (previous: 27790, now:27834)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_near_start
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.99609375 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_start
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hilti_nts_near_start, creating new SurvexBlock
+> > > > > > - MEM:49.99609375 Reading. parent:caves-1623/264/hilti_nts_near_start <> caves-1623/264/hilti_nts_near_start
+[<Cave: 1623-264>]
+> > > > > LEGS: 46 (previous: 27834, now:27880)
+> > > > - Include path found, including - caves-1623/264/the_backslash
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.99609375 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_backslash
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:the_backslash, creating new SurvexBlock
+> > > > > > - MEM:49.99609375 Reading. parent:caves-1623/264/the_backslash <> caves-1623/264/the_backslash
+[<Cave: 1623-264>]
+> > > > > LEGS: 21 (previous: 27880, now:27901)
+> > > > LEGS: 8218 (previous: 19683, now:27901)
+> - Include path found, including - surface/1623/allsurface
+> - NO Match in DB (i) for a cave for surface/1623/allsurface
+> > - MEM:49.99609375 Reading. parent:kataster/1623 <> surface/1623/allsurface
+> > - Include path found, including - surface/1623/allplateau
+> > - NO Match in DB (i) for a cave for surface/1623/allplateau
+> > > - MEM:49.99609375 Reading. parent:kataster/1623 <> surface/1623/allplateau
+> > > - Include path found, including - surface/1623/p108
+> > > - NO Match in DB (i) for a cave for surface/1623/p108
+> > > > - MEM:49.99609375 Reading. parent:kataster/1623 <> surface/1623/p108
+> > > > - No match (b) for surface/1623/108surf
+> > > > - Begin found for:108surf, creating new SurvexBlock
+> > > > > - MEM:49.99609375 Reading. parent:surface/1623/p108 <> surface/1623/p108
+> > > > LEGS: 8 (previous: 27901, now:27909)
+> > > - Include path found, including - surface/1623/bogen
+> > > - NO Match in DB (i) for a cave for surface/1623/bogen
+> > > > - MEM:49.99609375 Reading. parent:kataster/1623 <> surface/1623/bogen
+> > > > - No match (b) for surface/1623/2006-06
+> > > > - Begin found for:2006-06, creating new SurvexBlock
+> > > > > - MEM:49.99609375 Reading. parent:surface/1623/bogen <> surface/1623/bogen
+> > > > LEGS: 8 (previous: 27909, now:27917)
+> > > - Include path found, including - surface/1623/164surf
+> > > - NO Match in DB (i) for a cave for surface/1623/164surf
+> > > > - MEM:49.99609375 Reading. parent:kataster/1623 <> surface/1623/164surf
+> > > > - No match (b) for surface/1623/164Surf
+> > > > - Begin found for:164surf, creating new SurvexBlock
+> > > > > - MEM:50.00390625 Reading. parent:surface/1623/164surf <> surface/1623/164surf
+> > > > LEGS: 18 (previous: 27917, now:27935)
+> > > - Include path found, including - surface/1623/172to171a
+> > > - NO Match in DB (i) for a cave for surface/1623/172to171a
+> > > > - MEM:50.0078125 Reading. parent:kataster/1623 <> surface/1623/172to171a
+> > > > - No match (b) for surface/1623/172to171a
+> > > > - Begin found for:172to171a, creating new SurvexBlock
+> > > > > - MEM:50.0078125 Reading. parent:surface/1623/172to171a <> surface/1623/172to171a
+> > > > LEGS: 11 (previous: 27935, now:27946)
+> > > - Include path found, including - surface/1623/182area
+> > > - NO Match in DB (i) for a cave for surface/1623/182area
+> > > > - MEM:50.01171875 Reading. parent:kataster/1623 <> surface/1623/182area
+> > > > - No match (b) for surface/1623/182toTC
+> > > > - Begin found for:182totc, creating new SurvexBlock
+> > > > > - MEM:50.01171875 Reading. parent:surface/1623/182area <> surface/1623/182area
+> > > > LEGS: 39 (previous: 27946, now:27985)
+> > > - Include path found, including - surface/1623/186totc
+> > > - NO Match in DB (i) for a cave for surface/1623/186totc
+> > > > - MEM:50.01171875 Reading. parent:kataster/1623 <> surface/1623/186totc
+> > > > - No match (b) for surface/1623/186toTC
+> > > > - Begin found for:186totc, creating new SurvexBlock
+> > > > > - MEM:50.01171875 Reading. parent:surface/1623/186totc <> surface/1623/186totc
+> > > > LEGS: 21 (previous: 27985, now:28006)
+> > > - Include path found, including - surface/1623/b4surf
+> > > - NO Match in DB (i) for a cave for surface/1623/b4surf
+> > > > - MEM:50.01171875 Reading. parent:kataster/1623 <> surface/1623/b4surf
+> > > > - No match (b) for surface/1623/b4surf
+> > > > - Begin found for:b4surf, creating new SurvexBlock
+> > > > > - MEM:50.01171875 Reading. parent:surface/1623/b4surf <> surface/1623/b4surf
+> > > > LEGS: 3 (previous: 28006, now:28009)
+> > > - Include path found, including - surface/1623/colto11
+> > > - NO Match in DB (i) for a cave for surface/1623/colto11
+> > > > - MEM:50.015625 Reading. parent:kataster/1623 <> surface/1623/colto11
+> > > > - No match (b) for surface/1623/colto11
+> > > > - Begin found for:colto11, creating new SurvexBlock
+> > > > > - MEM:50.01953125 Reading. parent:surface/1623/colto11 <> surface/1623/colto11
+> > > > LEGS: 10 (previous: 28009, now:28019)
+> > > - Include path found, including - surface/1623/2006-72_to_spit
+> > > - NO Match in DB (i) for a cave for surface/1623/2006-72_to_spit
+> > > > - MEM:50.01953125 Reading. parent:kataster/1623 <> surface/1623/2006-72_to_spit
+> > > > - No match (b) for surface/1623/2006-72_to_spit
+> > > > - Begin found for:2006-72_to_spit, creating new SurvexBlock
+> > > > > - MEM:50.0234375 Reading. parent:surface/1623/2006-72_to_spit <> surface/1623/2006-72_to_spit
+> > > > LEGS: 11 (previous: 28019, now:28030)
+> > > - Include path found, including - surface/1623/colto97
+> > > - NO Match in DB (i) for a cave for surface/1623/colto97
+> > > > - MEM:50.03125 Reading. parent:kataster/1623 <> surface/1623/colto97
+> > > > - No match (b) for surface/1623/145to145c
+> > > > - Begin found for:145to145c, creating new SurvexBlock
+> > > > > - MEM:50.04296875 Reading. parent:surface/1623/colto97 <> surface/1623/colto97
+> > > > LEGS: 5 (previous: 28030, now:28035)
+> > > - Include path found, including - surface/1623/near06
+> > > - NO Match in DB (i) for a cave for surface/1623/near06
+> > > > - MEM:50.04296875 Reading. parent:kataster/1623 <> surface/1623/near06
+> > > > - No match (b) for surface/1623/near06
+> > > > - Begin found for:near06, creating new SurvexBlock
+> > > > > - MEM:50.046875 Reading. parent:surface/1623/near06 <> surface/1623/near06
+> > > > LEGS: 7 (previous: 28035, now:28042)
+> > > - Include path found, including - surface/1623/near06_2005
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2005
+> > > > - MEM:50.05078125 Reading. parent:kataster/1623 <> surface/1623/near06_2005
+> > > > - No match (b) for surface/1623/near06_2005
+> > > > - Begin found for:near06_2005, creating new SurvexBlock
+> > > > > - MEM:50.05078125 Reading. parent:surface/1623/near06_2005 <> surface/1623/near06_2005
+> > > > LEGS: 7 (previous: 28042, now:28049)
+> > > - Include path found, including - surface/1623/99to2004-01
+> > > - NO Match in DB (i) for a cave for surface/1623/99to2004-01
+> > > > - MEM:50.0546875 Reading. parent:kataster/1623 <> surface/1623/99to2004-01
+> > > > - No match (b) for surface/1623/99to2004-01
+> > > > - Begin found for:99to2004-01, creating new SurvexBlock
+> > > > > - MEM:50.0546875 Reading. parent:surface/1623/99to2004-01 <> surface/1623/99to2004-01
+> > > > LEGS: 3 (previous: 28049, now:28052)
+> > > - Include path found, including - surface/1623/near06_2006
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2006
+> > > > - MEM:50.0546875 Reading. parent:kataster/1623 <> surface/1623/near06_2006
+> > > > - No match (b) for surface/1623/99ob02_to_2005-93
+> > > > - Begin found for:99ob02_to_2005-93, creating new SurvexBlock
+> > > > > - MEM:50.078125 Reading. parent:surface/1623/near06_2006 <> surface/1623/near06_2006
+> > > > LEGS: 4 (previous: 28052, now:28056)
+> > > - Include path found, including - surface/1623/near06_2007
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2007
+> > > > - MEM:50.078125 Reading. parent:kataster/1623 <> surface/1623/near06_2007
+> > > > - No match (b) for surface/1623/2007-70_to_271
+> > > > - Begin found for:2007-70_to_271, creating new SurvexBlock
+> > > > > - MEM:50.078125 Reading. parent:surface/1623/near06_2007 <> surface/1623/near06_2007
+> > > > LEGS: 3 (previous: 28056, now:28059)
+> > > - Include path found, including - surface/1623/104surf
+> > > - NO Match in DB (i) for a cave for surface/1623/104surf
+> > > > - MEM:50.078125 Reading. parent:kataster/1623 <> surface/1623/104surf
+> > > > - No match (b) for surface/1623/104surf
+> > > > - Begin found for:104surf, creating new SurvexBlock
+> > > > > - MEM:50.078125 Reading. parent:surface/1623/104surf <> surface/1623/104surf
+> > > > LEGS: 3 (previous: 28059, now:28062)
+> > > - Include path found, including - surface/1623/nasetotc
+> > > - NO Match in DB (i) for a cave for surface/1623/nasetotc
+> > > > - MEM:50.078125 Reading. parent:kataster/1623 <> surface/1623/nasetotc
+> > > > - No match (b) for surface/1623/nasetotc
+> > > > - Begin found for:nasetotc, creating new SurvexBlock
+> > > > > - MEM:50.078125 Reading. parent:surface/1623/nasetotc <> surface/1623/nasetotc
+> > > > LEGS: 13 (previous: 28062, now:28075)
+> > > - Include path found, including - surface/1623/neartc
+> > > - NO Match in DB (i) for a cave for surface/1623/neartc
+> > > > - MEM:50.078125 Reading. parent:kataster/1623 <> surface/1623/neartc
+> > > > - No match (b) for surface/1623/TCto90
+> > > > - Begin found for:tcto90, creating new SurvexBlock
+> > > > > - MEM:50.08203125 Reading. parent:surface/1623/neartc <> surface/1623/neartc
+> > > > ! Unparsed [*set]: 'decimal ./' surface/1623/neartc
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+> > > > LEGS: 13 (previous: 28075, now:28088)
+> > > - Include path found, including - surface/1623/tcto171
+> > > - NO Match in DB (i) for a cave for surface/1623/tcto171
+> > > > - MEM:50.09765625 Reading. parent:kataster/1623 <> surface/1623/tcto171
+> > > > - No match (b) for surface/1623/TCto171etc
+> > > > - Begin found for:tcto171etc, creating new SurvexBlock
+> > > > > - MEM:50.109375 Reading. parent:surface/1623/tcto171 <> surface/1623/tcto171
+> > > > LEGS: 29 (previous: 28088, now:28117)
+> > > - Include path found, including - surface/1623/tctocol
+> > > - NO Match in DB (i) for a cave for surface/1623/tctocol
+> > > > - MEM:50.11328125 Reading. parent:kataster/1623 <> surface/1623/tctocol
+> > > > - No match (b) for surface/1623/TCtoCol
+> > > > - Begin found for:tctocol, creating new SurvexBlock
+> > > > > - MEM:50.11328125 Reading. parent:surface/1623/tctocol <> surface/1623/tctocol
+> > > > LEGS: 12 (previous: 28117, now:28129)
+> > > - Include path found, including - surface/1623/36tob4
+> > > - NO Match in DB (i) for a cave for surface/1623/36tob4
+> > > > - MEM:50.11328125 Reading. parent:kataster/1623 <> surface/1623/36tob4
+> > > > - No match (b) for surface/1623/36tob4
+> > > > - Begin found for:36tob4, creating new SurvexBlock
+> > > > > - MEM:50.1171875 Reading. parent:surface/1623/36tob4 <> surface/1623/36tob4
+> > > > LEGS: 8 (previous: 28129, now:28137)
+> > > - Include path found, including - surface/1623/107-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/107-to-2012-70
+> > > > - MEM:50.1171875 Reading. parent:kataster/1623 <> surface/1623/107-to-2012-70
+> > > > - No match (b) for surface/1623/107to201270
+> > > > - Begin found for:107to201270, creating new SurvexBlock
+> > > > > - MEM:50.1171875 Reading. parent:surface/1623/107-to-2012-70 <> surface/1623/107-to-2012-70
+> > > > LEGS: 5 (previous: 28137, now:28142)
+> > > - Include path found, including - surface/1623/157-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/157-to-2012-70
+> > > > - MEM:50.1171875 Reading. parent:kataster/1623 <> surface/1623/157-to-2012-70
+> > > > - No match (b) for surface/1623/157to201270
+> > > > - Begin found for:157to201270, creating new SurvexBlock
+> > > > > - MEM:50.1171875 Reading. parent:surface/1623/157-to-2012-70 <> surface/1623/157-to-2012-70
+> > > > LEGS: 6 (previous: 28142, now:28148)
+> > - Include path found, including - surface/1623/allnrkh
+> > - NO Match in DB (i) for a cave for surface/1623/allnrkh
+> > > - MEM:50.1171875 Reading. parent:kataster/1623 <> surface/1623/allnrkh
+> > > - Include path found, including - surface/1623/136to147
+> > > - NO Match in DB (i) for a cave for surface/1623/136to147
+> > > > - MEM:50.1171875 Reading. parent:kataster/1623 <> surface/1623/136to147
+> > > > - No match (b) for surface/1623/136to147
+> > > > - Begin found for:136to147, creating new SurvexBlock
+> > > > > - MEM:50.1171875 Reading. parent:surface/1623/136to147 <> surface/1623/136to147
+> > > > LEGS: 15 (previous: 28148, now:28163)
+> > > - Include path found, including - surface/1623/147vor
+> > > - NO Match in DB (i) for a cave for surface/1623/147vor
+> > > > - MEM:50.1171875 Reading. parent:kataster/1623 <> surface/1623/147vor
+> > > > - No match (b) for surface/1623/147vor
+> > > > - Begin found for:147vor, creating new SurvexBlock
+> > > > > - MEM:50.1171875 Reading. parent:surface/1623/147vor <> surface/1623/147vor
+> > > > LEGS: 22 (previous: 28163, now:28185)
+> > > - Include path found, including - surface/1623/162to163
+> > > - NO Match in DB (i) for a cave for surface/1623/162to163
+> > > > - MEM:50.1171875 Reading. parent:kataster/1623 <> surface/1623/162to163
+> > > > - No match (b) for surface/1623/surfnr161
+> > > > - Begin found for:surfnr161, creating new SurvexBlock
+> > > > > - MEM:50.1171875 Reading. parent:surface/1623/162to163 <> surface/1623/162to163
+> > > > LEGS: 25 (previous: 28185, now:28210)
+> > > - Include path found, including - surface/1623/180-161c
+> > > - NO Match in DB (i) for a cave for surface/1623/180-161c
+> > > > - MEM:50.12109375 Reading. parent:kataster/1623 <> surface/1623/180-161c
+> > > > - No match (b) for surface/1623/180to161c
+> > > > - Begin found for:180to161c, creating new SurvexBlock
+> > > > > - MEM:50.12109375 Reading. parent:surface/1623/180-161c <> surface/1623/180-161c
+> > > > LEGS: 10 (previous: 28210, now:28220)
+> > > - Include path found, including - surface/1623/161etof
+> > > - NO Match in DB (i) for a cave for surface/1623/161etof
+> > > > - MEM:50.12109375 Reading. parent:kataster/1623 <> surface/1623/161etof
+> > > > - No match (b) for surface/1623/161etof
+> > > > - Begin found for:161etof, creating new SurvexBlock
+> > > > > - MEM:50.12109375 Reading. parent:surface/1623/161etof <> surface/1623/161etof
+> > > > LEGS: 6 (previous: 28220, now:28226)
+> > > - Include path found, including - surface/1623/161ftod
+> > > - NO Match in DB (i) for a cave for surface/1623/161ftod
+> > > > - MEM:50.12109375 Reading. parent:kataster/1623 <> surface/1623/161ftod
+> > > > - No match (b) for surface/1623/161ftod
+> > > > - Begin found for:161ftod, creating new SurvexBlock
+> > > > > - MEM:50.12109375 Reading. parent:surface/1623/161ftod <> surface/1623/161ftod
+> > > > LEGS: 25 (previous: 28226, now:28251)
+> > > - Include path found, including - surface/1623/161etog
+> > > - NO Match in DB (i) for a cave for surface/1623/161etog
+> > > > - MEM:50.12109375 Reading. parent:kataster/1623 <> surface/1623/161etog
+> > > > - No match (b) for surface/1623/161etog
+> > > > - Begin found for:161etog, creating new SurvexBlock
+> > > > > - MEM:50.12109375 Reading. parent:surface/1623/161etog <> surface/1623/161etog
+> > > > LEGS: 30 (previous: 28251, now:28281)
+> > > - Include path found, including - surface/1623/kansurf
+> > > - NO Match in DB (i) for a cave for surface/1623/kansurf
+> > > > - MEM:50.125 Reading. parent:kataster/1623 <> surface/1623/kansurf
+> > > > - No match (b) for surface/1623/KanSurf
+> > > > - Begin found for:kansurf, creating new SurvexBlock
+> > > > > - MEM:50.125 Reading. parent:surface/1623/kansurf <> surface/1623/kansurf
+> > > > LEGS: 14 (previous: 28281, now:28295)
+> > > - Include path found, including - surface/1623/p136
+> > > - NO Match in DB (i) for a cave for surface/1623/p136
+> > > > - MEM:50.12890625 Reading. parent:kataster/1623 <> surface/1623/p136
+> > > > - No match (b) for surface/1623/136surf
+> > > > - Begin found for:136surf, creating new SurvexBlock
+> > > > > - MEM:50.1328125 Reading. parent:surface/1623/p136 <> surface/1623/p136
+> > > > LEGS: 15 (previous: 28295, now:28310)
+> > > - Include path found, including - surface/1623/p156
+> > > - NO Match in DB (i) for a cave for surface/1623/p156
+> > > > - MEM:50.1328125 Reading. parent:kataster/1623 <> surface/1623/p156
+> > > > - No match (b) for surface/1623/01to156
+> > > > - Begin found for:01to156, creating new SurvexBlock
+> > > > > - MEM:50.1328125 Reading. parent:surface/1623/p156 <> surface/1623/p156
+> > > > LEGS: 4 (previous: 28310, now:28314)
+> > > - Include path found, including - surface/1623/surf161
+> > > - NO Match in DB (i) for a cave for surface/1623/surf161
+> > > > - MEM:50.1328125 Reading. parent:kataster/1623 <> surface/1623/surf161
+> > > > - No match (b) for surface/1623/Surf161
+> > > > - Begin found for:surf161, creating new SurvexBlock
+> > > > > - MEM:50.1328125 Reading. parent:surface/1623/surf161 <> surface/1623/surf161
+> > > > LEGS: 28 (previous: 28314, now:28342)
+> > > - Include path found, including - surface/1623/vd1-161d
+> > > - NO Match in DB (i) for a cave for surface/1623/vd1-161d
+> > > > - MEM:50.13671875 Reading. parent:kataster/1623 <> surface/1623/vd1-161d
+> > > > - No match (b) for surface/1623/vd1to161d
+> > > > - Begin found for:vd1to161d, creating new SurvexBlock
+> > > > > - MEM:50.13671875 Reading. parent:surface/1623/vd1-161d <> surface/1623/vd1-161d
+> > > > LEGS: 38 (previous: 28342, now:28380)
+> > > - No match (b) for surface/1623/162bodge
+> > > - Begin found for:162bodge, creating new SurvexBlock
+> > > > - MEM:50.140625 Reading. parent:surface/1623/allnrkh <> surface/1623/allnrkh
+> > > LEGS: 0 (previous: 28380, now:28380)
+> > - Include path found, including - surface/1623/allhinter
+> > - NO Match in DB (i) for a cave for surface/1623/allhinter
+> > > - MEM:50.140625 Reading. parent:kataster/1623 <> surface/1623/allhinter
+> > > - Include path found, including - surface/1623/steinsrf
+> > > - NO Match in DB (i) for a cave for surface/1623/steinsrf
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/steinsrf
+> > > > - No match (b) for surface/1623/steinsrf
+> > > > - Begin found for:steinsrf, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/steinsrf <> surface/1623/steinsrf
+> > > > LEGS: 21 (previous: 28380, now:28401)
+> > > - Include path found, including - surface/1623/204atoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204atoc
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/204atoc
+> > > > - No match (b) for surface/1623/204atoc
+> > > > - Begin found for:204atoc, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/204atoc <> surface/1623/204atoc
+> > > > LEGS: 17 (previous: 28401, now:28418)
+> > > - Include path found, including - surface/1623/204d
+> > > - NO Match in DB (i) for a cave for surface/1623/204d
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/204d
+> > > > - No match (b) for surface/1623/204d
+> > > > - Begin found for:204d, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/204d <> surface/1623/204d
+> > > > LEGS: 13 (previous: 28418, now:28431)
+> > > - Include path found, including - surface/1623/204etoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204etoc
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/204etoc
+> > > > - No match (b) for surface/1623/204etoc
+> > > > - Begin found for:204etoc, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/204etoc <> surface/1623/204etoc
+> > > > LEGS: 6 (previous: 28431, now:28437)
+> > > - Include path found, including - surface/1623/204ato239
+> > > - NO Match in DB (i) for a cave for surface/1623/204ato239
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/204ato239
+> > > > - No match (b) for surface/1623/204ato239
+> > > > - Begin found for:204ato239, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/204ato239 <> surface/1623/204ato239
+> > > > LEGS: 10 (previous: 28437, now:28447)
+> > > - No match (b) for surface/1623/204cbodge
+> > > - Begin found for:204cbodge, creating new SurvexBlock
+> > > > - MEM:50.14453125 Reading. parent:surface/1623/allhinter <> surface/1623/allhinter
+> > > LEGS: 0 (previous: 28447, now:28447)
+> > - Include path found, including - surface/1623/allnr41
+> > - NO Match in DB (i) for a cave for surface/1623/allnr41
+> > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/allnr41
+> > > - Include path found, including - surface/1623/p78
+> > > - NO Match in DB (i) for a cave for surface/1623/p78
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/p78
+> > > > - No match (b) for surface/1623/schwabsurf
+> > > > - Begin found for:schwabsurf, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/p78 <> surface/1623/p78
+> > > > ! Unparsed [*set]: 'blank () ,' surface/1623/p78
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+> > > > LEGS: 52 (previous: 28447, now:28499)
+> > > - Include path found, including - surface/1623/78to78d
+> > > - NO Match in DB (i) for a cave for surface/1623/78to78d
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/78to78d
+> > > > - No match (b) for surface/1623/E4
+> > > > - Begin found for:e4, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/78to78d <> surface/1623/78to78d
+> > > > LEGS: 23 (previous: 28499, now:28522)
+> > > - Include path found, including - surface/1623/domsurf
+> > > - NO Match in DB (i) for a cave for surface/1623/domsurf
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/domsurf
+> > > > - No match (b) for surface/1623/dominosurf
+> > > > - Begin found for:dominosurf, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/domsurf <> surface/1623/domsurf
+> > > > LEGS: 28 (previous: 28522, now:28550)
+> > > - Include path found, including - surface/1623/sonnausn
+> > > - NO Match in DB (i) for a cave for surface/1623/sonnausn
+> > > > - MEM:50.14453125 Reading. parent:kataster/1623 <> surface/1623/sonnausn
+> > > > - No match (b) for surface/1623/sonnausn
+> > > > - Begin found for:sonnausn, creating new SurvexBlock
+> > > > > - MEM:50.14453125 Reading. parent:surface/1623/sonnausn <> surface/1623/sonnausn
+> > > > LEGS: 14 (previous: 28550, now:28564)
+> > > - Include path found, including - surface/1623/41toBunt
+> > > - NO Match in DB (i) for a cave for surface/1623/41toBunt
+> > > > - MEM:50.1484375 Reading. parent:kataster/1623 <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/Hillside
+> > > > - Begin found for:hillside, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/82
+> > > > - Begin found for:82, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > LEGS: 33 (previous: 28564, now:28597)
+> > > - Include path found, including - surface/1623/lookfut
+> > > - NO Match in DB (i) for a cave for surface/1623/lookfut
+> > > > - MEM:50.15625 Reading. parent:kataster/1623 <> surface/1623/lookfut
+> > > > - No match (b) for surface/1623/LookFutile
+> > > > - Begin found for:lookfutile, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/lookfut <> surface/1623/lookfut
+> > > > LEGS: 24 (previous: 28597, now:28621)
+> > > - Include path found, including - surface/1623/nipple
+> > > - NO Match in DB (i) for a cave for surface/1623/nipple
+> > > > - MEM:50.15625 Reading. parent:kataster/1623 <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/nipple
+> > > > - Begin found for:nipple, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/fix
+> > > > - Begin found for:fix, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > LEGS: 1 (previous: 28693, now:28694)
+> > > - Include path found, including - surface/1623/p155
+> > > - NO Match in DB (i) for a cave for surface/1623/p155
+> > > > - MEM:50.15625 Reading. parent:kataster/1623 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/Nipto155
+> > > > - Begin found for:nipto155, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > LEGS: 23 (previous: 28694, now:28717)
+> > > - Include path found, including - surface/1623/L8to158
+> > > - NO Match in DB (i) for a cave for surface/1623/L8to158
+> > > > - MEM:50.15625 Reading. parent:kataster/1623 <> surface/1623/L8to158
+> > > > - No match (b) for surface/1623/L8to158
+> > > > - Begin found for:l8to158, creating new SurvexBlock
+> > > > > - MEM:50.15625 Reading. parent:surface/1623/L8to158 <> surface/1623/L8to158
+> > > > LEGS: 17 (previous: 28717, now:28734)
+> > > - Include path found, including - surface/1623/stoger
+> > > - NO Match in DB (i) for a cave for surface/1623/stoger
+> > > > - MEM:50.15625 Reading. parent:kataster/1623 <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/Stogerweg
+> > > > - Begin found for:stogerweg, creating new SurvexBlock
+> > > > > - MEM:50.16015625 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > - MEM:50.16015625 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > LEGS: 38 (previous: 28734, now:28772)
+> > > - Include path found, including - surface/1623/228ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/228ausn
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/228ausn
+> > > > - No match (b) for surface/1623/228ausn
+> > > > - Begin found for:228ausn, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/228ausn <> surface/1623/228ausn
+> > > > LEGS: 7 (previous: 28772, now:28779)
+> > > - Include path found, including - surface/1623/31ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/31ausn
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/31ausn
+> > > > - No match (b) for surface/1623/31ausn
+> > > > - Begin found for:31ausn, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/31ausn <> surface/1623/31ausn
+> > > > LEGS: 3 (previous: 28779, now:28782)
+> > - Include path found, including - surface/1623/allnr40
+> > - NO Match in DB (i) for a cave for surface/1623/allnr40
+> > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/allnr40
+> > > - Include path found, including - surface/1623/weisausn
+> > > - NO Match in DB (i) for a cave for surface/1623/weisausn
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/weisausn
+> > > > - No match (b) for surface/1623/weisausn
+> > > > - Begin found for:weisausn, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/weisausn <> surface/1623/weisausn
+> > > > LEGS: 3 (previous: 28782, now:28785)
+> > > - Include path found, including - surface/1623/2002-W-02surf
+> > > - NO Match in DB (i) for a cave for surface/1623/2002-W-02surf
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/2002-W-02surf
+> > > > - No match (b) for surface/1623/2002-w-02surf
+> > > > - Begin found for:2002-w-02surf, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/2002-W-02surf <> surface/1623/2002-W-02surf
+> > > > LEGS: 2 (previous: 28785, now:28787)
+> > > - Include path found, including - surface/1623/eissurf
+> > > - NO Match in DB (i) for a cave for surface/1623/eissurf
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/eissurf
+> > > > - No match (b) for surface/1623/EisSurf
+> > > > - Begin found for:eissurf, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/eissurf <> surface/1623/eissurf
+> > > > LEGS: 13 (previous: 28787, now:28800)
+> > > - Include path found, including - surface/1623/40ftoe
+> > > - NO Match in DB (i) for a cave for surface/1623/40ftoe
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/40ftoe
+> > > > - No match (b) for surface/1623/gruensurf
+> > > > - Begin found for:gruensurf, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/40ftoe <> surface/1623/40ftoe
+> > > > LEGS: 7 (previous: 28800, now:28807)
+> > > - Include path found, including - surface/1623/40to88
+> > > - NO Match in DB (i) for a cave for surface/1623/40to88
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/40to88
+> > > > - No match (b) for surface/1623/40to88
+> > > > - Begin found for:40to88, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/40to88 <> surface/1623/40to88
+> > > > LEGS: 15 (previous: 28807, now:28822)
+> > > - Include path found, including - surface/1623/e6ausen
+> > > - NO Match in DB (i) for a cave for surface/1623/e6ausen
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/e6ausen
+> > > > - No match (b) for surface/1623/e6ausen
+> > > > - Begin found for:e6ausen, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/e6ausen <> surface/1623/e6ausen
+> > > > LEGS: 10 (previous: 28822, now:28832)
+> > > - Include path found, including - surface/1623/vfhmdata
+> > > - NO Match in DB (i) for a cave for surface/1623/vfhmdata
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/vfhmdata
+> > > > - No match (b) for surface/1623/VfHMdata
+> > > > - Begin found for:vfhmdata, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/vfhmdata <> surface/1623/vfhmdata
+> > > > LEGS: 105 (previous: 28832, now:28937)
+> > > - Include path found, including - surface/1623/40ents
+> > > - NO Match in DB (i) for a cave for surface/1623/40ents
+> > > > - MEM:50.1796875 Reading. parent:kataster/1623 <> surface/1623/40ents
+> > > > - No match (b) for surface/1623/40entlink
+> > > > - Begin found for:40entlink, creating new SurvexBlock
+> > > > > - MEM:50.1796875 Reading. parent:surface/1623/40ents <> surface/1623/40ents
+> > > > LEGS: 12 (previous: 28937, now:28949)
+> - Include path found, including - fixedpts/gps/tracks/alltracks
+> - NO Match in DB (i) for a cave for fixedpts/gps/tracks/alltracks
+> > - MEM:50.1796875 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/alltracks
+> > - Include path found, including - fixedpts/gps/tracks/carpark-204
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-204
+> > > - MEM:50.1796875 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-204
+> > > - No match (b) for fixedpts/gps/tracks/carpark-204
+> > > - Begin found for:carpark-204, creating new SurvexBlock
+> > > > - MEM:50.203125 Reading. parent:fixedpts/gps/tracks/carpark-204 <> fixedpts/gps/tracks/carpark-204
+> > > LEGS: 0 (previous: 28949, now:28949)
+> > - Include path found, including - fixedpts/gps/tracks/carpark-40
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-40
+> > > - MEM:50.20703125 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-40
+> > > - No match (b) for fixedpts/gps/tracks/carpark-40
+> > > - Begin found for:carpark-40, creating new SurvexBlock
+> > > > - MEM:50.20703125 Reading. parent:fixedpts/gps/tracks/carpark-40 <> fixedpts/gps/tracks/carpark-40
+> > > LEGS: 0 (previous: 28949, now:28949)
+> LEGS: 28949 (previous: 0, now:28949)
+ - Include path found, including - gpx/2017/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2017/svx/all_gpx
+> - MEM:50.20703125 Reading. parent:1623 <> gpx/2017/svx/all_gpx
+> - Include path found, including - gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> - NO Match in DB (i) for a cave for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - MEM:50.20703125 Reading. parent:1623 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - Begin found for:car-park-to-stone-bridge_psargent-2017-08-06, creating new SurvexBlock
+> > > - MEM:50.31640625 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.31640625 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.31640625 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > LEGS: 70 (previous: 28949, now:29019)
+ - Include path found, including - gpx/2017/additional_info
+ - NO Match in DB (i) for a cave for gpx/2017/additional_info
+> - MEM:50.33984375 Reading. parent:1623 <> gpx/2017/additional_info
+ - Include path found, including - gpx/2018/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2018/svx/all_gpx
+> - MEM:50.33984375 Reading. parent:1623 <> gpx/2018/svx/all_gpx
+> - Include path found, including - gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - MEM:50.33984375 Reading. parent:1623 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - Begin found for:balkon-to-organhoehle_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:50.33984375 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.33984375 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.33984375 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > LEGS: 253 (previous: 29019, now:29272)
+> - Include path found, including - gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - MEM:50.35546875 Reading. parent:1623 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - Begin found for:fischgesicht-to-painted-track_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:50.359375 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.359375 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.359375 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > LEGS: 297 (previous: 29272, now:29569)
+> - Include path found, including - gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - MEM:50.45703125 Reading. parent:1623 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - Begin found for:gschwandalm-to-car-park_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:50.52734375 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.52734375 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.52734375 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > LEGS: 721 (previous: 29569, now:30290)
+> - Include path found, including - gpx/2018/svx/painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - MEM:50.75390625 Reading. parent:1623 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - Begin found for:painted-track_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:50.75390625 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.75390625 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.75390625 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > LEGS: 696 (previous: 30290, now:30986)
+> - Include path found, including - gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - MEM:50.984375 Reading. parent:1623 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - Begin found for:prospecting-kleiner-wildkogel_jtoft-2018-07-11, creating new SurvexBlock
+> > > - MEM:51.05859375 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:51.05859375 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:51.05859375 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > LEGS: 934 (previous: 30986, now:31920)
+> - Include path found, including - gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - MEM:51.36328125 Reading. parent:1623 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - Begin found for:prospecting-near-organhoehle_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:51.46875 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:51.46875 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:51.46875 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > LEGS: 1144 (previous: 31920, now:33064)
+> - Include path found, including - gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - MEM:51.80859375 Reading. parent:1623 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - Begin found for:prospecting-nw-of-fischgesicht_mshinwell-2018-07-11, creating new SurvexBlock
+> > > - MEM:52.10546875 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.10546875 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.10546875 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > LEGS: 1858 (previous: 33064, now:34922)
+> - Include path found, including - gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - MEM:52.6796875 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - Begin found for:stone-bridge-to-balkon_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:52.6796875 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.6796875 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.6796875 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > LEGS: 187 (previous: 34922, now:35109)
+> - Include path found, including - gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - MEM:52.6953125 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - Begin found for:stone-bridge-to-fischgesicht_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > LEGS: 262 (previous: 35109, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_aday-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - MEM:52.6953125 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - Begin found for:waypoints_aday-2018-07-11, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-11 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - MEM:52.6953125 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - Begin found for:waypoints_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-12 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_jtoft-2018-07-14
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - MEM:52.6953125 Reading. parent:1623 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - No match (b) for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - Begin found for:waypoints_jtoft-2018-07-14, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/waypoints_jtoft-2018-07-14 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - MEM:52.6953125 Reading. parent:1623 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - Begin found for:waypoints_mshinwell-2018-07-11, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/waypoints_mshinwell-2018-07-11 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> - NO Match in DB (i) for a cave for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - MEM:52.6953125 Reading. parent:1623 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - Begin found for:west-of-plateau_cdensham-2018-07-15, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.6953125 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > LEGS: 1402 (previous: 35371, now:36773)
+ - Include path found, including - kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+ - NO Match in DB (i) for a cave for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - MEM:52.921875 Reading. parent:1623 <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - No match (b) for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - Begin found for:kataster-boundaries, creating new SurvexBlock
+> > - MEM:52.9453125 Reading. parent:kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> LEGS: 0 (previous: 36773, now:36773)
diff --git a/mem-3.log b/mem-3.log
new file mode 100644
index 0000000..f705d73
--- /dev/null
+++ b/mem-3.log
@@ -0,0 +1,13399 @@
+ - MEM:41.640625 Reading. parent:1623 <> 1623
+ - Include path found, including - kataster/1623
+ - NO Match in DB (i) for a cave for kataster/1623
+> - MEM:41.6484375 Reading. parent:1623 <> kataster/1623
+> - No match (b) for kataster/1623
+> - Begin found for:1623, creating new SurvexBlock
+> > - MEM:41.6484375 Reading. parent:kataster/1623 <> kataster/1623
+> - Include path found, including - fixedpts/allfixedpts
+> - NO Match in DB (i) for a cave for fixedpts/allfixedpts
+> > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/allfixedpts
+> > - Include path found, including - fixedpts/gps/allgps
+> > - NO Match in DB (i) for a cave for fixedpts/gps/allgps
+> > > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/gps/allgps
+> > > - Include path found, including - fixedpts/gps/gps96
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps96
+> > > > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/gps/gps96
+> > > > - No match (b) for fixedpts/gps/GPS96
+> > > > - Begin found for:gps96, creating new SurvexBlock
+> > > > > - MEM:41.6484375 Reading. parent:fixedpts/gps/gps96 <> fixedpts/gps/gps96
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps98
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps98
+> > > > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/gps/gps98
+> > > > - No match (b) for fixedpts/gps/GPS98
+> > > > - Begin found for:gps98, creating new SurvexBlock
+> > > > > - MEM:41.6484375 Reading. parent:fixedpts/gps/gps98 <> fixedpts/gps/gps98
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps00
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps00
+> > > > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/gps/gps00
+> > > > - No match (b) for fixedpts/gps/gps00
+> > > > - Begin found for:gps00, creating new SurvexBlock
+> > > > > - MEM:41.6484375 Reading. parent:fixedpts/gps/gps00 <> fixedpts/gps/gps00
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps01
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps01
+> > > > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/gps/gps01
+> > > > - No match (b) for fixedpts/gps/gps01
+> > > > - Begin found for:gps01, creating new SurvexBlock
+> > > > > - MEM:41.6484375 Reading. parent:fixedpts/gps/gps01 <> fixedpts/gps/gps01
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps02
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02
+> > > > - MEM:41.6484375 Reading. parent:kataster/1623 <> fixedpts/gps/gps02
+> > > > - No match (b) for fixedpts/gps/gps02
+> > > > - Begin found for:gps02, creating new SurvexBlock
+> > > > > - MEM:41.6484375 Reading. parent:fixedpts/gps/gps02 <> fixedpts/gps/gps02
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps02olly
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02olly
+> > > > - MEM:41.69921875 Reading. parent:kataster/1623 <> fixedpts/gps/gps02olly
+> > > > - No match (b) for fixedpts/gps/gps02olly
+> > > > - Begin found for:gps02olly, creating new SurvexBlock
+> > > > > - MEM:41.69921875 Reading. parent:fixedpts/gps/gps02olly <> fixedpts/gps/gps02olly
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps03
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03
+> > > > - MEM:41.69921875 Reading. parent:kataster/1623 <> fixedpts/gps/gps03
+> > > > - No match (b) for fixedpts/gps/gps03
+> > > > - Begin found for:gps03, creating new SurvexBlock
+> > > > > - MEM:41.69921875 Reading. parent:fixedpts/gps/gps03 <> fixedpts/gps/gps03
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps03_bis
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03_bis
+> > > > - MEM:41.69921875 Reading. parent:kataster/1623 <> fixedpts/gps/gps03_bis
+> > > > - No match (b) for fixedpts/gps/gps03_bis
+> > > > - Begin found for:gps03_bis, creating new SurvexBlock
+> > > > > - MEM:41.69921875 Reading. parent:fixedpts/gps/gps03_bis <> fixedpts/gps/gps03_bis
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps04
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps04
+> > > > - MEM:41.8359375 Reading. parent:kataster/1623 <> fixedpts/gps/gps04
+> > > > - No match (b) for fixedpts/gps/gps04
+> > > > - Begin found for:gps04, creating new SurvexBlock
+> > > > > - MEM:41.83984375 Reading. parent:fixedpts/gps/gps04 <> fixedpts/gps/gps04
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps05dave
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05dave
+> > > > - MEM:41.83984375 Reading. parent:kataster/1623 <> fixedpts/gps/gps05dave
+> > > - Include path found, including - fixedpts/gps/gps05
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05
+> > > > - MEM:41.83984375 Reading. parent:kataster/1623 <> fixedpts/gps/gps05
+> > > - Include path found, including - fixedpts/gps/gps06
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps06
+> > > > - MEM:41.83984375 Reading. parent:kataster/1623 <> fixedpts/gps/gps06
+> > > > - No match (b) for fixedpts/gps/gps06
+> > > > - Begin found for:gps06, creating new SurvexBlock
+> > > > > - MEM:41.83984375 Reading. parent:fixedpts/gps/gps06 <> fixedpts/gps/gps06
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps07
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps07
+> > > > - MEM:41.83984375 Reading. parent:kataster/1623 <> fixedpts/gps/gps07
+> > > > - No match (b) for fixedpts/gps/gps07
+> > > > - Begin found for:gps07, creating new SurvexBlock
+> > > > > - MEM:41.83984375 Reading. parent:fixedpts/gps/gps07 <> fixedpts/gps/gps07
+> > > > LEGS: 0 (previous: 0, now:0)
+> > > - Include path found, including - fixedpts/gps/gps09
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps09
+> > > > - MEM:41.91015625 Reading. parent:kataster/1623 <> fixedpts/gps/gps09
+> > > - Include path found, including - fixedpts/gps/gps10
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps10
+> > > > - MEM:41.91015625 Reading. parent:kataster/1623 <> fixedpts/gps/gps10
+> > > - Include path found, including - fixedpts/gps/gps11
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps11
+> > > > - MEM:41.91015625 Reading. parent:kataster/1623 <> fixedpts/gps/gps11
+> > > - Include path found, including - fixedpts/gps/gps12
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps12
+> > > > - MEM:41.91015625 Reading. parent:kataster/1623 <> fixedpts/gps/gps12
+> > > - Include path found, including - fixedpts/gps/gps14
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps14
+> > > > - MEM:41.91796875 Reading. parent:kataster/1623 <> fixedpts/gps/gps14
+> > > - Include path found, including - fixedpts/gps/gps15
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps15
+> > > > - MEM:41.91796875 Reading. parent:kataster/1623 <> fixedpts/gps/gps15
+> > > - Include path found, including - fixedpts/gps/gps16
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps16
+> > > > - MEM:41.91796875 Reading. parent:kataster/1623 <> fixedpts/gps/gps16
+> > > - Include path found, including - fixedpts/gps/gps17
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps17
+> > > > - MEM:41.91796875 Reading. parent:kataster/1623 <> fixedpts/gps/gps17
+> > > - Include path found, including - fixedpts/gps/gps18
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps18
+> > > > - MEM:41.91796875 Reading. parent:kataster/1623 <> fixedpts/gps/gps18
+> > - Include path found, including - fixedpts/nils2000
+> > - NO Match in DB (i) for a cave for fixedpts/nils2000
+> > > - MEM:41.91796875 Reading. parent:kataster/1623 <> fixedpts/nils2000
+> > - Include path found, including - fixedpts/laser
+> > - NO Match in DB (i) for a cave for fixedpts/laser
+> > > - MEM:41.93359375 Reading. parent:kataster/1623 <> fixedpts/laser
+> > > - No match (b) for fixedpts/Laser
+> > > - Begin found for:laser, creating new SurvexBlock
+> > > > - MEM:41.93359375 Reading. parent:fixedpts/laser <> fixedpts/laser
+> > > LEGS: 0 (previous: 0, now:0)
+> > - Include path found, including - fixedpts/fb-map
+> > - NO Match in DB (i) for a cave for fixedpts/fb-map
+> > > - MEM:41.93359375 Reading. parent:kataster/1623 <> fixedpts/fb-map
+> > - Include path found, including - fixedpts/misc
+> > - NO Match in DB (i) for a cave for fixedpts/misc
+> > > - MEM:41.93359375 Reading. parent:kataster/1623 <> fixedpts/misc
+> - Include path found, including - caves-1623/caves
+> - NO Match in DB (i) for a cave for caves-1623/caves
+> > - MEM:41.93359375 Reading. parent:kataster/1623 <> caves-1623/caves
+> > - Include path found, including - caves-1623/links
+> > - NO Match in DB (i) for a cave for caves-1623/links
+> > > - MEM:41.93359375 Reading. parent:kataster/1623 <> caves-1623/links
+> > - Include path found, including - caves-1623/18/18
+> > - Match in DB (i) for cave 1623-18.
+[<Cave: 1623-18>]
+> > > - MEM:42.296875 Reading. parent:kataster/1623 <> caves-1623/18/18
+[<Cave: 1623-18>]
+> > > - Begin found for:18, creating new SurvexBlock
+> > > > - MEM:42.30078125 Reading. parent:caves-1623/18/18 <> caves-1623/18/18
+[<Cave: 1623-18>]
+> > > LEGS: 33 (previous: 0, now:33)
+> > - Include path found, including - caves-1623/31/31
+> > - Match in DB (i) for cave 1623-31.
+[<Cave: 1623-31>]
+> > > - MEM:42.33203125 Reading. parent:kataster/1623 <> caves-1623/31/31
+[<Cave: 1623-31>]
+> > > - Begin found for:31, creating new SurvexBlock
+> > > > - MEM:42.3359375 Reading. parent:caves-1623/31/31 <> caves-1623/31/31
+[<Cave: 1623-31>]
+> > > - Include path found, including - caves-1623/31/elchalt
+> > > - Match in DB (i) for cave 1623-31.
+[<Cave: 1623-31>]
+> > > > - MEM:42.34375 Reading. parent:caves-1623/31/31 <> caves-1623/31/elchalt
+[<Cave: 1623-31>]
+[<Cave: 1623-31>]
+> > > > - Begin found for:elchalt, creating new SurvexBlock
+> > > > > - MEM:42.35546875 Reading. parent:caves-1623/31/elchalt <> caves-1623/31/elchalt
+[<Cave: 1623-31>]
+> > > > LEGS: 30 (previous: 33, now:63)
+> > > LEGS: 30 (previous: 33, now:63)
+> > - Include path found, including - caves-1623/76/76
+> > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > - MEM:42.359375 Reading. parent:kataster/1623 <> caves-1623/76/76
+[<Cave: 1623-76>]
+> > > - Begin found for:76, creating new SurvexBlock
+> > > > - MEM:42.3671875 Reading. parent:caves-1623/76/76 <> caves-1623/76/76
+[<Cave: 1623-76>]
+> > > - Include path found, including - caves-1623/76/entrance
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.37890625 Reading. parent:caves-1623/76/76 <> caves-1623/76/entrance
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:42.38671875 Reading. parent:caves-1623/76/entrance <> caves-1623/76/entrance
+[<Cave: 1623-76>]
+> > > > LEGS: 7 (previous: 63, now:70)
+> > > - Include path found, including - caves-1623/76/bitter
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.4140625 Reading. parent:caves-1623/76/76 <> caves-1623/76/bitter
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:bitter, creating new SurvexBlock
+> > > > > - MEM:42.421875 Reading. parent:caves-1623/76/bitter <> caves-1623/76/bitter
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 70, now:79)
+> > > - Include path found, including - caves-1623/76/bent
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.42578125 Reading. parent:caves-1623/76/76 <> caves-1623/76/bent
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:bent, creating new SurvexBlock
+> > > > > - MEM:42.4296875 Reading. parent:caves-1623/76/bent <> caves-1623/76/bent
+[<Cave: 1623-76>]
+> > > > LEGS: 7 (previous: 79, now:86)
+> > > - Include path found, including - caves-1623/76/brave
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.43359375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave, creating new SurvexBlock
+> > > > > - MEM:42.44140625 Reading. parent:caves-1623/76/brave <> caves-1623/76/brave
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 86, now:121)
+> > > - Include path found, including - caves-1623/76/lovers
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.44140625 Reading. parent:caves-1623/76/76 <> caves-1623/76/lovers
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:lovers, creating new SurvexBlock
+> > > > > - MEM:42.44921875 Reading. parent:caves-1623/76/lovers <> caves-1623/76/lovers
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 121, now:130)
+> > > - Include path found, including - caves-1623/76/saved
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.453125 Reading. parent:caves-1623/76/76 <> caves-1623/76/saved
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:saved, creating new SurvexBlock
+> > > > > - MEM:42.45703125 Reading. parent:caves-1623/76/saved <> caves-1623/76/saved
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 130, now:151)
+> > > - Include path found, including - caves-1623/76/brave2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.4609375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave2, creating new SurvexBlock
+> > > > > - MEM:42.46875 Reading. parent:caves-1623/76/brave2 <> caves-1623/76/brave2
+[<Cave: 1623-76>]
+> > > > LEGS: 19 (previous: 151, now:170)
+> > > - Include path found, including - caves-1623/76/brave3
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.46875 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave3
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave3, creating new SurvexBlock
+> > > > > - MEM:42.4765625 Reading. parent:caves-1623/76/brave3 <> caves-1623/76/brave3
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 170, now:176)
+> > > - Include path found, including - caves-1623/76/brave4
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.48046875 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave4
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave4, creating new SurvexBlock
+> > > > > - MEM:42.48828125 Reading. parent:caves-1623/76/brave4 <> caves-1623/76/brave4
+[<Cave: 1623-76>]
+> > > > LEGS: 13 (previous: 176, now:189)
+> > > - Include path found, including - caves-1623/76/brave5
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.48828125 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave5
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave5, creating new SurvexBlock
+> > > > > - MEM:42.4921875 Reading. parent:caves-1623/76/brave5 <> caves-1623/76/brave5
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 189, now:197)
+> > > - Include path found, including - caves-1623/76/brave6
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.49609375 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave6
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave6, creating new SurvexBlock
+> > > > > - MEM:42.50390625 Reading. parent:caves-1623/76/brave6 <> caves-1623/76/brave6
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 197, now:201)
+> > > - Include path found, including - caves-1623/76/brave7
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.50390625 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave7
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave7, creating new SurvexBlock
+> > > > > - MEM:42.53515625 Reading. parent:caves-1623/76/brave7 <> caves-1623/76/brave7
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 201, now:211)
+> > > - Include path found, including - caves-1623/76/brave8
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.53515625 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave8
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave8, creating new SurvexBlock
+> > > > > - MEM:42.53515625 Reading. parent:caves-1623/76/brave8 <> caves-1623/76/brave8
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 211, now:217)
+> > > - Include path found, including - caves-1623/76/keg
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.53515625 Reading. parent:caves-1623/76/76 <> caves-1623/76/keg
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:keg, creating new SurvexBlock
+> > > > > - MEM:42.53515625 Reading. parent:caves-1623/76/keg <> caves-1623/76/keg
+[<Cave: 1623-76>]
+> > > > LEGS: 18 (previous: 217, now:235)
+> > > - Include path found, including - caves-1623/76/tap
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.53515625 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:tap, creating new SurvexBlock
+> > > > > - MEM:42.53515625 Reading. parent:caves-1623/76/tap <> caves-1623/76/tap
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 235, now:256)
+> > > - Include path found, including - caves-1623/76/rift
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.53515625 Reading. parent:caves-1623/76/76 <> caves-1623/76/rift
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:rift, creating new SurvexBlock
+> > > > > - MEM:42.54296875 Reading. parent:caves-1623/76/rift <> caves-1623/76/rift
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 256, now:271)
+> > > - Include path found, including - caves-1623/76/noways
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.55859375 Reading. parent:caves-1623/76/76 <> caves-1623/76/noways
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:noways, creating new SurvexBlock
+> > > > > - MEM:42.56640625 Reading. parent:caves-1623/76/noways <> caves-1623/76/noways
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 271, now:286)
+> > > - Include path found, including - caves-1623/76/pitch
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.58203125 Reading. parent:caves-1623/76/76 <> caves-1623/76/pitch
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:pitch, creating new SurvexBlock
+> > > > > - MEM:42.58984375 Reading. parent:caves-1623/76/pitch <> caves-1623/76/pitch
+[<Cave: 1623-76>]
+> > > > LEGS: 12 (previous: 286, now:298)
+> > > - Include path found, including - caves-1623/76/boiling
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.61328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/boiling
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:boiling, creating new SurvexBlock
+> > > > > - MEM:42.62890625 Reading. parent:caves-1623/76/boiling <> caves-1623/76/boiling
+[<Cave: 1623-76>]
+> > > > LEGS: 15 (previous: 298, now:313)
+> > > - Include path found, including - caves-1623/76/99
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.63671875 Reading. parent:caves-1623/76/76 <> caves-1623/76/99
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:99, creating new SurvexBlock
+> > > > > - MEM:42.6484375 Reading. parent:caves-1623/76/99 <> caves-1623/76/99
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 313, now:319)
+> > > - Include path found, including - caves-1623/76/tap2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.6796875 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:tap2, creating new SurvexBlock
+> > > > > - MEM:42.6875 Reading. parent:caves-1623/76/tap2 <> caves-1623/76/tap2
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 319, now:325)
+> > > - Include path found, including - caves-1623/76/taprift
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.6875 Reading. parent:caves-1623/76/76 <> caves-1623/76/taprift
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:taprift, creating new SurvexBlock
+> > > > > - MEM:42.6953125 Reading. parent:caves-1623/76/taprift <> caves-1623/76/taprift
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 325, now:335)
+> > > - Include path found, including - caves-1623/76/pleasant
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.69921875 Reading. parent:caves-1623/76/76 <> caves-1623/76/pleasant
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:pleasant, creating new SurvexBlock
+> > > > > - MEM:42.703125 Reading. parent:caves-1623/76/pleasant <> caves-1623/76/pleasant
+[<Cave: 1623-76>]
+> > > > LEGS: 11 (previous: 335, now:346)
+> > > - Include path found, including - caves-1623/76/batman
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.70703125 Reading. parent:caves-1623/76/76 <> caves-1623/76/batman
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:batman, creating new SurvexBlock
+> > > > > - MEM:42.71484375 Reading. parent:caves-1623/76/batman <> caves-1623/76/batman
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 346, now:350)
+> > > - Include path found, including - caves-1623/76/pancake
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.71484375 Reading. parent:caves-1623/76/76 <> caves-1623/76/pancake
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:pancake, creating new SurvexBlock
+> > > > > - MEM:42.71875 Reading. parent:caves-1623/76/pancake <> caves-1623/76/pancake
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 350, now:360)
+> > > - Include path found, including - caves-1623/76/loopy
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.72265625 Reading. parent:caves-1623/76/76 <> caves-1623/76/loopy
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:loopy, creating new SurvexBlock
+> > > > > - MEM:42.73046875 Reading. parent:caves-1623/76/loopy <> caves-1623/76/loopy
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 360, now:395)
+> > > - Include path found, including - caves-1623/76/spent
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.73046875 Reading. parent:caves-1623/76/76 <> caves-1623/76/spent
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:spent, creating new SurvexBlock
+> > > > > - MEM:42.73828125 Reading. parent:caves-1623/76/spent <> caves-1623/76/spent
+[<Cave: 1623-76>]
+> > > > LEGS: 10 (previous: 395, now:405)
+> > > - Include path found, including - caves-1623/76/strange
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.73828125 Reading. parent:caves-1623/76/76 <> caves-1623/76/strange
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:strange, creating new SurvexBlock
+> > > > > - MEM:42.74609375 Reading. parent:caves-1623/76/strange <> caves-1623/76/strange
+[<Cave: 1623-76>]
+> > > > LEGS: 24 (previous: 405, now:429)
+> > > - Include path found, including - caves-1623/76/stranger
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.76171875 Reading. parent:caves-1623/76/76 <> caves-1623/76/stranger
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:stranger, creating new SurvexBlock
+> > > > > - MEM:42.76953125 Reading. parent:caves-1623/76/stranger <> caves-1623/76/stranger
+[<Cave: 1623-76>]
+> > > > LEGS: 6 (previous: 429, now:435)
+> > > - Include path found, including - caves-1623/76/waste
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.7734375 Reading. parent:caves-1623/76/76 <> caves-1623/76/waste
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:waste, creating new SurvexBlock
+> > > > > - MEM:42.8046875 Reading. parent:caves-1623/76/waste <> caves-1623/76/waste
+[<Cave: 1623-76>]
+> > > > LEGS: 9 (previous: 435, now:444)
+> > > - Include path found, including - caves-1623/76/hotgkpitch
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8046875 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgkpitch
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:hotgkpitch, creating new SurvexBlock
+> > > > > - MEM:42.8046875 Reading. parent:caves-1623/76/hotgkpitch <> caves-1623/76/hotgkpitch
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 444, now:452)
+> > > - Include path found, including - caves-1623/76/hotgk
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8046875 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgk
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:hotgk, creating new SurvexBlock
+> > > > > - MEM:42.8046875 Reading. parent:caves-1623/76/hotgk <> caves-1623/76/hotgk
+[<Cave: 1623-76>]
+> > > > LEGS: 21 (previous: 452, now:473)
+> > > - Include path found, including - caves-1623/76/fiesta
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8046875 Reading. parent:caves-1623/76/76 <> caves-1623/76/fiesta
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:fiesta, creating new SurvexBlock
+> > > > > - MEM:42.8046875 Reading. parent:caves-1623/76/fiesta <> caves-1623/76/fiesta
+[<Cave: 1623-76>]
+> > > > LEGS: 31 (previous: 473, now:504)
+> > > - Include path found, including - caves-1623/76/holes
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8046875 Reading. parent:caves-1623/76/76 <> caves-1623/76/holes
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:holes, creating new SurvexBlock
+> > > > > - MEM:42.80859375 Reading. parent:caves-1623/76/holes <> caves-1623/76/holes
+[<Cave: 1623-76>]
+> > > > LEGS: 8 (previous: 504, now:512)
+> > > - Include path found, including - caves-1623/76/boil2
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.85546875 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil2
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:boil2, creating new SurvexBlock
+> > > > > - MEM:42.859375 Reading. parent:caves-1623/76/boil2 <> caves-1623/76/boil2
+[<Cave: 1623-76>]
+> > > > LEGS: 3 (previous: 512, now:515)
+> > > - Include path found, including - caves-1623/76/boil3
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.86328125 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil3
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:boil3, creating new SurvexBlock
+> > > > > - MEM:42.8671875 Reading. parent:caves-1623/76/boil3 <> caves-1623/76/boil3
+[<Cave: 1623-76>]
+> > > > LEGS: 4 (previous: 515, now:519)
+> > > - Include path found, including - caves-1623/76/choss
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.87109375 Reading. parent:caves-1623/76/76 <> caves-1623/76/choss
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:choss, creating new SurvexBlock
+> > > > > - MEM:42.87890625 Reading. parent:caves-1623/76/choss <> caves-1623/76/choss
+[<Cave: 1623-76>]
+> > > > LEGS: 5 (previous: 519, now:524)
+> > > - Include path found, including - caves-1623/76/brave9
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.87890625 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave9
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:brave9, creating new SurvexBlock
+> > > > > - MEM:42.88671875 Reading. parent:caves-1623/76/brave9 <> caves-1623/76/brave9
+[<Cave: 1623-76>]
+> > > > LEGS: 12 (previous: 524, now:536)
+> > > - Include path found, including - caves-1623/76/electric_upper
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.88671875 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_upper
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:electric_upper, creating new SurvexBlock
+> > > > > - MEM:42.89453125 Reading. parent:caves-1623/76/electric_upper <> caves-1623/76/electric_upper
+[<Cave: 1623-76>]
+> > > > LEGS: 35 (previous: 536, now:571)
+> > > - Include path found, including - caves-1623/76/electric_lower
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.8984375 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_lower
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:electric_lower, creating new SurvexBlock
+> > > > > - MEM:42.91015625 Reading. parent:caves-1623/76/electric_lower <> caves-1623/76/electric_lower
+[<Cave: 1623-76>]
+> > > > LEGS: 249 (previous: 571, now:820)
+> > > - Include path found, including - caves-1623/76/atomic
+> > > - Match in DB (i) for cave 1623-76.
+[<Cave: 1623-76>]
+> > > > - MEM:42.9140625 Reading. parent:caves-1623/76/76 <> caves-1623/76/atomic
+[<Cave: 1623-76>]
+[<Cave: 1623-76>]
+> > > > - Begin found for:atomic, creating new SurvexBlock
+> > > > > - MEM:42.91796875 Reading. parent:caves-1623/76/atomic <> caves-1623/76/atomic
+[<Cave: 1623-76>]
+> > > > LEGS: 65 (previous: 820, now:885)
+> > > LEGS: 822 (previous: 63, now:885)
+> > - Include path found, including - caves-1623/81/81
+> > - Match in DB (i) for cave 1623-81.
+[<Cave: 1623-81>]
+> > > - MEM:42.91796875 Reading. parent:kataster/1623 <> caves-1623/81/81
+[<Cave: 1623-81>]
+> > > - Begin found for:81, creating new SurvexBlock
+> > > > - MEM:42.91796875 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+[<Cave: 1623-81>]
+[<Cave: 1623-81>]
+> > > - Begin found for:oldcave, creating new SurvexBlock
+> > > > - MEM:42.91796875 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+[<Cave: 1623-81>]
+> > > LEGS: 10 (previous: 885, now:895)
+> > - Include path found, including - caves-1623/90/90
+> > - Match in DB (i) for cave 1623-90.
+[<Cave: 1623-90>]
+> > > - MEM:42.91796875 Reading. parent:kataster/1623 <> caves-1623/90/90
+[<Cave: 1623-90>]
+> > > - Begin found for:90, creating new SurvexBlock
+> > > > - MEM:42.921875 Reading. parent:caves-1623/90/90 <> caves-1623/90/90
+[<Cave: 1623-90>]
+> > > LEGS: 1 (previous: 895, now:896)
+> > - Include path found, including - caves-1623/91/91
+> > - Match in DB (i) for cave 1623-91.
+[<Cave: 1623-91>]
+> > > - MEM:42.92578125 Reading. parent:kataster/1623 <> caves-1623/91/91
+[<Cave: 1623-91>]
+> > > - Begin found for:91, creating new SurvexBlock
+> > > > - MEM:42.92578125 Reading. parent:caves-1623/91/91 <> caves-1623/91/91
+[<Cave: 1623-91>]
+> > > LEGS: 1 (previous: 896, now:897)
+> > - Include path found, including - caves-1623/96/96
+> > - Match in DB (i) for cave 1623-96.
+[<Cave: 1623-96>]
+> > > - MEM:42.9296875 Reading. parent:kataster/1623 <> caves-1623/96/96
+[<Cave: 1623-96>]
+> > > - Begin found for:96, creating new SurvexBlock
+> > > > - MEM:42.93359375 Reading. parent:caves-1623/96/96 <> caves-1623/96/96
+[<Cave: 1623-96>]
+> > > LEGS: 8 (previous: 897, now:905)
+> > - Include path found, including - caves-1623/97/97
+> > - Match in DB (i) for cave 1623-97.
+[<Cave: 1623-97>]
+> > > - MEM:42.94140625 Reading. parent:kataster/1623 <> caves-1623/97/97
+[<Cave: 1623-97>]
+> > > - Begin found for:97, creating new SurvexBlock
+> > > > - MEM:42.94921875 Reading. parent:caves-1623/97/97 <> caves-1623/97/97
+[<Cave: 1623-97>]
+> > > LEGS: 47 (previous: 905, now:952)
+> > - Include path found, including - caves-1623/101/101
+> > - Match in DB (i) for cave 1623-101.
+[<Cave: 1623-101>]
+> > > - MEM:42.953125 Reading. parent:kataster/1623 <> caves-1623/101/101
+[<Cave: 1623-101>]
+> > > - Begin found for:101, creating new SurvexBlock
+> > > > - MEM:42.953125 Reading. parent:caves-1623/101/101 <> caves-1623/101/101
+[<Cave: 1623-101>]
+> > > LEGS: 142 (previous: 952, now:1094)
+> > - Include path found, including - caves-1623/103/103
+> > - Match in DB (i) for cave 1623-103.
+[<Cave: 1623-103>]
+> > > - MEM:42.99609375 Reading. parent:kataster/1623 <> caves-1623/103/103
+[<Cave: 1623-103>]
+> > > - Begin found for:103, creating new SurvexBlock
+> > > > - MEM:42.99609375 Reading. parent:caves-1623/103/103 <> caves-1623/103/103
+[<Cave: 1623-103>]
+> > > LEGS: 1 (previous: 1094, now:1095)
+> > - Include path found, including - caves-1623/105/105
+> > - Match in DB (i) for cave 1623-105.
+[<Cave: 1623-105>]
+> > > - MEM:42.99609375 Reading. parent:kataster/1623 <> caves-1623/105/105
+[<Cave: 1623-105>]
+> > > - Begin found for:105, creating new SurvexBlock
+> > > > - MEM:42.99609375 Reading. parent:caves-1623/105/105 <> caves-1623/105/105
+[<Cave: 1623-105>]
+> > > LEGS: 2 (previous: 1095, now:1097)
+> > - Include path found, including - caves-1623/108/108
+> > - Match in DB (i) for cave 1623-108.
+[<Cave: 1623-108>]
+> > > - MEM:42.99609375 Reading. parent:kataster/1623 <> caves-1623/108/108
+[<Cave: 1623-108>]
+> > > - Begin found for:108, creating new SurvexBlock
+> > > > - MEM:42.99609375 Reading. parent:caves-1623/108/108 <> caves-1623/108/108
+[<Cave: 1623-108>]
+> > > LEGS: 1 (previous: 1097, now:1098)
+> > - Include path found, including - caves-1623/113/113
+> > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > - MEM:43.015625 Reading. parent:kataster/1623 <> caves-1623/113/113
+[<Cave: 1623-113>]
+> > > - Begin found for:113, creating new SurvexBlock
+> > > > - MEM:43.03515625 Reading. parent:caves-1623/113/113 <> caves-1623/113/113
+[<Cave: 1623-113>]
+> > > - Include path found, including - caves-1623/113/haupt
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.046875 Reading. parent:caves-1623/113/113 <> caves-1623/113/haupt
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > - MEM:43.0625 Reading. parent:caves-1623/113/haupt <> caves-1623/113/haupt
+[<Cave: 1623-113>]
+> > > > LEGS: 98 (previous: 1098, now:1196)
+> > > - Include path found, including - caves-1623/113/oper
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.07421875 Reading. parent:caves-1623/113/113 <> caves-1623/113/oper
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for:oper, creating new SurvexBlock
+> > > > > - MEM:43.078125 Reading. parent:caves-1623/113/oper <> caves-1623/113/oper
+[<Cave: 1623-113>]
+> > > > LEGS: 21 (previous: 1196, now:1217)
+> > > - Include path found, including - caves-1623/113/sumpf
+> > > - Match in DB (i) for cave 1623-113.
+[<Cave: 1623-113>]
+> > > > - MEM:43.078125 Reading. parent:caves-1623/113/113 <> caves-1623/113/sumpf
+[<Cave: 1623-113>]
+[<Cave: 1623-113>]
+> > > > - Begin found for:sumpf, creating new SurvexBlock
+> > > > > - MEM:43.0859375 Reading. parent:caves-1623/113/sumpf <> caves-1623/113/sumpf
+[<Cave: 1623-113>]
+> > > > LEGS: 38 (previous: 1217, now:1255)
+> > > LEGS: 157 (previous: 1098, now:1255)
+> > - Include path found, including - caves-1623/116/116
+> > - Match in DB (i) for cave 1623-116.
+[<Cave: 1623-116>]
+> > > - MEM:43.08984375 Reading. parent:kataster/1623 <> caves-1623/116/116
+[<Cave: 1623-116>]
+> > > - Begin found for:116, creating new SurvexBlock
+> > > > - MEM:43.08984375 Reading. parent:caves-1623/116/116 <> caves-1623/116/116
+[<Cave: 1623-116>]
+> > > LEGS: 41 (previous: 1255, now:1296)
+> > - Include path found, including - caves-1623/131/131
+> > - Match in DB (i) for cave 1623-131.
+[<Cave: 1623-131>]
+> > > - MEM:43.09375 Reading. parent:kataster/1623 <> caves-1623/131/131
+[<Cave: 1623-131>]
+> > > - Begin found for:131, creating new SurvexBlock
+> > > > - MEM:43.09375 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+[<Cave: 1623-131>]
+[<Cave: 1623-131>]
+> > > - Begin found for:part1, creating new SurvexBlock
+> > > > - MEM:43.09375 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+[<Cave: 1623-131>]
+> > > LEGS: 32 (previous: 1296, now:1328)
+> > - Include path found, including - caves-1623/135/135
+> > - Match in DB (i) for cave 1623-135.
+[<Cave: 1623-135>]
+> > > - MEM:43.09375 Reading. parent:kataster/1623 <> caves-1623/135/135
+[<Cave: 1623-135>]
+> > > - Begin found for:135, creating new SurvexBlock
+> > > > - MEM:43.09375 Reading. parent:caves-1623/135/135 <> caves-1623/135/135
+[<Cave: 1623-135>]
+> > > LEGS: 2 (previous: 1328, now:1330)
+> > - Include path found, including - caves-1623/138/138
+> > - Match in DB (i) for cave 1623-138.
+[<Cave: 1623-138>]
+> > > - MEM:43.09375 Reading. parent:kataster/1623 <> caves-1623/138/138
+[<Cave: 1623-138>]
+> > > - Begin found for:138, creating new SurvexBlock
+> > > > - MEM:43.09375 Reading. parent:caves-1623/138/138 <> caves-1623/138/138
+[<Cave: 1623-138>]
+> > > LEGS: 2 (previous: 1330, now:1332)
+> > - Include path found, including - caves-1623/139/139
+> > - Match in DB (i) for cave 1623-139.
+[<Cave: 1623-139>]
+> > > - MEM:43.09375 Reading. parent:kataster/1623 <> caves-1623/139/139
+[<Cave: 1623-139>]
+> > > - Begin found for:139, creating new SurvexBlock
+> > > > - MEM:43.09375 Reading. parent:caves-1623/139/139 <> caves-1623/139/139
+[<Cave: 1623-139>]
+> > > LEGS: 2 (previous: 1332, now:1334)
+> > - Include path found, including - caves-1623/140/140
+> > - Match in DB (i) for cave 1623-140.
+[<Cave: 1623-140>]
+> > > - MEM:43.09375 Reading. parent:kataster/1623 <> caves-1623/140/140
+[<Cave: 1623-140>]
+> > > - Begin found for:140, creating new SurvexBlock
+> > > > - MEM:43.09375 Reading. parent:caves-1623/140/140 <> caves-1623/140/140
+[<Cave: 1623-140>]
+> > > LEGS: 1 (previous: 1334, now:1335)
+> > - Include path found, including - caves-1623/145/145
+> > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > - MEM:43.1484375 Reading. parent:kataster/1623 <> caves-1623/145/145
+[<Cave: 1623-145>]
+> > > - Begin found for:145, creating new SurvexBlock
+> > > > - MEM:43.15625 Reading. parent:caves-1623/145/145 <> caves-1623/145/145
+[<Cave: 1623-145>]
+> > > - Include path found, including - caves-1623/145/resurvey2005/145-2005
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.16796875 Reading. parent:caves-1623/145/145 <> caves-1623/145/resurvey2005/145-2005
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:145-2005, creating new SurvexBlock
+> > > > > - MEM:43.1875 Reading. parent:caves-1623/145/resurvey2005/145-2005 <> caves-1623/145/resurvey2005/145-2005
+[<Cave: 1623-145>]
+> > > > LEGS: 100 (previous: 1335, now:1435)
+> > > - Include path found, including - caves-1623/145/145cucc/part3
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.1875 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part3, creating new SurvexBlock
+> > > > > - MEM:43.19921875 Reading. parent:caves-1623/145/145cucc/part3 <> caves-1623/145/145cucc/part3
+[<Cave: 1623-145>]
+> > > > LEGS: 29 (previous: 1435, now:1464)
+> > > - Include path found, including - caves-1623/145/145cucc/part3to4
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.203125 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3to4
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part3to4, creating new SurvexBlock
+> > > > > - MEM:43.2109375 Reading. parent:caves-1623/145/145cucc/part3to4 <> caves-1623/145/145cucc/part3to4
+[<Cave: 1623-145>]
+> > > > LEGS: 1 (previous: 1464, now:1465)
+> > > - Include path found, including - caves-1623/145/145cucc/part4
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.2109375 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part4
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part4, creating new SurvexBlock
+> > > > > - MEM:43.21875 Reading. parent:caves-1623/145/145cucc/part4 <> caves-1623/145/145cucc/part4
+[<Cave: 1623-145>]
+> > > > LEGS: 49 (previous: 1465, now:1514)
+> > > - Include path found, including - caves-1623/145/145cucc/part5
+> > > - Match in DB (i) for cave 1623-145.
+[<Cave: 1623-145>]
+> > > > - MEM:43.25 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part5
+[<Cave: 1623-145>]
+[<Cave: 1623-145>]
+> > > > - Begin found for:part5, creating new SurvexBlock
+> > > > > - MEM:43.25 Reading. parent:caves-1623/145/145cucc/part5 <> caves-1623/145/145cucc/part5
+[<Cave: 1623-145>]
+> > > > LEGS: 9 (previous: 1514, now:1523)
+> > > LEGS: 188 (previous: 1335, now:1523)
+> > - Include path found, including - caves-1623/147/147
+> > - Match in DB (i) for cave 1623-147.
+[<Cave: 1623-147>]
+> > > - MEM:43.25 Reading. parent:kataster/1623 <> caves-1623/147/147
+[<Cave: 1623-147>]
+> > > - Begin found for:sflink, creating new SurvexBlock
+> > > > - MEM:43.25 Reading. parent:caves-1623/147/147 <> caves-1623/147/147
+[<Cave: 1623-147>]
+> > > LEGS: 1 (previous: 1523, now:1524)
+> > - Include path found, including - caves-1623/148/148-2007
+> > - Match in DB (i) for cave 1623-148.
+[<Cave: 1623-148>]
+> > > - MEM:43.25 Reading. parent:kataster/1623 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+> > > - Begin found for:148, creating new SurvexBlock
+> > > > - MEM:43.25 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+[<Cave: 1623-148>]
+> > > - Begin found for:ent, creating new SurvexBlock
+> > > > - MEM:43.25 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+[<Cave: 1623-148>]
+> > > LEGS: 12 (previous: 1524, now:1536)
+> > - Include path found, including - caves-1623/152/152
+> > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > - MEM:43.25 Reading. parent:kataster/1623 <> caves-1623/152/152
+[<Cave: 1623-152>]
+> > > - Begin found for:152, creating new SurvexBlock
+> > > > - MEM:43.25 Reading. parent:caves-1623/152/152 <> caves-1623/152/152
+[<Cave: 1623-152>]
+> > > - Include path found, including - caves-1623/152/bananamain
+> > > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > > - MEM:43.25 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananamain
+[<Cave: 1623-152>]
+[<Cave: 1623-152>]
+> > > > - Begin found for:bananamain, creating new SurvexBlock
+> > > > > - MEM:43.26171875 Reading. parent:caves-1623/152/bananamain <> caves-1623/152/bananamain
+[<Cave: 1623-152>]
+> > > > LEGS: 43 (previous: 1536, now:1579)
+> > > - Include path found, including - caves-1623/152/bananacon
+> > > - Match in DB (i) for cave 1623-152.
+[<Cave: 1623-152>]
+> > > > - MEM:43.26953125 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananacon
+[<Cave: 1623-152>]
+[<Cave: 1623-152>]
+> > > > - Begin found for:bananacon, creating new SurvexBlock
+> > > > > - MEM:43.28515625 Reading. parent:caves-1623/152/bananacon <> caves-1623/152/bananacon
+[<Cave: 1623-152>]
+> > > > LEGS: 13 (previous: 1579, now:1592)
+> > > LEGS: 56 (previous: 1536, now:1592)
+> > - Include path found, including - caves-1623/157/157
+> > - Match in DB (i) for cave 1623-157.
+[<Cave: 1623-157>]
+> > > - MEM:43.29296875 Reading. parent:kataster/1623 <> caves-1623/157/157
+[<Cave: 1623-157>]
+> > > - Begin found for:157, creating new SurvexBlock
+> > > > - MEM:43.29296875 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+[<Cave: 1623-157>]
+[<Cave: 1623-157>]
+> > > - Begin found for:pt2, creating new SurvexBlock
+> > > > - MEM:43.32421875 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+[<Cave: 1623-157>]
+> > > LEGS: 0 (previous: 1605, now:1605)
+> > - Include path found, including - caves-1623/162/162
+> > - Match in DB (i) for cave 1623-162.
+[<Cave: 1623-162>]
+> > > - MEM:43.3359375 Reading. parent:kataster/1623 <> caves-1623/162/162
+[<Cave: 1623-162>]
+> > > - Begin found for:162, creating new SurvexBlock
+> > > > - MEM:43.36328125 Reading. parent:caves-1623/162/162 <> caves-1623/162/162
+[<Cave: 1623-162>]
+> > > LEGS: 20 (previous: 1605, now:1625)
+> > - Include path found, including - caves-1623/163/163
+> > - Match in DB (i) for cave 1623-163.
+[<Cave: 1623-163>]
+> > > - MEM:43.46875 Reading. parent:kataster/1623 <> caves-1623/163/163
+[<Cave: 1623-163>]
+> > > - Begin found for:163, creating new SurvexBlock
+> > > > - MEM:43.47265625 Reading. parent:caves-1623/163/163 <> caves-1623/163/163
+[<Cave: 1623-163>]
+> > > LEGS: 5 (previous: 1625, now:1630)
+> > - Include path found, including - caves-1623/171/171
+> > - Match in DB (i) for cave 1623-171.
+[<Cave: 1623-171>]
+> > > - MEM:43.4765625 Reading. parent:kataster/1623 <> caves-1623/171/171
+[<Cave: 1623-171>]
+> > > - Begin found for:171, creating new SurvexBlock
+> > > > - MEM:43.51171875 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+[<Cave: 1623-171>]
+[<Cave: 1623-171>]
+> > > - Begin found for:main, creating new SurvexBlock
+> > > > - MEM:43.515625 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+[<Cave: 1623-171>]
+> > > LEGS: 209 (previous: 1630, now:1839)
+> > - Include path found, including - caves-1623/172/172
+> > - Match in DB (i) for cave 1623-172.
+[<Cave: 1623-172>]
+> > > - MEM:43.51953125 Reading. parent:kataster/1623 <> caves-1623/172/172
+[<Cave: 1623-172>]
+> > > - Begin found for:172, creating new SurvexBlock
+> > > > - MEM:43.51953125 Reading. parent:caves-1623/172/172 <> caves-1623/172/172
+[<Cave: 1623-172>]
+> > > LEGS: 2 (previous: 1839, now:1841)
+> > - Include path found, including - caves-1623/174/174
+> > - Match in DB (i) for cave 1623-174.
+[<Cave: 1623-174>]
+> > > - MEM:43.625 Reading. parent:kataster/1623 <> caves-1623/174/174
+[<Cave: 1623-174>]
+> > > - Begin found for:174, creating new SurvexBlock
+> > > > - MEM:43.63671875 Reading. parent:caves-1623/174/174 <> caves-1623/174/174
+[<Cave: 1623-174>]
+> > > LEGS: 1 (previous: 1841, now:1842)
+> > - Include path found, including - caves-1623/175/175
+> > - Match in DB (i) for cave 1623-175.
+[<Cave: 1623-175>]
+> > > - MEM:43.65234375 Reading. parent:kataster/1623 <> caves-1623/175/175
+[<Cave: 1623-175>]
+> > > - Begin found for:175, creating new SurvexBlock
+> > > > - MEM:43.65625 Reading. parent:caves-1623/175/175 <> caves-1623/175/175
+[<Cave: 1623-175>]
+> > > LEGS: 1 (previous: 1842, now:1843)
+> > - Include path found, including - caves-1623/176/176
+> > - Match in DB (i) for cave 1623-176.
+[<Cave: 1623-176>]
+> > > - MEM:43.6640625 Reading. parent:kataster/1623 <> caves-1623/176/176
+[<Cave: 1623-176>]
+> > > - Begin found for:176, creating new SurvexBlock
+> > > > - MEM:43.671875 Reading. parent:caves-1623/176/176 <> caves-1623/176/176
+[<Cave: 1623-176>]
+> > > LEGS: 1 (previous: 1843, now:1844)
+> > - Include path found, including - caves-1623/182/182
+> > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > - MEM:43.734375 Reading. parent:kataster/1623 <> caves-1623/182/182
+[<Cave: 1623-182>]
+> > > - Begin found for:182, creating new SurvexBlock
+> > > > - MEM:43.75390625 Reading. parent:caves-1623/182/182 <> caves-1623/182/182
+[<Cave: 1623-182>]
+> > > - Include path found, including - caves-1623/182/entrance
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.78515625 Reading. parent:caves-1623/182/182 <> caves-1623/182/entrance
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:43.828125 Reading. parent:caves-1623/182/entrance <> caves-1623/182/entrance
+[<Cave: 1623-182>]
+> > > > LEGS: 31 (previous: 1844, now:1875)
+> > > - Include path found, including - caves-1623/182/yorkrip
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.84765625 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorkrip
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:yorkrip, creating new SurvexBlock
+> > > > > - MEM:43.86328125 Reading. parent:caves-1623/182/yorkrip <> caves-1623/182/yorkrip
+[<Cave: 1623-182>]
+> > > > LEGS: 31 (previous: 1875, now:1906)
+> > > - Include path found, including - caves-1623/182/dottodot
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.890625 Reading. parent:caves-1623/182/182 <> caves-1623/182/dottodot
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:dottodot, creating new SurvexBlock
+> > > > > - MEM:43.890625 Reading. parent:caves-1623/182/dottodot <> caves-1623/182/dottodot
+[<Cave: 1623-182>]
+> > > > LEGS: 26 (previous: 1906, now:1932)
+> > > - Include path found, including - caves-1623/182/quark
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.8984375 Reading. parent:caves-1623/182/182 <> caves-1623/182/quark
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:quark, creating new SurvexBlock
+> > > > > - MEM:43.90234375 Reading. parent:caves-1623/182/quark <> caves-1623/182/quark
+[<Cave: 1623-182>]
+> > > > LEGS: 23 (previous: 1932, now:1955)
+> > > - Include path found, including - caves-1623/182/amnesia
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:43.9921875 Reading. parent:caves-1623/182/182 <> caves-1623/182/amnesia
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:amnesia, creating new SurvexBlock
+> > > > > - MEM:44.0078125 Reading. parent:caves-1623/182/amnesia <> caves-1623/182/amnesia
+[<Cave: 1623-182>]
+> > > > LEGS: 24 (previous: 1955, now:1979)
+> > > - Include path found, including - caves-1623/182/piezo
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.015625 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:piezo, creating new SurvexBlock
+> > > > > - MEM:44.03515625 Reading. parent:caves-1623/182/piezo <> caves-1623/182/piezo
+[<Cave: 1623-182>]
+> > > > LEGS: 10 (previous: 1979, now:1989)
+> > > - Include path found, including - caves-1623/182/strike2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.04296875 Reading. parent:caves-1623/182/182 <> caves-1623/182/strike2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:strike2, creating new SurvexBlock
+> > > > > - MEM:44.0546875 Reading. parent:caves-1623/182/strike2 <> caves-1623/182/strike2
+[<Cave: 1623-182>]
+> > > > LEGS: 4 (previous: 1989, now:1993)
+> > > - Include path found, including - caves-1623/182/piezo2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.07421875 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:piezo2, creating new SurvexBlock
+> > > > > - MEM:44.08984375 Reading. parent:caves-1623/182/piezo2 <> caves-1623/182/piezo2
+[<Cave: 1623-182>]
+> > > > LEGS: 10 (previous: 1993, now:2003)
+> > > - Include path found, including - caves-1623/182/ent2
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.10546875 Reading. parent:caves-1623/182/182 <> caves-1623/182/ent2
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:ent2, creating new SurvexBlock
+> > > > > - MEM:44.12890625 Reading. parent:caves-1623/182/ent2 <> caves-1623/182/ent2
+[<Cave: 1623-182>]
+> > > > LEGS: 9 (previous: 2003, now:2012)
+> > > - Include path found, including - caves-1623/182/yorktop
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.24609375 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorktop
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:yorktop, creating new SurvexBlock
+> > > > > - MEM:44.24609375 Reading. parent:caves-1623/182/yorktop <> caves-1623/182/yorktop
+[<Cave: 1623-182>]
+> > > > LEGS: 26 (previous: 2012, now:2038)
+> > > - Include path found, including - caves-1623/182/sump
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.26171875 Reading. parent:caves-1623/182/182 <> caves-1623/182/sump
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:sump, creating new SurvexBlock
+> > > > > - MEM:44.26953125 Reading. parent:caves-1623/182/sump <> caves-1623/182/sump
+[<Cave: 1623-182>]
+> > > > LEGS: 8 (previous: 2038, now:2046)
+> > > - Include path found, including - caves-1623/182/overshel
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.29296875 Reading. parent:caves-1623/182/182 <> caves-1623/182/overshel
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:ott, creating new SurvexBlock
+> > > > > - MEM:44.3046875 Reading. parent:caves-1623/182/overshel <> caves-1623/182/overshel
+[<Cave: 1623-182>]
+> > > > LEGS: 16 (previous: 2046, now:2062)
+> > > - Include path found, including - caves-1623/182/claustro
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.3203125 Reading. parent:caves-1623/182/182 <> caves-1623/182/claustro
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:claustrolink, creating new SurvexBlock
+> > > > > - MEM:44.328125 Reading. parent:caves-1623/182/claustro <> caves-1623/182/claustro
+[<Cave: 1623-182>]
+> > > > LEGS: 1 (previous: 2062, now:2063)
+> > > - Include path found, including - caves-1623/182/brutefor
+> > > - Match in DB (i) for cave 1623-182.
+[<Cave: 1623-182>]
+> > > > - MEM:44.34375 Reading. parent:caves-1623/182/182 <> caves-1623/182/brutefor
+[<Cave: 1623-182>]
+[<Cave: 1623-182>]
+> > > > - Begin found for:brute, creating new SurvexBlock
+> > > > > - MEM:44.3671875 Reading. parent:caves-1623/182/brutefor <> caves-1623/182/brutefor
+[<Cave: 1623-182>]
+> > > > LEGS: 16 (previous: 2063, now:2079)
+> > > LEGS: 235 (previous: 1844, now:2079)
+> > - Include path found, including - caves-1623/183/183
+> > - Match in DB (i) for cave 1623-183.
+[<Cave: 1623-183>]
+> > > - MEM:44.3828125 Reading. parent:kataster/1623 <> caves-1623/183/183
+[<Cave: 1623-183>]
+> > > - Begin found for:183, creating new SurvexBlock
+> > > > - MEM:44.38671875 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+[<Cave: 1623-183>]
+[<Cave: 1623-183>]
+> > > - Begin found for:upper, creating new SurvexBlock
+> > > > - MEM:44.3984375 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+[<Cave: 1623-183>]
+> > > LEGS: 21 (previous: 2079, now:2100)
+> > - Include path found, including - caves-1623/185/185
+> > - Match in DB (i) for cave 1623-185.
+[<Cave: 1623-185>]
+> > > - MEM:44.41015625 Reading. parent:kataster/1623 <> caves-1623/185/185
+[<Cave: 1623-185>]
+> > > - Begin found for:185, creating new SurvexBlock
+> > > > - MEM:44.421875 Reading. parent:caves-1623/185/185 <> caves-1623/185/185
+[<Cave: 1623-185>]
+> > > LEGS: 20 (previous: 2100, now:2120)
+> > - Include path found, including - caves-1623/193/193
+> > - Match in DB (i) for cave 1623-193.
+[<Cave: 1623-193>]
+> > > - MEM:44.43359375 Reading. parent:kataster/1623 <> caves-1623/193/193
+[<Cave: 1623-193>]
+> > > - Begin found for:193, creating new SurvexBlock
+> > > > - MEM:44.4375 Reading. parent:caves-1623/193/193 <> caves-1623/193/193
+[<Cave: 1623-193>]
+> > > LEGS: 5 (previous: 2120, now:2125)
+> > - Include path found, including - caves-1623/195/195
+> > - Match in DB (i) for cave 1623-195.
+[<Cave: 1623-195>]
+> > > - MEM:44.453125 Reading. parent:kataster/1623 <> caves-1623/195/195
+[<Cave: 1623-195>]
+> > > - Begin found for:195, creating new SurvexBlock
+> > > > - MEM:44.46484375 Reading. parent:caves-1623/195/195 <> caves-1623/195/195
+[<Cave: 1623-195>]
+> > > LEGS: 4 (previous: 2125, now:2129)
+> > - Include path found, including - caves-1623/196/196
+> > - Match in DB (i) for cave 1623-196.
+[<Cave: 1623-196>]
+> > > - MEM:44.484375 Reading. parent:kataster/1623 <> caves-1623/196/196
+[<Cave: 1623-196>]
+> > > - Begin found for:196, creating new SurvexBlock
+> > > > - MEM:44.48828125 Reading. parent:caves-1623/196/196 <> caves-1623/196/196
+[<Cave: 1623-196>]
+> > > LEGS: 3 (previous: 2129, now:2132)
+> > - Include path found, including - caves-1623/199/199
+> > - Match in DB (i) for cave 1623-199.
+[<Cave: 1623-199>]
+> > > - MEM:44.5078125 Reading. parent:kataster/1623 <> caves-1623/199/199
+[<Cave: 1623-199>]
+> > > - Begin found for:199, creating new SurvexBlock
+> > > > - MEM:44.51171875 Reading. parent:caves-1623/199/199 <> caves-1623/199/199
+[<Cave: 1623-199>]
+> > > LEGS: 5 (previous: 2132, now:2137)
+> > - Include path found, including - caves-1623/200/200
+> > - Match in DB (i) for cave 1623-200.
+[<Cave: 1623-200>]
+> > > - MEM:44.51953125 Reading. parent:kataster/1623 <> caves-1623/200/200
+[<Cave: 1623-200>]
+> > > - Begin found for:200, creating new SurvexBlock
+> > > > - MEM:44.51953125 Reading. parent:caves-1623/200/200 <> caves-1623/200/200
+[<Cave: 1623-200>]
+> > > LEGS: 4 (previous: 2137, now:2141)
+> > - Include path found, including - caves-1623/201/201
+> > - Match in DB (i) for cave 1623-201.
+[<Cave: 1623-201>]
+> > > - MEM:44.51953125 Reading. parent:kataster/1623 <> caves-1623/201/201
+[<Cave: 1623-201>]
+> > > - Begin found for:201, creating new SurvexBlock
+> > > > - MEM:44.52734375 Reading. parent:caves-1623/201/201 <> caves-1623/201/201
+[<Cave: 1623-201>]
+> > > LEGS: 2 (previous: 2141, now:2143)
+> > - Include path found, including - caves-1623/202/202
+> > - Match in DB (i) for cave 1623-202.
+[<Cave: 1623-202>]
+> > > - MEM:44.54296875 Reading. parent:kataster/1623 <> caves-1623/202/202
+[<Cave: 1623-202>]
+> > > - Begin found for:202, creating new SurvexBlock
+> > > > - MEM:44.55078125 Reading. parent:caves-1623/202/202 <> caves-1623/202/202
+[<Cave: 1623-202>]
+> > > LEGS: 14 (previous: 2143, now:2157)
+> > - Include path found, including - caves-1623/203/203
+> > - Match in DB (i) for cave 1623-203.
+[<Cave: 1623-203>]
+> > > - MEM:44.5625 Reading. parent:kataster/1623 <> caves-1623/203/203
+[<Cave: 1623-203>]
+> > > - Begin found for:203, creating new SurvexBlock
+> > > > - MEM:44.56640625 Reading. parent:caves-1623/203/203 <> caves-1623/203/203
+[<Cave: 1623-203>]
+> > > LEGS: 7 (previous: 2157, now:2164)
+> > - Include path found, including - caves-1623/205/205
+> > - Match in DB (i) for cave 1623-205.
+[<Cave: 1623-205>]
+> > > - MEM:44.58203125 Reading. parent:kataster/1623 <> caves-1623/205/205
+[<Cave: 1623-205>]
+> > > - Begin found for:205, creating new SurvexBlock
+> > > > - MEM:44.59765625 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+[<Cave: 1623-205>]
+[<Cave: 1623-205>]
+> > > - Begin found for:1, creating new SurvexBlock
+> > > > - MEM:44.60546875 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+[<Cave: 1623-205>]
+> > > LEGS: 13 (previous: 2164, now:2177)
+> > - Include path found, including - caves-1623/206/206
+> > - Match in DB (i) for cave 1623-206.
+[<Cave: 1623-206>]
+> > > - MEM:44.62109375 Reading. parent:kataster/1623 <> caves-1623/206/206
+[<Cave: 1623-206>]
+> > > - Begin found for:206, creating new SurvexBlock
+> > > > - MEM:44.62890625 Reading. parent:caves-1623/206/206 <> caves-1623/206/206
+[<Cave: 1623-206>]
+> > > LEGS: 4 (previous: 2177, now:2181)
+> > - Include path found, including - caves-1623/207/207
+> > - Match in DB (i) for cave 1623-207.
+[<Cave: 1623-207>]
+> > > - MEM:44.640625 Reading. parent:kataster/1623 <> caves-1623/207/207
+[<Cave: 1623-207>]
+> > > - Begin found for:207, creating new SurvexBlock
+> > > > - MEM:44.64453125 Reading. parent:caves-1623/207/207 <> caves-1623/207/207
+[<Cave: 1623-207>]
+> > > LEGS: 3 (previous: 2181, now:2184)
+> > - Include path found, including - caves-1623/208/208
+> > - Match in DB (i) for cave 1623-208.
+[<Cave: 1623-208>]
+> > > - MEM:44.66015625 Reading. parent:kataster/1623 <> caves-1623/208/208
+[<Cave: 1623-208>]
+> > > - Begin found for:208, creating new SurvexBlock
+> > > > - MEM:44.6796875 Reading. parent:caves-1623/208/208 <> caves-1623/208/208
+[<Cave: 1623-208>]
+> > > LEGS: 3 (previous: 2184, now:2187)
+> > - Include path found, including - caves-1623/209/209
+> > - Match in DB (i) for cave 1623-209.
+[<Cave: 1623-209>]
+> > > - MEM:44.6875 Reading. parent:kataster/1623 <> caves-1623/209/209
+[<Cave: 1623-209>]
+> > > - Begin found for:209, creating new SurvexBlock
+> > > > - MEM:44.69921875 Reading. parent:caves-1623/209/209 <> caves-1623/209/209
+[<Cave: 1623-209>]
+> > > LEGS: 1 (previous: 2187, now:2188)
+> > - Include path found, including - caves-1623/215/215
+> > - Match in DB (i) for cave 1623-215.
+[<Cave: 1623-215>]
+> > > - MEM:44.71875 Reading. parent:kataster/1623 <> caves-1623/215/215
+[<Cave: 1623-215>]
+> > > - Begin found for:215, creating new SurvexBlock
+> > > > - MEM:44.7265625 Reading. parent:caves-1623/215/215 <> caves-1623/215/215
+[<Cave: 1623-215>]
+> > > LEGS: 5 (previous: 2188, now:2193)
+> > - Include path found, including - caves-1623/220/220
+> > - Match in DB (i) for cave 1623-220.
+[<Cave: 1623-220>]
+> > > - MEM:44.73828125 Reading. parent:kataster/1623 <> caves-1623/220/220
+[<Cave: 1623-220>]
+> > > - Begin found for:220, creating new SurvexBlock
+> > > > - MEM:44.75 Reading. parent:caves-1623/220/220 <> caves-1623/220/220
+[<Cave: 1623-220>]
+> > > LEGS: 1 (previous: 2193, now:2194)
+> > - Include path found, including - caves-1623/225/225
+> > - Match in DB (i) for cave 1623-225.
+[<Cave: 1623-225>]
+> > > - MEM:44.76171875 Reading. parent:kataster/1623 <> caves-1623/225/225
+[<Cave: 1623-225>]
+> > > - Begin found for:225, creating new SurvexBlock
+> > > > - MEM:44.7734375 Reading. parent:caves-1623/225/225 <> caves-1623/225/225
+[<Cave: 1623-225>]
+> > > LEGS: 1 (previous: 2194, now:2195)
+> > - Include path found, including - caves-1623/228/228
+> > - Match in DB (i) for cave 1623-228.
+[<Cave: 1623-228>]
+> > > - MEM:44.7890625 Reading. parent:kataster/1623 <> caves-1623/228/228
+[<Cave: 1623-228>]
+> > > - Begin found for:228, creating new SurvexBlock
+> > > > - MEM:44.80078125 Reading. parent:caves-1623/228/228 <> caves-1623/228/228
+[<Cave: 1623-228>]
+> > > LEGS: 5 (previous: 2195, now:2200)
+> > - Include path found, including - caves-1623/229/229
+> > - Match in DB (i) for cave 1623-229.
+[<Cave: 1623-229>]
+> > > - MEM:44.8203125 Reading. parent:kataster/1623 <> caves-1623/229/229
+[<Cave: 1623-229>]
+> > > - Begin found for:229, creating new SurvexBlock
+> > > > - MEM:44.83203125 Reading. parent:caves-1623/229/229 <> caves-1623/229/229
+[<Cave: 1623-229>]
+> > > LEGS: 7 (previous: 2200, now:2207)
+> > - Include path found, including - caves-1623/231/231
+> > - Match in DB (i) for cave 1623-231.
+[<Cave: 1623-231>]
+> > > - MEM:44.84375 Reading. parent:kataster/1623 <> caves-1623/231/231
+[<Cave: 1623-231>]
+> > > - Begin found for:231, creating new SurvexBlock
+> > > > - MEM:44.875 Reading. parent:caves-1623/231/231 <> caves-1623/231/231
+[<Cave: 1623-231>]
+> > > - Include path found, including - caves-1623/231/traun
+> > > - Match in DB (i) for cave 1623-231.
+[<Cave: 1623-231>]
+> > > > - MEM:44.89453125 Reading. parent:caves-1623/231/231 <> caves-1623/231/traun
+[<Cave: 1623-231>]
+[<Cave: 1623-231>]
+> > > > - Begin found for:traun, creating new SurvexBlock
+> > > > > - MEM:44.94140625 Reading. parent:caves-1623/231/traun <> caves-1623/231/traun
+[<Cave: 1623-231>]
+> > > > LEGS: 21 (previous: 2207, now:2228)
+> > > LEGS: 21 (previous: 2207, now:2228)
+> > - Include path found, including - caves-1623/232/232
+> > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > - MEM:44.95703125 Reading. parent:kataster/1623 <> caves-1623/232/232
+[<Cave: 1623-232>]
+> > > - Begin found for:232, creating new SurvexBlock
+> > > > - MEM:44.9609375 Reading. parent:caves-1623/232/232 <> caves-1623/232/232
+[<Cave: 1623-232>]
+> > > - Include path found, including - caves-1623/232/griess
+> > > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > > - MEM:44.97265625 Reading. parent:caves-1623/232/232 <> caves-1623/232/griess
+[<Cave: 1623-232>]
+[<Cave: 1623-232>]
+> > > > - Begin found for:griess, creating new SurvexBlock
+> > > > > - MEM:44.98046875 Reading. parent:caves-1623/232/griess <> caves-1623/232/griess
+[<Cave: 1623-232>]
+> > > > LEGS: 48 (previous: 2228, now:2276)
+> > > - Include path found, including - caves-1623/232/pille
+> > > - Match in DB (i) for cave 1623-232.
+[<Cave: 1623-232>]
+> > > > - MEM:45.03125 Reading. parent:caves-1623/232/232 <> caves-1623/232/pille
+[<Cave: 1623-232>]
+[<Cave: 1623-232>]
+> > > > - Begin found for:pille, creating new SurvexBlock
+> > > > > - MEM:45.03125 Reading. parent:caves-1623/232/pille <> caves-1623/232/pille
+[<Cave: 1623-232>]
+> > > > LEGS: 35 (previous: 2276, now:2311)
+> > > LEGS: 83 (previous: 2228, now:2311)
+> > - Include path found, including - caves-1623/233/233
+> > - Match in DB (i) for cave 1623-233.
+[<Cave: 1623-233>]
+> > > - MEM:45.0390625 Reading. parent:kataster/1623 <> caves-1623/233/233
+[<Cave: 1623-233>]
+> > > - Begin found for:233, creating new SurvexBlock
+> > > > - MEM:45.0390625 Reading. parent:caves-1623/233/233 <> caves-1623/233/233
+[<Cave: 1623-233>]
+> > > LEGS: 11 (previous: 2311, now:2322)
+> > - Include path found, including - caves-1623/234/234
+> > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > - MEM:45.046875 Reading. parent:kataster/1623 <> caves-1623/234/234
+[<Cave: 1623-234>]
+> > > - Begin found for:234, creating new SurvexBlock
+> > > > - MEM:45.05078125 Reading. parent:caves-1623/234/234 <> caves-1623/234/234
+[<Cave: 1623-234>]
+> > > - Include path found, including - caves-1623/234/lefthand
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.0703125 Reading. parent:caves-1623/234/234 <> caves-1623/234/lefthand
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:lefthand, creating new SurvexBlock
+> > > > > - MEM:45.08984375 Reading. parent:caves-1623/234/lefthand <> caves-1623/234/lefthand
+[<Cave: 1623-234>]
+> > > > LEGS: 17 (previous: 2322, now:2339)
+> > > - Include path found, including - caves-1623/234/trunk
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.16796875 Reading. parent:caves-1623/234/234 <> caves-1623/234/trunk
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:trunk, creating new SurvexBlock
+> > > > > - MEM:45.1796875 Reading. parent:caves-1623/234/trunk <> caves-1623/234/trunk
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2339, now:2349)
+> > > - Include path found, including - caves-1623/234/flatulence
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.19140625 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:flatulence, creating new SurvexBlock
+> > > > > - MEM:45.22265625 Reading. parent:caves-1623/234/flatulence <> caves-1623/234/flatulence
+[<Cave: 1623-234>]
+> > > > LEGS: 58 (previous: 2349, now:2407)
+> > > - Include path found, including - caves-1623/234/flatulence2
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.234375 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence2
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:flatulence2, creating new SurvexBlock
+> > > > > - MEM:45.25390625 Reading. parent:caves-1623/234/flatulence2 <> caves-1623/234/flatulence2
+[<Cave: 1623-234>]
+> > > > LEGS: 27 (previous: 2407, now:2434)
+> > > - Include path found, including - caves-1623/234/sourtaste
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.2734375 Reading. parent:caves-1623/234/234 <> caves-1623/234/sourtaste
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:sourtaste, creating new SurvexBlock
+> > > > > - MEM:45.27734375 Reading. parent:caves-1623/234/sourtaste <> caves-1623/234/sourtaste
+[<Cave: 1623-234>]
+> > > > LEGS: 8 (previous: 2434, now:2442)
+> > > - Include path found, including - caves-1623/234/pie
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.296875 Reading. parent:caves-1623/234/234 <> caves-1623/234/pie
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:pie, creating new SurvexBlock
+> > > > > - MEM:45.30859375 Reading. parent:caves-1623/234/pie <> caves-1623/234/pie
+[<Cave: 1623-234>]
+> > > > LEGS: 13 (previous: 2442, now:2455)
+> > > - Include path found, including - caves-1623/234/underhand
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.32421875 Reading. parent:caves-1623/234/234 <> caves-1623/234/underhand
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:underhand, creating new SurvexBlock
+> > > > > - MEM:45.33984375 Reading. parent:caves-1623/234/underhand <> caves-1623/234/underhand
+[<Cave: 1623-234>]
+> > > > LEGS: 7 (previous: 2455, now:2462)
+> > > - Include path found, including - caves-1623/234/flashgun
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.359375 Reading. parent:caves-1623/234/234 <> caves-1623/234/flashgun
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:flashgun, creating new SurvexBlock
+> > > > > - MEM:45.375 Reading. parent:caves-1623/234/flashgun <> caves-1623/234/flashgun
+[<Cave: 1623-234>]
+> > > > LEGS: 4 (previous: 2462, now:2466)
+> > > - Include path found, including - caves-1623/234/piersquared
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.390625 Reading. parent:caves-1623/234/234 <> caves-1623/234/piersquared
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:piersquared, creating new SurvexBlock
+> > > > > - MEM:45.41015625 Reading. parent:caves-1623/234/piersquared <> caves-1623/234/piersquared
+[<Cave: 1623-234>]
+> > > > LEGS: 37 (previous: 2466, now:2503)
+> > > - Include path found, including - caves-1623/234/weeweeland
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.4296875 Reading. parent:caves-1623/234/234 <> caves-1623/234/weeweeland
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:weeweeland, creating new SurvexBlock
+> > > > > - MEM:45.44140625 Reading. parent:caves-1623/234/weeweeland <> caves-1623/234/weeweeland
+[<Cave: 1623-234>]
+> > > > LEGS: 12 (previous: 2503, now:2515)
+> > > - Include path found, including - caves-1623/234/wowoland
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.4609375 Reading. parent:caves-1623/234/234 <> caves-1623/234/wowoland
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:wowoland, creating new SurvexBlock
+> > > > > - MEM:45.4765625 Reading. parent:caves-1623/234/wowoland <> caves-1623/234/wowoland
+[<Cave: 1623-234>]
+> > > > LEGS: 7 (previous: 2515, now:2522)
+> > > - Include path found, including - caves-1623/234/monster
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.48828125 Reading. parent:caves-1623/234/234 <> caves-1623/234/monster
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:monster, creating new SurvexBlock
+> > > > > - MEM:45.49609375 Reading. parent:caves-1623/234/monster <> caves-1623/234/monster
+[<Cave: 1623-234>]
+> > > > LEGS: 5 (previous: 2522, now:2527)
+> > > - Include path found, including - caves-1623/234/spitswallow
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.5234375 Reading. parent:caves-1623/234/234 <> caves-1623/234/spitswallow
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:spitswallow, creating new SurvexBlock
+> > > > > - MEM:45.53515625 Reading. parent:caves-1623/234/spitswallow <> caves-1623/234/spitswallow
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2527, now:2537)
+> > > - Include path found, including - caves-1623/234/monstermunch
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.546875 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:monstermunch, creating new SurvexBlock
+> > > > > - MEM:45.5546875 Reading. parent:caves-1623/234/monstermunch <> caves-1623/234/monstermunch
+[<Cave: 1623-234>]
+> > > > LEGS: 11 (previous: 2537, now:2548)
+> > > - Include path found, including - caves-1623/234/qm05-05c
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.609375 Reading. parent:caves-1623/234/234 <> caves-1623/234/qm05-05c
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:qm05-05c, creating new SurvexBlock
+> > > > > - MEM:45.609375 Reading. parent:caves-1623/234/qm05-05c <> caves-1623/234/qm05-05c
+[<Cave: 1623-234>]
+> > > > LEGS: 2 (previous: 2548, now:2550)
+> > > - Include path found, including - caves-1623/234/rubella
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.625 Reading. parent:caves-1623/234/234 <> caves-1623/234/rubella
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:rubella, creating new SurvexBlock
+> > > > > - MEM:45.6328125 Reading. parent:caves-1623/234/rubella <> caves-1623/234/rubella
+[<Cave: 1623-234>]
+> > > > LEGS: 10 (previous: 2550, now:2560)
+> > > - Include path found, including - caves-1623/234/monstermunch2
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.70703125 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch2
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:monstermunch2, creating new SurvexBlock
+> > > > > - MEM:45.71484375 Reading. parent:caves-1623/234/monstermunch2 <> caves-1623/234/monstermunch2
+[<Cave: 1623-234>]
+> > > > LEGS: 5 (previous: 2560, now:2565)
+> > > - Include path found, including - caves-1623/234/limopit
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.7265625 Reading. parent:caves-1623/234/234 <> caves-1623/234/limopit
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:limopit, creating new SurvexBlock
+> > > > > - MEM:45.75390625 Reading. parent:caves-1623/234/limopit <> caves-1623/234/limopit
+[<Cave: 1623-234>]
+> > > > LEGS: 6 (previous: 2565, now:2571)
+> > > - Include path found, including - caves-1623/234/passage
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.765625 Reading. parent:caves-1623/234/234 <> caves-1623/234/passage
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:passage, creating new SurvexBlock
+> > > > > - MEM:45.78125 Reading. parent:caves-1623/234/passage <> caves-1623/234/passage
+[<Cave: 1623-234>]
+> > > > LEGS: 13 (previous: 2571, now:2584)
+> > > - Include path found, including - caves-1623/234/lastchancesaloon
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.80078125 Reading. parent:caves-1623/234/234 <> caves-1623/234/lastchancesaloon
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:lastchancesaloon, creating new SurvexBlock
+> > > > > - MEM:45.8125 Reading. parent:caves-1623/234/lastchancesaloon <> caves-1623/234/lastchancesaloon
+[<Cave: 1623-234>]
+> > > > LEGS: 29 (previous: 2584, now:2613)
+> > > - Include path found, including - caves-1623/234/slapperpinkpot
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:45.84375 Reading. parent:caves-1623/234/234 <> caves-1623/234/slapperpinkpot
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:slapperpinkpot, creating new SurvexBlock
+> > > > > - MEM:45.8515625 Reading. parent:caves-1623/234/slapperpinkpot <> caves-1623/234/slapperpinkpot
+[<Cave: 1623-234>]
+> > > > LEGS: 11 (previous: 2613, now:2624)
+> > > - Include path found, including - caves-1623/234/youshouldhaveneverletmebegin
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:46.015625 Reading. parent:caves-1623/234/234 <> caves-1623/234/youshouldhaveneverletmebegin
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:youshouldhaveneverletmebegin, creating new SurvexBlock
+> > > > > - MEM:46.0234375 Reading. parent:caves-1623/234/youshouldhaveneverletmebegin <> caves-1623/234/youshouldhaveneverletmebegin
+[<Cave: 1623-234>]
+> > > > LEGS: 14 (previous: 2624, now:2638)
+> > > - Include path found, including - caves-1623/234/mercurialsuppository
+> > > - Match in DB (i) for cave 1623-234.
+[<Cave: 1623-234>]
+> > > > - MEM:46.046875 Reading. parent:caves-1623/234/234 <> caves-1623/234/mercurialsuppository
+[<Cave: 1623-234>]
+[<Cave: 1623-234>]
+> > > > - Begin found for:mercurialsuppository, creating new SurvexBlock
+> > > > > - MEM:46.05078125 Reading. parent:caves-1623/234/mercurialsuppository <> caves-1623/234/mercurialsuppository
+[<Cave: 1623-234>]
+> > > > LEGS: 9 (previous: 2638, now:2647)
+> > > LEGS: 325 (previous: 2322, now:2647)
+> > - Include path found, including - caves-1623/238/238
+> > - Match in DB (i) for cave 1623-238.
+[<Cave: 1623-238>]
+> > > - MEM:46.0703125 Reading. parent:kataster/1623 <> caves-1623/238/238
+[<Cave: 1623-238>]
+> > > - Begin found for:238, creating new SurvexBlock
+> > > > - MEM:46.07421875 Reading. parent:caves-1623/238/238 <> caves-1623/238/238
+[<Cave: 1623-238>]
+> > > LEGS: 11 (previous: 2647, now:2658)
+> > - Include path found, including - caves-1623/239/239
+> > - Match in DB (i) for cave 1623-239.
+[<Cave: 1623-239>]
+> > > - MEM:46.08203125 Reading. parent:kataster/1623 <> caves-1623/239/239
+[<Cave: 1623-239>]
+> > > - Begin found for:239, creating new SurvexBlock
+> > > > - MEM:46.125 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+[<Cave: 1623-239>]
+[<Cave: 1623-239>]
+> > > - Begin found for:rocknroll1, creating new SurvexBlock
+> > > > - MEM:46.140625 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+[<Cave: 1623-239>]
+> > > LEGS: 32 (previous: 2658, now:2690)
+> > - Include path found, including - caves-1623/240/240
+> > - Match in DB (i) for cave 1623-240.
+[<Cave: 1623-240>]
+> > > - MEM:46.234375 Reading. parent:kataster/1623 <> caves-1623/240/240
+[<Cave: 1623-240>]
+> > > - Begin found for:240, creating new SurvexBlock
+> > > > - MEM:46.23828125 Reading. parent:caves-1623/240/240 <> caves-1623/240/240
+[<Cave: 1623-240>]
+> > > LEGS: 7 (previous: 2690, now:2697)
+> > - Include path found, including - caves-1623/241/241
+> > - Match in DB (i) for cave 1623-241.
+[<Cave: 1623-241>]
+> > > - MEM:46.23828125 Reading. parent:kataster/1623 <> caves-1623/241/241
+[<Cave: 1623-241>]
+> > > - Begin found for:241, creating new SurvexBlock
+> > > > - MEM:46.24609375 Reading. parent:caves-1623/241/241 <> caves-1623/241/241
+[<Cave: 1623-241>]
+> > > LEGS: 8 (previous: 2697, now:2705)
+> > - Include path found, including - caves-1623/242/242
+> > - Match in DB (i) for cave 1623-242.
+[<Cave: 1623-242>]
+> > > - MEM:46.26171875 Reading. parent:kataster/1623 <> caves-1623/242/242
+[<Cave: 1623-242>]
+> > > - Begin found for:242, creating new SurvexBlock
+> > > > - MEM:46.27734375 Reading. parent:caves-1623/242/242 <> caves-1623/242/242
+[<Cave: 1623-242>]
+> > > LEGS: 6 (previous: 2705, now:2711)
+> > - Include path found, including - caves-1623/243/243
+> > - Match in DB (i) for cave 1623-243.
+[<Cave: 1623-243>]
+> > > - MEM:46.296875 Reading. parent:kataster/1623 <> caves-1623/243/243
+[<Cave: 1623-243>]
+> > > - Begin found for:243, creating new SurvexBlock
+> > > > - MEM:46.30859375 Reading. parent:caves-1623/243/243 <> caves-1623/243/243
+[<Cave: 1623-243>]
+> > > LEGS: 14 (previous: 2711, now:2725)
+> > - Include path found, including - caves-1623/244/244
+> > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > - MEM:46.34375 Reading. parent:kataster/1623 <> caves-1623/244/244
+[<Cave: 1623-244>]
+> > > - Begin found for:244, creating new SurvexBlock
+> > > > - MEM:46.359375 Reading. parent:caves-1623/244/244 <> caves-1623/244/244
+[<Cave: 1623-244>]
+> > > - Include path found, including - caves-1623/244/skinny
+> > > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > > - MEM:46.375 Reading. parent:caves-1623/244/244 <> caves-1623/244/skinny
+[<Cave: 1623-244>]
+[<Cave: 1623-244>]
+> > > > - Begin found for:skinny, creating new SurvexBlock
+> > > > > - MEM:46.40234375 Reading. parent:caves-1623/244/skinny <> caves-1623/244/skinny
+[<Cave: 1623-244>]
+> > > > LEGS: 25 (previous: 2725, now:2750)
+> > > - Include path found, including - caves-1623/244/gravity
+> > > - Match in DB (i) for cave 1623-244.
+[<Cave: 1623-244>]
+> > > > - MEM:46.44140625 Reading. parent:caves-1623/244/244 <> caves-1623/244/gravity
+[<Cave: 1623-244>]
+[<Cave: 1623-244>]
+> > > > - Begin found for:gravity, creating new SurvexBlock
+> > > > > - MEM:46.4453125 Reading. parent:caves-1623/244/gravity <> caves-1623/244/gravity
+[<Cave: 1623-244>]
+> > > > LEGS: 7 (previous: 2750, now:2757)
+> > > LEGS: 32 (previous: 2725, now:2757)
+> > - Include path found, including - caves-1623/245/245
+> > - Match in DB (i) for cave 1623-245.
+[<Cave: 1623-245>]
+> > > - MEM:46.46484375 Reading. parent:kataster/1623 <> caves-1623/245/245
+[<Cave: 1623-245>]
+> > > - Begin found for:245, creating new SurvexBlock
+> > > > - MEM:46.47265625 Reading. parent:caves-1623/245/245 <> caves-1623/245/245
+[<Cave: 1623-245>]
+> > > LEGS: 24 (previous: 2757, now:2781)
+> > - Include path found, including - caves-1623/246/246
+> > - Match in DB (i) for cave 1623-246.
+[<Cave: 1623-246>]
+> > > - MEM:46.484375 Reading. parent:kataster/1623 <> caves-1623/246/246
+[<Cave: 1623-246>]
+> > > - Begin found for:246, creating new SurvexBlock
+> > > > - MEM:46.49609375 Reading. parent:caves-1623/246/246 <> caves-1623/246/246
+[<Cave: 1623-246>]
+> > > LEGS: 7 (previous: 2781, now:2788)
+> > - Include path found, including - caves-1623/247/247
+> > - Match in DB (i) for cave 1623-247.
+[<Cave: 1623-247>]
+> > > - MEM:46.50390625 Reading. parent:kataster/1623 <> caves-1623/247/247
+[<Cave: 1623-247>]
+> > > - Begin found for:247, creating new SurvexBlock
+> > > > - MEM:46.515625 Reading. parent:caves-1623/247/247 <> caves-1623/247/247
+[<Cave: 1623-247>]
+> > > LEGS: 2 (previous: 2788, now:2790)
+> > - Include path found, including - caves-1623/248/248
+> > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > - MEM:46.515625 Reading. parent:kataster/1623 <> caves-1623/248/248
+[<Cave: 1623-248>]
+> > > - Begin found for:248, creating new SurvexBlock
+> > > > - MEM:46.52734375 Reading. parent:caves-1623/248/248 <> caves-1623/248/248
+[<Cave: 1623-248>]
+> > > - Include path found, including - caves-1623/248/248-1
+> > > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > > - MEM:46.5390625 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-1
+[<Cave: 1623-248>]
+[<Cave: 1623-248>]
+> > > > - Begin found for:248-1, creating new SurvexBlock
+> > > > > - MEM:46.546875 Reading. parent:caves-1623/248/248-1 <> caves-1623/248/248-1
+[<Cave: 1623-248>]
+> > > > LEGS: 7 (previous: 2790, now:2797)
+> > > - Include path found, including - caves-1623/248/248-2
+> > > - Match in DB (i) for cave 1623-248.
+[<Cave: 1623-248>]
+> > > > - MEM:46.55859375 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-2
+[<Cave: 1623-248>]
+[<Cave: 1623-248>]
+> > > > - Begin found for:248-2, creating new SurvexBlock
+> > > > > - MEM:46.56640625 Reading. parent:caves-1623/248/248-2 <> caves-1623/248/248-2
+[<Cave: 1623-248>]
+> > > > LEGS: 6 (previous: 2797, now:2803)
+> > > LEGS: 13 (previous: 2790, now:2803)
+> > - Include path found, including - caves-1623/249/249
+> > - Match in DB (i) for cave 1623-249.
+[<Cave: 1623-249>]
+> > > - MEM:46.5859375 Reading. parent:kataster/1623 <> caves-1623/249/249
+[<Cave: 1623-249>]
+> > > - Begin found for:249, creating new SurvexBlock
+> > > > - MEM:46.58984375 Reading. parent:caves-1623/249/249 <> caves-1623/249/249
+[<Cave: 1623-249>]
+> > > LEGS: 7 (previous: 2803, now:2810)
+> > - Include path found, including - caves-1623/250/250
+> > - Match in DB (i) for cave 1623-250.
+[<Cave: 1623-250>]
+> > > - MEM:46.609375 Reading. parent:kataster/1623 <> caves-1623/250/250
+[<Cave: 1623-250>]
+> > > - Begin found for:250, creating new SurvexBlock
+> > > > - MEM:46.61328125 Reading. parent:caves-1623/250/250 <> caves-1623/250/250
+[<Cave: 1623-250>]
+> > > LEGS: 1 (previous: 2810, now:2811)
+> > - Include path found, including - caves-1623/251/251
+> > - Match in DB (i) for cave 1623-251.
+[<Cave: 1623-251>]
+> > > - MEM:46.640625 Reading. parent:kataster/1623 <> caves-1623/251/251
+[<Cave: 1623-251>]
+> > > - Begin found for:251, creating new SurvexBlock
+> > > > - MEM:46.66015625 Reading. parent:caves-1623/251/251 <> caves-1623/251/251
+[<Cave: 1623-251>]
+> > > LEGS: 22 (previous: 2811, now:2833)
+> > - Include path found, including - caves-1623/252/252
+> > - Match in DB (i) for cave 1623-252.
+[<Cave: 1623-252>]
+> > > - MEM:46.67578125 Reading. parent:kataster/1623 <> caves-1623/252/252
+[<Cave: 1623-252>]
+> > > - Begin found for:252, creating new SurvexBlock
+> > > > - MEM:46.6875 Reading. parent:caves-1623/252/252 <> caves-1623/252/252
+[<Cave: 1623-252>]
+> > > LEGS: 30 (previous: 2833, now:2863)
+> > - Include path found, including - caves-1623/254/254
+> > - Match in DB (i) for cave 1623-254.
+[<Cave: 1623-254>]
+> > > - MEM:46.703125 Reading. parent:kataster/1623 <> caves-1623/254/254
+[<Cave: 1623-254>]
+> > > - Begin found for:254, creating new SurvexBlock
+> > > > - MEM:46.7265625 Reading. parent:caves-1623/254/254 <> caves-1623/254/254
+[<Cave: 1623-254>]
+> > > LEGS: 19 (previous: 2863, now:2882)
+> > - Include path found, including - caves-1623/261/261
+> > - Match in DB (i) for cave 1623-261.
+[<Cave: 1623-261>]
+> > > - MEM:46.7421875 Reading. parent:kataster/1623 <> caves-1623/261/261
+[<Cave: 1623-261>]
+> > > - Begin found for:261, creating new SurvexBlock
+> > > > - MEM:46.75390625 Reading. parent:caves-1623/261/261 <> caves-1623/261/261
+[<Cave: 1623-261>]
+> > > LEGS: 6 (previous: 2882, now:2888)
+> > - Include path found, including - caves-1623/262/262
+> > - Match in DB (i) for cave 1623-262.
+[<Cave: 1623-262>]
+> > > - MEM:46.76171875 Reading. parent:kataster/1623 <> caves-1623/262/262
+[<Cave: 1623-262>]
+> > > - Begin found for:262, creating new SurvexBlock
+> > > > - MEM:46.77734375 Reading. parent:caves-1623/262/262 <> caves-1623/262/262
+[<Cave: 1623-262>]
+> > > LEGS: 7 (previous: 2888, now:2895)
+> > - Include path found, including - caves-1623/263/263
+> > - Match in DB (i) for cave 1623-263.
+[<Cave: 1623-263>]
+> > > - MEM:46.80078125 Reading. parent:kataster/1623 <> caves-1623/263/263
+[<Cave: 1623-263>]
+> > > - Begin found for:263, creating new SurvexBlock
+> > > > - MEM:46.8125 Reading. parent:caves-1623/263/263 <> caves-1623/263/263
+[<Cave: 1623-263>]
+> > > LEGS: 2 (previous: 2895, now:2897)
+> > - Include path found, including - caves-1623/267/267
+> > - Match in DB (i) for cave 1623-267.
+[<Cave: 1623-267>]
+> > > - MEM:46.87109375 Reading. parent:kataster/1623 <> caves-1623/267/267
+[<Cave: 1623-267>]
+> > > - Begin found for:267, creating new SurvexBlock
+> > > > - MEM:46.88671875 Reading. parent:caves-1623/267/267 <> caves-1623/267/267
+[<Cave: 1623-267>]
+> > > LEGS: 34 (previous: 2897, now:2931)
+> > - Include path found, including - caves-1623/271/271
+> > - Match in DB (i) for cave 1623-271.
+[<Cave: 1623-271>]
+> > > - MEM:46.88671875 Reading. parent:kataster/1623 <> caves-1623/271/271
+[<Cave: 1623-271>]
+> > > - Begin found for:271, creating new SurvexBlock
+> > > > - MEM:46.89453125 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+[<Cave: 1623-271>]
+[<Cave: 1623-271>]
+> > > - Begin found for:1, creating new SurvexBlock
+> > > > - MEM:46.8984375 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+[<Cave: 1623-271>]
+> > > LEGS: 11 (previous: 2931, now:2942)
+> > - Include path found, including - caves-1623/273/273
+> > - Match in DB (i) for cave 1623-273.
+[<Cave: 1623-273>]
+> > > - MEM:46.91796875 Reading. parent:kataster/1623 <> caves-1623/273/273
+[<Cave: 1623-273>]
+> > > - Begin found for:273, creating new SurvexBlock
+> > > > - MEM:46.91796875 Reading. parent:caves-1623/273/273 <> caves-1623/273/273
+[<Cave: 1623-273>]
+> > > LEGS: 5 (previous: 2942, now:2947)
+> > - Include path found, including - caves-1623/B4/B4
+> > - NO Match in DB (i) for a cave for caves-1623/B4/B4
+> > > - MEM:47.046875 Reading. parent:kataster/1623 <> caves-1623/B4/B4
+> > > - No match (b) for caves-1623/B4/b4
+> > > - Begin found for:b4, creating new SurvexBlock
+> > > > - MEM:47.08984375 Reading. parent:caves-1623/B4/B4 <> caves-1623/B4/B4
+> > > ! Wallet *REF 2006#36 - NOT found in survexscansfolders caves-1623/B4/B4
+> > > LEGS: 2 (previous: 2947, now:2949)
+> > - Include path found, including - caves-1623/96wk11/96wk11
+> > - NO Match in DB (i) for a cave for caves-1623/96wk11/96wk11
+> > > - MEM:47.09375 Reading. parent:kataster/1623 <> caves-1623/96wk11/96wk11
+> > > - No match (b) for caves-1623/96wk11/wk11
+> > > - Begin found for:wk11, creating new SurvexBlock
+> > > > - MEM:47.1015625 Reading. parent:caves-1623/96wk11/96wk11 <> caves-1623/96wk11/96wk11
+> > > LEGS: 7 (previous: 2949, now:2956)
+> > - Include path found, including - caves-1623/99ob02/99ob02
+> > - NO Match in DB (i) for a cave for caves-1623/99ob02/99ob02
+> > > - MEM:47.11328125 Reading. parent:kataster/1623 <> caves-1623/99ob02/99ob02
+> > > - No match (b) for caves-1623/99ob02/99ob02
+> > > - Begin found for:99ob02, creating new SurvexBlock
+> > > > - MEM:47.12109375 Reading. parent:caves-1623/99ob02/99ob02 <> caves-1623/99ob02/99ob02
+> > > LEGS: 3 (previous: 2956, now:2959)
+> > - Include path found, including - caves-1623/2001-02/2001-02
+> > - NO Match in DB (i) for a cave for caves-1623/2001-02/2001-02
+> > > - MEM:47.12109375 Reading. parent:kataster/1623 <> caves-1623/2001-02/2001-02
+> > > - No match (b) for caves-1623/2001-02/2001-02
+> > > - Begin found for:2001-02, creating new SurvexBlock
+> > > > - MEM:47.12890625 Reading. parent:caves-1623/2001-02/2001-02 <> caves-1623/2001-02/2001-02
+> > > LEGS: 6 (previous: 2959, now:2965)
+> > - Include path found, including - caves-1623/2001-03/2001-03
+> > - NO Match in DB (i) for a cave for caves-1623/2001-03/2001-03
+> > > - MEM:47.23828125 Reading. parent:kataster/1623 <> caves-1623/2001-03/2001-03
+> > > - No match (b) for caves-1623/2001-03/2001-03
+> > > - Begin found for:2001-03, creating new SurvexBlock
+> > > > - MEM:47.23828125 Reading. parent:caves-1623/2001-03/2001-03 <> caves-1623/2001-03/2001-03
+> > > LEGS: 7 (previous: 2965, now:2972)
+> > - Include path found, including - caves-1623/2002-ad-03/2002-ad-03
+> > - Match in DB (i) for cave 1623-2002-ad-03.
+[]
+> > > - MEM:47.24609375 Reading. parent:kataster/1623 <> caves-1623/2002-ad-03/2002-ad-03
+[]
+> > > - Begin found for:2002-ad-03, creating new SurvexBlock
+> > > > - MEM:47.26171875 Reading. parent:caves-1623/2002-ad-03/2002-ad-03 <> caves-1623/2002-ad-03/2002-ad-03
+[]
+> > > LEGS: 16 (previous: 2972, now:2988)
+> > - Include path found, including - caves-1623/2002-ad-04/2002-ad-04
+> > - Match in DB (i) for cave 1623-2002-ad-04.
+[]
+> > > - MEM:47.2890625 Reading. parent:kataster/1623 <> caves-1623/2002-ad-04/2002-ad-04
+[]
+> > > - Begin found for:2002-ad-04, creating new SurvexBlock
+> > > > - MEM:47.29296875 Reading. parent:caves-1623/2002-ad-04/2002-ad-04 <> caves-1623/2002-ad-04/2002-ad-04
+[]
+> > > LEGS: 15 (previous: 2988, now:3003)
+> > - Include path found, including - caves-1623/2002-w-02/2002-w-02
+> > - Match in DB (i) for cave 1623-2002-w-02.
+[]
+> > > - MEM:47.3046875 Reading. parent:kataster/1623 <> caves-1623/2002-w-02/2002-w-02
+[]
+> > > - Begin found for:2002-w-02, creating new SurvexBlock
+> > > > - MEM:47.30859375 Reading. parent:caves-1623/2002-w-02/2002-w-02 <> caves-1623/2002-w-02/2002-w-02
+[]
+> > > LEGS: 6 (previous: 3003, now:3009)
+> > - Include path found, including - caves-1623/2002-05/2002-05
+> > - NO Match in DB (i) for a cave for caves-1623/2002-05/2002-05
+> > > - MEM:47.32421875 Reading. parent:kataster/1623 <> caves-1623/2002-05/2002-05
+> > > - No match (b) for caves-1623/2002-05/2002-05
+> > > - Begin found for:2002-05, creating new SurvexBlock
+> > > > - MEM:47.32421875 Reading. parent:caves-1623/2002-05/2002-05 <> caves-1623/2002-05/2002-05
+> > > LEGS: 4 (previous: 3009, now:3013)
+> > - Include path found, including - caves-1623/2002-06/2002-06
+> > - NO Match in DB (i) for a cave for caves-1623/2002-06/2002-06
+> > > - MEM:47.34375 Reading. parent:kataster/1623 <> caves-1623/2002-06/2002-06
+> > > - No match (b) for caves-1623/2002-06/2002-06
+> > > - Begin found for:2002-06, creating new SurvexBlock
+> > > > - MEM:47.34765625 Reading. parent:caves-1623/2002-06/2002-06 <> caves-1623/2002-06/2002-06
+> > > LEGS: 2 (previous: 3013, now:3015)
+> > - Include path found, including - caves-1623/2002-07/2002-07
+> > - NO Match in DB (i) for a cave for caves-1623/2002-07/2002-07
+> > > - MEM:47.36328125 Reading. parent:kataster/1623 <> caves-1623/2002-07/2002-07
+> > > - No match (b) for caves-1623/2002-07/2002-07
+> > > - Begin found for:2002-07, creating new SurvexBlock
+> > > > - MEM:47.37109375 Reading. parent:caves-1623/2002-07/2002-07 <> caves-1623/2002-07/2002-07
+> > > LEGS: 3 (previous: 3015, now:3018)
+> > - Include path found, including - caves-1623/2002-08/2002-08
+> > - NO Match in DB (i) for a cave for caves-1623/2002-08/2002-08
+> > > - MEM:47.3828125 Reading. parent:kataster/1623 <> caves-1623/2002-08/2002-08
+> > > - No match (b) for caves-1623/2002-08/2002-08
+> > > - Begin found for:2002-08, creating new SurvexBlock
+> > > > - MEM:47.390625 Reading. parent:caves-1623/2002-08/2002-08 <> caves-1623/2002-08/2002-08
+> > > LEGS: 7 (previous: 3018, now:3025)
+> > - Include path found, including - caves-1623/quarriesd/quarriesd
+> > - NO Match in DB (i) for a cave for caves-1623/quarriesd/quarriesd
+> > > - MEM:47.40625 Reading. parent:kataster/1623 <> caves-1623/quarriesd/quarriesd
+> > > - No match (b) for caves-1623/quarriesd/quarriesd
+> > > - Begin found for:quarriesd, creating new SurvexBlock
+> > > > - MEM:47.40625 Reading. parent:caves-1623/quarriesd/quarriesd <> caves-1623/quarriesd/quarriesd
+> > > LEGS: 3 (previous: 3025, now:3028)
+> > - Include path found, including - caves-1623/2003-01/2003-01
+> > - NO Match in DB (i) for a cave for caves-1623/2003-01/2003-01
+> > > - MEM:47.421875 Reading. parent:kataster/1623 <> caves-1623/2003-01/2003-01
+> > > - No match (b) for caves-1623/2003-01/2003-01
+> > > - Begin found for:2003-01, creating new SurvexBlock
+> > > > - MEM:47.42578125 Reading. parent:caves-1623/2003-01/2003-01 <> caves-1623/2003-01/2003-01
+> > > LEGS: 3 (previous: 3028, now:3031)
+> > - Include path found, including - caves-1623/2004-01/2004-01
+> > - NO Match in DB (i) for a cave for caves-1623/2004-01/2004-01
+> > > - MEM:47.44140625 Reading. parent:kataster/1623 <> caves-1623/2004-01/2004-01
+> > > - No match (b) for caves-1623/2004-01/2004-01
+> > > - Begin found for:2004-01, creating new SurvexBlock
+> > > > - MEM:47.4453125 Reading. parent:caves-1623/2004-01/2004-01 <> caves-1623/2004-01/2004-01
+> > > LEGS: 3 (previous: 3031, now:3034)
+> > - Include path found, including - caves-1623/2004-03/2004-03
+> > - NO Match in DB (i) for a cave for caves-1623/2004-03/2004-03
+> > > - MEM:47.453125 Reading. parent:kataster/1623 <> caves-1623/2004-03/2004-03
+> > > - No match (b) for caves-1623/2004-03/2004-03
+> > > - Begin found for:2004-03, creating new SurvexBlock
+> > > > - MEM:47.453125 Reading. parent:caves-1623/2004-03/2004-03 <> caves-1623/2004-03/2004-03
+> > > LEGS: 6 (previous: 3034, now:3040)
+> > - Include path found, including - caves-1623/2004-08/2004-08
+> > - NO Match in DB (i) for a cave for caves-1623/2004-08/2004-08
+> > > - MEM:47.46484375 Reading. parent:kataster/1623 <> caves-1623/2004-08/2004-08
+> > > - No match (b) for caves-1623/2004-08/2004-08
+> > > - Begin found for:2004-08, creating new SurvexBlock
+> > > > - MEM:47.47265625 Reading. parent:caves-1623/2004-08/2004-08 <> caves-1623/2004-08/2004-08
+> > > LEGS: 14 (previous: 3040, now:3054)
+> > - Include path found, including - caves-1623/2004-10/2004-10
+> > - NO Match in DB (i) for a cave for caves-1623/2004-10/2004-10
+> > > - MEM:47.48046875 Reading. parent:kataster/1623 <> caves-1623/2004-10/2004-10
+> > > - No match (b) for caves-1623/2004-10/2004-10
+> > > - Begin found for:2004-10, creating new SurvexBlock
+> > > > - MEM:47.5078125 Reading. parent:caves-1623/2004-10/2004-10 <> caves-1623/2004-10/2004-10
+> > > LEGS: 8 (previous: 3054, now:3062)
+> > - Include path found, including - caves-1623/2004-14/2004-14
+> > - NO Match in DB (i) for a cave for caves-1623/2004-14/2004-14
+> > > - MEM:47.5859375 Reading. parent:kataster/1623 <> caves-1623/2004-14/2004-14
+> > > - No match (b) for caves-1623/2004-14/2004-14
+> > > - Begin found for:2004-14, creating new SurvexBlock
+> > > > - MEM:47.5859375 Reading. parent:caves-1623/2004-14/2004-14 <> caves-1623/2004-14/2004-14
+> > > LEGS: 2 (previous: 3062, now:3064)
+> > - Include path found, including - caves-1623/2004-15/2004-15
+> > - NO Match in DB (i) for a cave for caves-1623/2004-15/2004-15
+> > > - MEM:47.60546875 Reading. parent:kataster/1623 <> caves-1623/2004-15/2004-15
+> > > - No match (b) for caves-1623/2004-15/2004-15
+> > > - Begin found for:2004-15, creating new SurvexBlock
+> > > > - MEM:47.62109375 Reading. parent:caves-1623/2004-15/2004-15 <> caves-1623/2004-15/2004-15
+> > > LEGS: 7 (previous: 3064, now:3071)
+> > - Include path found, including - caves-1623/2004-18/2004-18
+> > - NO Match in DB (i) for a cave for caves-1623/2004-18/2004-18
+> > > - MEM:47.62890625 Reading. parent:kataster/1623 <> caves-1623/2004-18/2004-18
+> > > - No match (b) for caves-1623/2004-18/2004-18
+> > > - Begin found for:2004-18, creating new SurvexBlock
+> > > > - MEM:47.6328125 Reading. parent:caves-1623/2004-18/2004-18 <> caves-1623/2004-18/2004-18
+> > > LEGS: 20 (previous: 3071, now:3091)
+> > - Include path found, including - caves-1623/2004-20/2004-20
+> > - NO Match in DB (i) for a cave for caves-1623/2004-20/2004-20
+> > > - MEM:47.73046875 Reading. parent:kataster/1623 <> caves-1623/2004-20/2004-20
+> > > - No match (b) for caves-1623/2004-20/2004-20
+> > > - Begin found for:2004-20, creating new SurvexBlock
+> > > > - MEM:47.734375 Reading. parent:caves-1623/2004-20/2004-20 <> caves-1623/2004-20/2004-20
+> > > LEGS: 6 (previous: 3091, now:3097)
+> > - Include path found, including - caves-1623/2005-01/2005-01
+> > - NO Match in DB (i) for a cave for caves-1623/2005-01/2005-01
+> > > - MEM:47.73828125 Reading. parent:kataster/1623 <> caves-1623/2005-01/2005-01
+> > > - No match (b) for caves-1623/2005-01/2005-01
+> > > - Begin found for:2005-01, creating new SurvexBlock
+> > > > - MEM:47.73828125 Reading. parent:caves-1623/2005-01/2005-01 <> caves-1623/2005-01/2005-01
+> > > LEGS: 10 (previous: 3097, now:3107)
+> > - Include path found, including - caves-1623/2005-07/2005-07
+> > - NO Match in DB (i) for a cave for caves-1623/2005-07/2005-07
+> > > - MEM:47.73828125 Reading. parent:kataster/1623 <> caves-1623/2005-07/2005-07
+> > > - No match (b) for caves-1623/2005-07/2005-07
+> > > - Begin found for:2005-07, creating new SurvexBlock
+> > > > - MEM:47.73828125 Reading. parent:caves-1623/2005-07/2005-07 <> caves-1623/2005-07/2005-07
+> > > LEGS: 4 (previous: 3107, now:3111)
+> > - Include path found, including - caves-1623/2005-92/2005-92
+> > - NO Match in DB (i) for a cave for caves-1623/2005-92/2005-92
+> > > - MEM:47.73828125 Reading. parent:kataster/1623 <> caves-1623/2005-92/2005-92
+> > > - No match (b) for caves-1623/2005-92/2005-92
+> > > - Begin found for:2005-92, creating new SurvexBlock
+> > > > - MEM:47.7421875 Reading. parent:caves-1623/2005-92/2005-92 <> caves-1623/2005-92/2005-92
+> > > LEGS: 4 (previous: 3111, now:3115)
+> > - Include path found, including - caves-1623/2005-93/2005-93
+> > - NO Match in DB (i) for a cave for caves-1623/2005-93/2005-93
+> > > - MEM:47.7421875 Reading. parent:kataster/1623 <> caves-1623/2005-93/2005-93
+> > > - No match (b) for caves-1623/2005-93/2005-93
+> > > - Begin found for:2005-93, creating new SurvexBlock
+> > > > - MEM:47.7421875 Reading. parent:caves-1623/2005-93/2005-93 <> caves-1623/2005-93/2005-93
+> > > LEGS: 2 (previous: 3115, now:3117)
+> > - Include path found, including - caves-1623/2005-94/2005-94
+> > - NO Match in DB (i) for a cave for caves-1623/2005-94/2005-94
+> > > - MEM:47.74609375 Reading. parent:kataster/1623 <> caves-1623/2005-94/2005-94
+> > > - No match (b) for caves-1623/2005-94/2005-94
+> > > - Begin found for:2005-94, creating new SurvexBlock
+> > > > - MEM:47.74609375 Reading. parent:caves-1623/2005-94/2005-94 <> caves-1623/2005-94/2005-94
+> > > LEGS: 2 (previous: 3117, now:3119)
+> > - Include path found, including - caves-1623/2005-95/2005-95
+> > - NO Match in DB (i) for a cave for caves-1623/2005-95/2005-95
+> > > - MEM:47.74609375 Reading. parent:kataster/1623 <> caves-1623/2005-95/2005-95
+> > > - No match (b) for caves-1623/2005-95/2005-95
+> > > - Begin found for:2005-95, creating new SurvexBlock
+> > > > - MEM:47.74609375 Reading. parent:caves-1623/2005-95/2005-95 <> caves-1623/2005-95/2005-95
+> > > LEGS: 4 (previous: 3119, now:3123)
+> > - Include path found, including - caves-1623/2005-96/2005-96
+> > - NO Match in DB (i) for a cave for caves-1623/2005-96/2005-96
+> > > - MEM:47.74609375 Reading. parent:kataster/1623 <> caves-1623/2005-96/2005-96
+> > > - No match (b) for caves-1623/2005-96/2005-96
+> > > - Begin found for:2005-96, creating new SurvexBlock
+> > > > - MEM:47.74609375 Reading. parent:caves-1623/2005-96/2005-96 <> caves-1623/2005-96/2005-96
+> > > LEGS: 2 (previous: 3123, now:3125)
+> > - Include path found, including - caves-1623/2005-99/2005-99
+> > - NO Match in DB (i) for a cave for caves-1623/2005-99/2005-99
+> > > - MEM:47.74609375 Reading. parent:kataster/1623 <> caves-1623/2005-99/2005-99
+> > > - No match (b) for caves-1623/2005-99/2005-99
+> > > - Begin found for:2005-99, creating new SurvexBlock
+> > > > - MEM:47.74609375 Reading. parent:caves-1623/2005-99/2005-99 <> caves-1623/2005-99/2005-99
+> > > LEGS: 5 (previous: 3125, now:3130)
+> > - Include path found, including - caves-1623/2006-08/2006-08
+> > - NO Match in DB (i) for a cave for caves-1623/2006-08/2006-08
+> > > - MEM:47.75 Reading. parent:kataster/1623 <> caves-1623/2006-08/2006-08
+> > > - No match (b) for caves-1623/2006-08/2006-08
+> > > - Begin found for:2006-08, creating new SurvexBlock
+> > > > - MEM:47.75 Reading. parent:caves-1623/2006-08/2006-08 <> caves-1623/2006-08/2006-08
+> > > LEGS: 2 (previous: 3130, now:3132)
+> > - Include path found, including - caves-1623/2006-09/2006-09
+> > - NO Match in DB (i) for a cave for caves-1623/2006-09/2006-09
+> > > - MEM:47.75390625 Reading. parent:kataster/1623 <> caves-1623/2006-09/2006-09
+> > > - No match (b) for caves-1623/2006-09/2006-09
+> > > - Begin found for:2006-09, creating new SurvexBlock
+> > > > - MEM:47.75390625 Reading. parent:caves-1623/2006-09/2006-09 <> caves-1623/2006-09/2006-09
+> > > LEGS: 2 (previous: 3132, now:3134)
+> > - Include path found, including - caves-1623/2006-70/2006-70
+> > - NO Match in DB (i) for a cave for caves-1623/2006-70/2006-70
+> > > - MEM:47.7578125 Reading. parent:kataster/1623 <> caves-1623/2006-70/2006-70
+> > > - No match (b) for caves-1623/2006-70/2006-70
+> > > - Begin found for:2006-70, creating new SurvexBlock
+> > > > - MEM:47.7578125 Reading. parent:caves-1623/2006-70/2006-70 <> caves-1623/2006-70/2006-70
+> > > LEGS: 2 (previous: 3134, now:3136)
+> > - Include path found, including - caves-1623/2006-71/2006-71
+> > - NO Match in DB (i) for a cave for caves-1623/2006-71/2006-71
+> > > - MEM:47.7578125 Reading. parent:kataster/1623 <> caves-1623/2006-71/2006-71
+> > > - No match (b) for caves-1623/2006-71/2006-71
+> > > - Begin found for:2006-71, creating new SurvexBlock
+> > > > - MEM:47.7578125 Reading. parent:caves-1623/2006-71/2006-71 <> caves-1623/2006-71/2006-71
+> > > LEGS: 1 (previous: 3136, now:3137)
+> > - Include path found, including - caves-1623/2006-72/2006-72
+> > - NO Match in DB (i) for a cave for caves-1623/2006-72/2006-72
+> > > - MEM:47.78515625 Reading. parent:kataster/1623 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/2006-72
+> > > - Begin found for:2006-72, creating new SurvexBlock
+> > > > - MEM:47.78515625 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/pt1
+> > > - Begin found for:pt1, creating new SurvexBlock
+> > > > - MEM:47.78515625 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > LEGS: 2 (previous: 3137, now:3139)
+> > - Include path found, including - caves-1623/2006-73/2006-73
+> > - NO Match in DB (i) for a cave for caves-1623/2006-73/2006-73
+> > > - MEM:47.7890625 Reading. parent:kataster/1623 <> caves-1623/2006-73/2006-73
+> > > - No match (b) for caves-1623/2006-73/2006-73
+> > > - Begin found for:2006-73, creating new SurvexBlock
+> > > > - MEM:47.7890625 Reading. parent:caves-1623/2006-73/2006-73 <> caves-1623/2006-73/2006-73
+> > > LEGS: 10 (previous: 3139, now:3149)
+> > - Include path found, including - caves-1623/2007-04/2007-04
+> > - NO Match in DB (i) for a cave for caves-1623/2007-04/2007-04
+> > > - MEM:47.7890625 Reading. parent:kataster/1623 <> caves-1623/2007-04/2007-04
+> > > - No match (b) for caves-1623/2007-04/2007-04
+> > > - Begin found for:2007-04, creating new SurvexBlock
+> > > > - MEM:47.7890625 Reading. parent:caves-1623/2007-04/2007-04 <> caves-1623/2007-04/2007-04
+> > > LEGS: 13 (previous: 3149, now:3162)
+> > - Include path found, including - caves-1623/2007-05/2007-05
+> > - NO Match in DB (i) for a cave for caves-1623/2007-05/2007-05
+> > > - MEM:47.80859375 Reading. parent:kataster/1623 <> caves-1623/2007-05/2007-05
+> > > - No match (b) for caves-1623/2007-05/2007-05
+> > > - Begin found for:2007-05, creating new SurvexBlock
+> > > > - MEM:47.80859375 Reading. parent:caves-1623/2007-05/2007-05 <> caves-1623/2007-05/2007-05
+> > > LEGS: 3 (previous: 3162, now:3165)
+> > - Include path found, including - caves-1623/2007-06/2007-06
+> > - NO Match in DB (i) for a cave for caves-1623/2007-06/2007-06
+> > > - MEM:47.80859375 Reading. parent:kataster/1623 <> caves-1623/2007-06/2007-06
+> > > - No match (b) for caves-1623/2007-06/2007-06
+> > > - Begin found for:2007-06, creating new SurvexBlock
+> > > > - MEM:47.80859375 Reading. parent:caves-1623/2007-06/2007-06 <> caves-1623/2007-06/2007-06
+> > > LEGS: 1 (previous: 3165, now:3166)
+> > - Include path found, including - caves-1623/2007-07/2007-07
+> > - NO Match in DB (i) for a cave for caves-1623/2007-07/2007-07
+> > > - MEM:47.80859375 Reading. parent:kataster/1623 <> caves-1623/2007-07/2007-07
+> > > - No match (b) for caves-1623/2007-07/2007-07
+> > > - Begin found for:2007-07, creating new SurvexBlock
+> > > > - MEM:47.80859375 Reading. parent:caves-1623/2007-07/2007-07 <> caves-1623/2007-07/2007-07
+> > > LEGS: 2 (previous: 3166, now:3168)
+> > - Include path found, including - caves-1623/2007-12/2007-12
+> > - NO Match in DB (i) for a cave for caves-1623/2007-12/2007-12
+> > > - MEM:47.80859375 Reading. parent:kataster/1623 <> caves-1623/2007-12/2007-12
+> > > - No match (b) for caves-1623/2007-12/2007-12
+> > > - Begin found for:2007-12, creating new SurvexBlock
+> > > > - MEM:47.80859375 Reading. parent:caves-1623/2007-12/2007-12 <> caves-1623/2007-12/2007-12
+> > > LEGS: 3 (previous: 3168, now:3171)
+> > - Include path found, including - caves-1623/2007-70/2007-70
+> > - NO Match in DB (i) for a cave for caves-1623/2007-70/2007-70
+> > > - MEM:47.8125 Reading. parent:kataster/1623 <> caves-1623/2007-70/2007-70
+> > > - No match (b) for caves-1623/2007-70/2007-70
+> > > - Begin found for:2007-70, creating new SurvexBlock
+> > > > - MEM:47.8125 Reading. parent:caves-1623/2007-70/2007-70 <> caves-1623/2007-70/2007-70
+> > > LEGS: 2 (previous: 3171, now:3173)
+> > - Include path found, including - caves-1623/2007-72/2007-72
+> > - NO Match in DB (i) for a cave for caves-1623/2007-72/2007-72
+> > > - MEM:47.81640625 Reading. parent:kataster/1623 <> caves-1623/2007-72/2007-72
+> > > - No match (b) for caves-1623/2007-72/2007-72
+> > > - Begin found for:2007-72, creating new SurvexBlock
+> > > > - MEM:47.81640625 Reading. parent:caves-1623/2007-72/2007-72 <> caves-1623/2007-72/2007-72
+> > > LEGS: 7 (previous: 3173, now:3180)
+> > - Include path found, including - caves-1623/2009-01/2009-01
+> > - NO Match in DB (i) for a cave for caves-1623/2009-01/2009-01
+> > > - MEM:47.8203125 Reading. parent:kataster/1623 <> caves-1623/2009-01/2009-01
+> > > - No match (b) for caves-1623/2009-01/2009-01
+> > > - Begin found for:2009-01, creating new SurvexBlock
+> > > > - MEM:47.8203125 Reading. parent:caves-1623/2009-01/2009-01 <> caves-1623/2009-01/2009-01
+> > > LEGS: 3 (previous: 3180, now:3183)
+> > - Include path found, including - caves-1623/2009-02/2009-02
+> > - NO Match in DB (i) for a cave for caves-1623/2009-02/2009-02
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2009-02/2009-02
+> > > - No match (b) for caves-1623/2009-02/2009-02
+> > > - Begin found for:2009-02, creating new SurvexBlock
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2009-02/2009-02 <> caves-1623/2009-02/2009-02
+> > > LEGS: 17 (previous: 3183, now:3200)
+> > - Include path found, including - caves-1623/2009-03/2009-03
+> > - NO Match in DB (i) for a cave for caves-1623/2009-03/2009-03
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2009-03/2009-03
+> > > - No match (b) for caves-1623/2009-03/2009-03
+> > > - Begin found for:2009-03, creating new SurvexBlock
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2009-03/2009-03 <> caves-1623/2009-03/2009-03
+> > > LEGS: 7 (previous: 3200, now:3207)
+> > - Include path found, including - caves-1623/2010-06/2010-06
+> > - NO Match in DB (i) for a cave for caves-1623/2010-06/2010-06
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2010-06/2010-06
+> > > - No match (b) for caves-1623/2010-06/2010-06
+> > > - Begin found for:2010-06, creating new SurvexBlock
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2010-06/2010-06 <> caves-1623/2010-06/2010-06
+> > > LEGS: 6 (previous: 3207, now:3213)
+> > - Include path found, including - caves-1623/2010-07/2010-07
+> > - NO Match in DB (i) for a cave for caves-1623/2010-07/2010-07
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2010-07/2010-07
+> > > - No match (b) for caves-1623/2010-07/2010-07
+> > > - Begin found for:2010-07, creating new SurvexBlock
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2010-07/2010-07 <> caves-1623/2010-07/2010-07
+> > > LEGS: 5 (previous: 3213, now:3218)
+> > - Include path found, including - caves-1623/2011-01/2011-01
+> > - NO Match in DB (i) for a cave for caves-1623/2011-01/2011-01
+> > > - MEM:47.85546875 Reading. parent:kataster/1623 <> caves-1623/2011-01/2011-01
+> > > - No match (b) for caves-1623/2011-01/2011-01
+> > > - Begin found for:2011-01, creating new SurvexBlock
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/2011-01
+> > > - Include path found, including - caves-1623/2011-01/bullet1
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet1
+> > > > - MEM:47.85546875 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet1
+> > > > - No match (b) for caves-1623/2011-01/bullet1
+> > > > - Begin found for:bullet1, creating new SurvexBlock
+> > > > > - MEM:47.85546875 Reading. parent:caves-1623/2011-01/bullet1 <> caves-1623/2011-01/bullet1
+> > > > LEGS: 15 (previous: 3218, now:3233)
+> > > - Include path found, including - caves-1623/2011-01/bullet2
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet2
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet2
+> > > > - No match (b) for caves-1623/2011-01/bullet2
+> > > > - Begin found for:bullet2, creating new SurvexBlock
+> > > > > - MEM:47.86328125 Reading. parent:caves-1623/2011-01/bullet2 <> caves-1623/2011-01/bullet2
+> > > > LEGS: 12 (previous: 3233, now:3245)
+> > > - Include path found, including - caves-1623/2011-01/bullet3
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet3
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet3
+> > > > - No match (b) for caves-1623/2011-01/bullet3
+> > > > - Begin found for:bullet3, creating new SurvexBlock
+> > > > > - MEM:47.86328125 Reading. parent:caves-1623/2011-01/bullet3 <> caves-1623/2011-01/bullet3
+> > > > LEGS: 4 (previous: 3245, now:3249)
+> > > LEGS: 31 (previous: 3218, now:3249)
+> > - Include path found, including - caves-1623/2012-hw-01/2012-hw-01
+> > - Match in DB (i) for cave 1623-2012-hw-01.
+[]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-hw-01/2012-hw-01
+[]
+> > > - Begin found for:2012-hw-01, creating new SurvexBlock
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-hw-01/2012-hw-01 <> caves-1623/2012-hw-01/2012-hw-01
+[]
+> > > LEGS: 4 (previous: 3249, now:3253)
+> > - Include path found, including - caves-1623/2012-ns-01/2012-ns-01
+> > - Match in DB (i) for cave 1623-2012-ns-01.
+[]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-01/2012-ns-01
+[]
+> > > - Begin found for:2012-ns-01, creating new SurvexBlock
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/2012-ns-01
+[]
+> > > - Include path found, including - caves-1623/2012-ns-01/AntsInYourPants
+> > > - Match in DB (i) for cave 1623-2012-ns-01.
+[]
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/AntsInYourPants
+[]
+[]
+> > > > - Begin found for:antsinyourpants, creating new SurvexBlock
+> > > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-01/AntsInYourPants <> caves-1623/2012-ns-01/AntsInYourPants
+[]
+> > > > LEGS: 14 (previous: 3253, now:3267)
+> > > LEGS: 15 (previous: 3253, now:3268)
+> > - Include path found, including - caves-1623/2012-ns-02/2012-ns-02
+> > - Match in DB (i) for cave 1623-2012-ns-02.
+[]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-02/2012-ns-02
+[]
+> > > - Begin found for:2012-ns-02, creating new SurvexBlock
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-02/2012-ns-02 <> caves-1623/2012-ns-02/2012-ns-02
+[]
+> > > LEGS: 1 (previous: 3268, now:3269)
+> > - Include path found, including - caves-1623/2012-ns-03/2012-ns-03
+> > - Match in DB (i) for cave 1623-2012-ns-03.
+[<Cave: 1623-2012-ns-03>]
+> > > - MEM:47.86328125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-03/2012-ns-03
+[<Cave: 1623-2012-ns-03>]
+> > > - Begin found for:2012-ns-03, creating new SurvexBlock
+> > > > - MEM:47.86328125 Reading. parent:caves-1623/2012-ns-03/2012-ns-03 <> caves-1623/2012-ns-03/2012-ns-03
+[<Cave: 1623-2012-ns-03>]
+> > > LEGS: 5 (previous: 3269, now:3274)
+> > - Include path found, including - caves-1623/2010-03/2010-03
+> > - NO Match in DB (i) for a cave for caves-1623/2010-03/2010-03
+> > > - MEM:47.87109375 Reading. parent:kataster/1623 <> caves-1623/2010-03/2010-03
+> > > - No match (b) for caves-1623/2010-03/2010-03
+> > > - Begin found for:2010-03, creating new SurvexBlock
+> > > > - MEM:47.87109375 Reading. parent:caves-1623/2010-03/2010-03 <> caves-1623/2010-03/2010-03
+> > > LEGS: 5 (previous: 3274, now:3279)
+> > - Include path found, including - caves-1623/2010-04/2010-04
+> > - NO Match in DB (i) for a cave for caves-1623/2010-04/2010-04
+> > > - MEM:47.87109375 Reading. parent:kataster/1623 <> caves-1623/2010-04/2010-04
+> > > - No match (b) for caves-1623/2010-04/2010-04
+> > > - Begin found for:2010-04, creating new SurvexBlock
+> > > > - MEM:47.87109375 Reading. parent:caves-1623/2010-04/2010-04 <> caves-1623/2010-04/2010-04
+> > > LEGS: 2 (previous: 3279, now:3281)
+> > - Include path found, including - caves-1623/2012-ns-05/2012-ns-05
+> > - Match in DB (i) for cave 1623-2012-ns-05.
+[]
+> > > - MEM:47.87109375 Reading. parent:kataster/1623 <> caves-1623/2012-ns-05/2012-ns-05
+[]
+> > > - Begin found for:2012-ns-05, creating new SurvexBlock
+> > > > - MEM:47.87109375 Reading. parent:caves-1623/2012-ns-05/2012-ns-05 <> caves-1623/2012-ns-05/2012-ns-05
+[]
+> > > LEGS: 1 (previous: 3281, now:3282)
+> > - Include path found, including - caves-1623/2012-ns-06/2012-ns-06
+> > - Match in DB (i) for cave 1623-2012-ns-06.
+[]
+> > > - MEM:47.87109375 Reading. parent:kataster/1623 <> caves-1623/2012-ns-06/2012-ns-06
+[]
+> > > - Begin found for:2012-ns-06, creating new SurvexBlock
+> > > > - MEM:47.87109375 Reading. parent:caves-1623/2012-ns-06/2012-ns-06 <> caves-1623/2012-ns-06/2012-ns-06
+[]
+> > > LEGS: 1 (previous: 3282, now:3283)
+> > - Include path found, including - caves-1623/2012-ns-07/2012-ns-07
+> > - Match in DB (i) for cave 1623-2012-ns-07.
+[]
+> > > - MEM:47.875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-07/2012-ns-07
+[]
+> > > - Begin found for:2012-ns-07, creating new SurvexBlock
+> > > > - MEM:47.875 Reading. parent:caves-1623/2012-ns-07/2012-ns-07 <> caves-1623/2012-ns-07/2012-ns-07
+[]
+> > > LEGS: 1 (previous: 3283, now:3284)
+> > - Include path found, including - caves-1623/2012-ns-08/2012-ns-08
+> > - Match in DB (i) for cave 1623-2012-ns-08.
+[]
+> > > - MEM:47.875 Reading. parent:kataster/1623 <> caves-1623/2012-ns-08/2012-ns-08
+[]
+> > > - Begin found for:2012-ns-08, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2012-ns-08/2012-ns-08 <> caves-1623/2012-ns-08/2012-ns-08
+[]
+> > > LEGS: 1 (previous: 3284, now:3285)
+> > - Include path found, including - caves-1623/2012-ns-09/2012-ns-09
+> > - Match in DB (i) for cave 1623-2012-ns-09.
+[<Cave: 1623-2012-ns-09>]
+> > > - MEM:47.87890625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-09/2012-ns-09
+[<Cave: 1623-2012-ns-09>]
+> > > - Begin found for:2012-ns-09, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2012-ns-09/2012-ns-09 <> caves-1623/2012-ns-09/2012-ns-09
+[<Cave: 1623-2012-ns-09>]
+> > > LEGS: 4 (previous: 3285, now:3289)
+> > - Include path found, including - caves-1623/2012-ns-10/2012-ns-10
+> > - Match in DB (i) for cave 1623-2012-ns-10.
+[<Cave: 1623-2012-ns-10>]
+> > > - MEM:47.87890625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-10/2012-ns-10
+[<Cave: 1623-2012-ns-10>]
+> > > - Begin found for:2012-ns-10, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2012-ns-10/2012-ns-10 <> caves-1623/2012-ns-10/2012-ns-10
+[<Cave: 1623-2012-ns-10>]
+> > > LEGS: 5 (previous: 3289, now:3294)
+> > - Include path found, including - caves-1623/2012-ns-12/2012-ns-12
+> > - Match in DB (i) for cave 1623-2012-ns-12.
+[]
+> > > - MEM:47.87890625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-12/2012-ns-12
+[]
+> > > - Begin found for:2012-ns-12, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2012-ns-12/2012-ns-12 <> caves-1623/2012-ns-12/2012-ns-12
+[]
+> > > LEGS: 1 (previous: 3294, now:3295)
+> > - Include path found, including - caves-1623/2012-ns-13/2012-ns-13
+> > - Match in DB (i) for cave 1623-2012-ns-13.
+[<Cave: 1623-292>]
+> > > - MEM:47.87890625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-13/2012-ns-13
+[<Cave: 1623-292>]
+> > > - Begin found for:2012-ns-13, creating new SurvexBlock
+> > > > - MEM:47.87890625 Reading. parent:caves-1623/2012-ns-13/2012-ns-13 <> caves-1623/2012-ns-13/2012-ns-13
+[<Cave: 1623-292>]
+> > > LEGS: 5 (previous: 3295, now:3300)
+> > - Include path found, including - caves-1623/2012-ns-14/2012-ns-14
+> > - Match in DB (i) for cave 1623-2012-ns-14.
+[]
+> > > - MEM:47.890625 Reading. parent:kataster/1623 <> caves-1623/2012-ns-14/2012-ns-14
+[]
+> > > - Begin found for:2012-ns-14, creating new SurvexBlock
+> > > > - MEM:47.890625 Reading. parent:caves-1623/2012-ns-14/2012-ns-14 <> caves-1623/2012-ns-14/2012-ns-14
+[]
+> > > LEGS: 1 (previous: 3300, now:3301)
+> > - Include path found, including - caves-1623/2012-ns-15/2012-ns-15
+> > - Match in DB (i) for cave 1623-2012-ns-15.
+[]
+> > > - MEM:47.89453125 Reading. parent:kataster/1623 <> caves-1623/2012-ns-15/2012-ns-15
+[]
+> > > - Begin found for:2012-ns-15, creating new SurvexBlock
+> > > > - MEM:47.8984375 Reading. parent:caves-1623/2012-ns-15/2012-ns-15 <> caves-1623/2012-ns-15/2012-ns-15
+[]
+> > > LEGS: 1 (previous: 3301, now:3302)
+> > - Include path found, including - caves-1623/2012-70/2012-70
+> > - NO Match in DB (i) for a cave for caves-1623/2012-70/2012-70
+> > > - MEM:47.8984375 Reading. parent:kataster/1623 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/2012-70
+> > > - Begin found for:2012-70, creating new SurvexBlock
+> > > > - MEM:47.8984375 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/pt2
+> > > - Begin found for:pt2, creating new SurvexBlock
+> > > > - MEM:47.90234375 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > LEGS: 10 (previous: 3327, now:3337)
+> > - Include path found, including - caves-1623/2012-js-1/2012-js-1
+> > - Match in DB (i) for cave 1623-2012-js-1.
+[]
+> > > - MEM:47.90625 Reading. parent:kataster/1623 <> caves-1623/2012-js-1/2012-js-1
+[]
+> > > - Begin found for:2012-js-1, creating new SurvexBlock
+> > > > - MEM:47.90625 Reading. parent:caves-1623/2012-js-1/2012-js-1 <> caves-1623/2012-js-1/2012-js-1
+[]
+> > > LEGS: 6 (previous: 3337, now:3343)
+> > - Include path found, including - caves-1623/2012-dd-05/2012-dd-05
+> > - Match in DB (i) for cave 1623-2012-dd-05.
+[<Cave: 1623-286>]
+> > > - MEM:47.91015625 Reading. parent:kataster/1623 <> caves-1623/2012-dd-05/2012-dd-05
+[<Cave: 1623-286>]
+> > > - Begin found for:2012-dd-05, creating new SurvexBlock
+> > > > - MEM:47.91015625 Reading. parent:caves-1623/2012-dd-05/2012-dd-05 <> caves-1623/2012-dd-05/2012-dd-05
+[<Cave: 1623-286>]
+> > > LEGS: 19 (previous: 3343, now:3362)
+> > - Include path found, including - caves-1623/2012-dd-08/2012-dd-08
+> > - Match in DB (i) for cave 1623-2012-dd-08.
+[<Cave: 1623-297>]
+> > > - MEM:47.91015625 Reading. parent:kataster/1623 <> caves-1623/2012-dd-08/2012-dd-08
+[<Cave: 1623-297>]
+> > > - Begin found for:2012-dd-08, creating new SurvexBlock
+> > > > - MEM:47.91015625 Reading. parent:caves-1623/2012-dd-08/2012-dd-08 <> caves-1623/2012-dd-08/2012-dd-08
+[<Cave: 1623-297>]
+> > > LEGS: 6 (previous: 3362, now:3368)
+> > - Include path found, including - caves-1623/2014-sd-01/2014-sd-01
+> > - Match in DB (i) for cave 1623-2014-sd-01.
+[]
+> > > - MEM:47.9140625 Reading. parent:kataster/1623 <> caves-1623/2014-sd-01/2014-sd-01
+[]
+> > > - Begin found for:2014-sd-01, creating new SurvexBlock
+> > > > - MEM:47.9140625 Reading. parent:caves-1623/2014-sd-01/2014-sd-01 <> caves-1623/2014-sd-01/2014-sd-01
+[]
+> > > LEGS: 13 (previous: 3368, now:3381)
+> > - Include path found, including - caves-1623/2014-BL888/2014-BL888
+> > - NO Match in DB (i) for a cave for caves-1623/2014-BL888/2014-BL888
+> > > - MEM:47.91796875 Reading. parent:kataster/1623 <> caves-1623/2014-BL888/2014-BL888
+> > > - No match (b) for caves-1623/2014-BL888/2014-BL888
+> > > - Begin found for:2014-bl888, creating new SurvexBlock
+> > > > - MEM:47.91796875 Reading. parent:caves-1623/2014-BL888/2014-BL888 <> caves-1623/2014-BL888/2014-BL888
+> > > LEGS: 10 (previous: 3381, now:3391)
+> > - Include path found, including - caves-1623/2015-mf-06/2015-mf-06
+> > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > - MEM:47.91796875 Reading. parent:kataster/1623 <> caves-1623/2015-mf-06/2015-mf-06
+[<Cave: 1623-288>]
+> > > - Begin found for:2015-mf-06, creating new SurvexBlock
+> > > > - MEM:47.91796875 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/2015-mf-06
+[<Cave: 1623-288>]
+> > > - Include path found, including - caves-1623/2015-mf-06/purplelupine
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > > - MEM:47.9296875 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine
+[<Cave: 1623-288>]
+[<Cave: 1623-288>]
+> > > > - Begin found for:purplelupine, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2015-mf-06/purplelupine <> caves-1623/2015-mf-06/purplelupine
+[<Cave: 1623-288>]
+> > > > LEGS: 10 (previous: 3391, now:3401)
+> > > - Include path found, including - caves-1623/2015-mf-06/purplelupine2
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+[<Cave: 1623-288>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine2
+[<Cave: 1623-288>]
+[<Cave: 1623-288>]
+> > > > - Begin found for:purplelupine2, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2015-mf-06/purplelupine2 <> caves-1623/2015-mf-06/purplelupine2
+[<Cave: 1623-288>]
+> > > > LEGS: 14 (previous: 3401, now:3415)
+> > > LEGS: 24 (previous: 3391, now:3415)
+> > - Include path found, including - caves-1623/2016-jb-01/2016-jb-01
+> > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > - MEM:47.93359375 Reading. parent:kataster/1623 <> caves-1623/2016-jb-01/2016-jb-01
+[<Cave: 1623-289>]
+> > > - Begin found for:2016-jb-01, creating new SurvexBlock
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/2016-jb-01
+[<Cave: 1623-289>]
+> > > - Include path found, including - caves-1623/2016-jb-01/solidrock
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrock
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:solidrock, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/solidrock <> caves-1623/2016-jb-01/solidrock
+[<Cave: 1623-289>]
+> > > > LEGS: 252 (previous: 3415, now:3667)
+> > > - Include path found, including - caves-1623/2016-jb-01/hopeless
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/hopeless
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:hopeless, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/hopeless <> caves-1623/2016-jb-01/hopeless
+[<Cave: 1623-289>]
+> > > > LEGS: 85 (previous: 3667, now:3752)
+> > > - Include path found, including - caves-1623/2016-jb-01/dirtysnow
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/dirtysnow
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:dirtysnow, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/dirtysnow <> caves-1623/2016-jb-01/dirtysnow
+[<Cave: 1623-289>]
+> > > > LEGS: 59 (previous: 3752, now:3811)
+> > > - Include path found, including - caves-1623/2016-jb-01/solidrocks
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrocks
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:solidrocks, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/solidrocks <> caves-1623/2016-jb-01/solidrocks
+[<Cave: 1623-289>]
+> > > > LEGS: 65 (previous: 3811, now:3876)
+> > > - Include path found, including - caves-1623/2016-jb-01/nervousbreakdown
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+[<Cave: 1623-289>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/nervousbreakdown
+[<Cave: 1623-289>]
+[<Cave: 1623-289>]
+> > > > - Begin found for:nervousbreakdown, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2016-jb-01/nervousbreakdown <> caves-1623/2016-jb-01/nervousbreakdown
+[<Cave: 1623-289>]
+> > > > LEGS: 200 (previous: 3876, now:4076)
+> > > LEGS: 661 (previous: 3415, now:4076)
+> > - Include path found, including - caves-1623/2017-pw-01/2017-pw-01
+> > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > - MEM:47.93359375 Reading. parent:kataster/1623 <> caves-1623/2017-pw-01/2017-pw-01
+[<Cave: 1623-277>]
+> > > - Begin found for:2017-pw-01, creating new SurvexBlock
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/2017-pw-01
+[<Cave: 1623-277>]
+> > > - Include path found, including - caves-1623/2017-pw-01/entrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.93359375 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/entrance
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:47.93359375 Reading. parent:caves-1623/2017-pw-01/entrance <> caves-1623/2017-pw-01/entrance
+[<Cave: 1623-277>]
+> > > > LEGS: 11 (previous: 4076, now:4087)
+> > > - Include path found, including - caves-1623/2017-pw-01/gardeningshoots
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.96875 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/gardeningshoots
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:gardeningshoots, creating new SurvexBlock
+> > > > > - MEM:47.97265625 Reading. parent:caves-1623/2017-pw-01/gardeningshoots <> caves-1623/2017-pw-01/gardeningshoots
+[<Cave: 1623-277>]
+> > > > LEGS: 17 (previous: 4087, now:4104)
+> > > - Include path found, including - caves-1623/2017-pw-01/thirdentrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/thirdentrance
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:thirdentrance, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-pw-01/thirdentrance <> caves-1623/2017-pw-01/thirdentrance
+[<Cave: 1623-277>]
+> > > > LEGS: 9 (previous: 4104, now:4113)
+> > > - Include path found, including - caves-1623/2017-pw-01/badforecastthree
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+[<Cave: 1623-277>]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/badforecastthree
+[<Cave: 1623-277>]
+[<Cave: 1623-277>]
+> > > > - Begin found for:badforecastthree, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-pw-01/badforecastthree <> caves-1623/2017-pw-01/badforecastthree
+[<Cave: 1623-277>]
+> > > > LEGS: 10 (previous: 4113, now:4123)
+> > > LEGS: 47 (previous: 4076, now:4123)
+> > - Include path found, including - caves-1623/110/110
+> > - Match in DB (i) for cave 1623-110.
+[<Cave: 1623-110>]
+> > > - MEM:47.984375 Reading. parent:kataster/1623 <> caves-1623/110/110
+[<Cave: 1623-110>]
+> > > - Begin found for:110, creating new SurvexBlock
+> > > > - MEM:47.984375 Reading. parent:caves-1623/110/110 <> caves-1623/110/110
+[<Cave: 1623-110>]
+> > > - Include path found, including - caves-1623/110/notakittensheckschance
+> > > - Match in DB (i) for cave 1623-110.
+[<Cave: 1623-110>]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/110/110 <> caves-1623/110/notakittensheckschance
+[<Cave: 1623-110>]
+[<Cave: 1623-110>]
+> > > > - Begin found for:notakittensheckschance, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/110/notakittensheckschance <> caves-1623/110/notakittensheckschance
+[<Cave: 1623-110>]
+> > > > LEGS: 19 (previous: 4123, now:4142)
+> > > LEGS: 19 (previous: 4123, now:4142)
+> > - Include path found, including - caves-1623/2017-cucc-23/2017-cucc-23
+> > - Match in DB (i) for cave 1623-2017-cucc-23.
+[]
+> > > - MEM:47.984375 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-23/2017-cucc-23
+[]
+> > > - Begin found for:2017_cucc_23, creating new SurvexBlock
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/2017-cucc-23
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-23/keinwassermelone
+> > > - Match in DB (i) for cave 1623-2017-cucc-23.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/keinwassermelone
+[]
+[]
+> > > > - Begin found for:keinwassermelone, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-23/keinwassermelone <> caves-1623/2017-cucc-23/keinwassermelone
+[]
+> > > > LEGS: 18 (previous: 4142, now:4160)
+> > > LEGS: 18 (previous: 4142, now:4160)
+> > - Include path found, including - caves-1623/2017-cucc-24/2017-cucc-24
+> > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > - MEM:47.984375 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-24/2017-cucc-24
+[]
+> > > - Begin found for:2017_cucc_24, creating new SurvexBlock
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/2017-cucc-24
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-24/dentrance
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentrance
+[]
+[]
+> > > > - Begin found for:dentrance, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/dentrance <> caves-1623/2017-cucc-24/dentrance
+[]
+> > > > LEGS: 34 (previous: 4160, now:4194)
+> > > - Include path found, including - caves-1623/2017-cucc-24/dentb
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentb
+[]
+[]
+> > > > - Begin found for:dentb, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/dentb <> caves-1623/2017-cucc-24/dentb
+[]
+> > > > LEGS: 13 (previous: 4194, now:4207)
+> > > - Include path found, including - caves-1623/2017-cucc-24/couldashouldawoulda
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda
+[]
+[]
+> > > > - Begin found for:couldashouldawoulda, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda <> caves-1623/2017-cucc-24/couldashouldawoulda
+[]
+> > > > LEGS: 15 (previous: 4207, now:4222)
+> > > - Include path found, including - caves-1623/2017-cucc-24/gsh4
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/gsh4
+[]
+[]
+> > > > - Begin found for:gsh4, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/gsh4 <> caves-1623/2017-cucc-24/gsh4
+[]
+> > > > LEGS: 9 (previous: 4222, now:4231)
+> > > - Include path found, including - caves-1623/2017-cucc-24/riftpiece
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/riftpiece
+[]
+[]
+> > > > - Begin found for:riftpiece, creating new SurvexBlock
+> > > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/riftpiece <> caves-1623/2017-cucc-24/riftpiece
+[]
+> > > > LEGS: 13 (previous: 4231, now:4244)
+> > > - Include path found, including - caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+[]
+> > > > - MEM:47.984375 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+[]
+[]
+> > > > - Begin found for:couldashouldawoulda_to_bathdodgersbypass, creating new SurvexBlock
+> > > > > - MEM:48.015625 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+[]
+> > > > LEGS: 23 (previous: 4244, now:4267)
+> > > LEGS: 107 (previous: 4160, now:4267)
+> > - Include path found, including - caves-1623/2017-cucc-28/2017-cucc-28
+> > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > - MEM:48.0390625 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-28/2017-cucc-28
+[]
+> > > - Begin found for:2017_cucc_28, creating new SurvexBlock
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/2017-cucc-28
+[]
+> > > - Include path found, including - caves-1623/2017-cucc-28/blower
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blower
+[]
+[]
+> > > > - Begin found for:blower, creating new SurvexBlock
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/blower <> caves-1623/2017-cucc-28/blower
+[]
+> > > > LEGS: 1 (previous: 4267, now:4268)
+> > > - Include path found, including - caves-1623/2017-cucc-28/entranceseries
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/entranceseries
+[]
+[]
+> > > > - Begin found for:entranceseries, creating new SurvexBlock
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/entranceseries <> caves-1623/2017-cucc-28/entranceseries
+[]
+> > > > LEGS: 6 (previous: 4268, now:4274)
+> > > - Include path found, including - caves-1623/2017-cucc-28/windytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/windytube
+[]
+[]
+> > > > - Begin found for:windytube, creating new SurvexBlock
+> > > > > - MEM:48.0390625 Reading. parent:caves-1623/2017-cucc-28/windytube <> caves-1623/2017-cucc-28/windytube
+[]
+> > > > LEGS: 8 (previous: 4274, now:4282)
+> > > - Include path found, including - caves-1623/2017-cucc-28/12monkeys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.04296875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/12monkeys
+[]
+[]
+> > > > - Begin found for:12monkeys, creating new SurvexBlock
+> > > > > - MEM:48.04296875 Reading. parent:caves-1623/2017-cucc-28/12monkeys <> caves-1623/2017-cucc-28/12monkeys
+[]
+> > > > LEGS: 22 (previous: 4282, now:4304)
+> > > - Include path found, including - caves-1623/2017-cucc-28/fishface1-part1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part1
+[]
+[]
+> > > > - Begin found for:fishface1-part1, creating new SurvexBlock
+> > > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/fishface1-part1 <> caves-1623/2017-cucc-28/fishface1-part1
+[]
+> > > > LEGS: 13 (previous: 4304, now:4317)
+> > > - Include path found, including - caves-1623/2017-cucc-28/fishface1-part2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part2
+[]
+[]
+> > > > - Begin found for:fishface1-part2, creating new SurvexBlock
+> > > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/fishface1-part2 <> caves-1623/2017-cucc-28/fishface1-part2
+[]
+> > > > LEGS: 5 (previous: 4317, now:4322)
+> > > - Include path found, including - caves-1623/2017-cucc-28/icytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/icytube
+[]
+[]
+> > > > - Begin found for:icytube, creating new SurvexBlock
+> > > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/icytube <> caves-1623/2017-cucc-28/icytube
+[]
+> > > > LEGS: 11 (previous: 4322, now:4333)
+> > > - Include path found, including - caves-1623/2017-cucc-28/canyon
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/canyon
+[]
+[]
+> > > > - Begin found for:canyon, creating new SurvexBlock
+> > > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/canyon <> caves-1623/2017-cucc-28/canyon
+[]
+> > > > LEGS: 18 (previous: 4333, now:4351)
+> > > - Include path found, including - caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+[]
+[]
+> > > > - Begin found for:blitzen_to_liquidluck, creating new SurvexBlock
+> > > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/blitzen_to_liquidluck <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+[]
+> > > > LEGS: 35 (previous: 4351, now:4386)
+> > > - Include path found, including - caves-1623/2017-cucc-28/freeatticflys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/freeatticflys
+[]
+[]
+> > > > - Begin found for:freeattic_flys, creating new SurvexBlock
+> > > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/freeatticflys <> caves-1623/2017-cucc-28/freeatticflys
+[]
+> > > > LEGS: 22 (previous: 4386, now:4408)
+> > > - Include path found, including - caves-1623/2017-cucc-28/ulysses_to_toto
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.046875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_toto
+[]
+[]
+> > > > - Begin found for:ulysses_to_toto, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_toto <> caves-1623/2017-cucc-28/ulysses_to_toto
+[]
+> > > > LEGS: 27 (previous: 4408, now:4435)
+> > > - Include path found, including - caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+[]
+[]
+> > > > - Begin found for:toto_to_crystalcrumble, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/toto_to_crystalcrumble <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+[]
+> > > > LEGS: 14 (previous: 4435, now:4449)
+> > > - Include path found, including - caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+[]
+[]
+> > > > - Begin found for:ulysses_to_colericchamber, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_colericchamber <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+[]
+> > > > LEGS: 7 (previous: 4449, now:4456)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble
+[]
+[]
+> > > > - Begin found for:rubblerumble, creating new SurvexBlock
+> > > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/rubblerumble <> caves-1623/2017-cucc-28/rubblerumble
+[]
+> > > > LEGS: 12 (previous: 4456, now:4468)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.05078125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble3
+[]
+[]
+> > > > - Begin found for:rubblerumble3, creating new SurvexBlock
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/rubblerumble3 <> caves-1623/2017-cucc-28/rubblerumble3
+[]
+> > > > LEGS: 18 (previous: 4468, now:4486)
+> > > - Include path found, including - caves-1623/2017-cucc-28/rubblerumble2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble2
+[]
+[]
+> > > > - Begin found for:rubblerumble2, creating new SurvexBlock
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/rubblerumble2 <> caves-1623/2017-cucc-28/rubblerumble2
+[]
+> > > > LEGS: 9 (previous: 4486, now:4495)
+> > > - Include path found, including - caves-1623/2017-cucc-28/kublakhan
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/kublakhan
+[]
+[]
+> > > > - Begin found for:kublakhan, creating new SurvexBlock
+> > > > > - MEM:48.07421875 Reading. parent:caves-1623/2017-cucc-28/kublakhan <> caves-1623/2017-cucc-28/kublakhan
+[]
+> > > > LEGS: 36 (previous: 4495, now:4531)
+> > > - Include path found, including - caves-1623/2017-cucc-28/miraclemaze1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.08203125 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze1
+[]
+[]
+> > > > - Begin found for:miraclemaze1, creating new SurvexBlock
+> > > > > - MEM:48.08203125 Reading. parent:caves-1623/2017-cucc-28/miraclemaze1 <> caves-1623/2017-cucc-28/miraclemaze1
+[]
+> > > > LEGS: 49 (previous: 4531, now:4580)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber1
+[]
+[]
+> > > > - Begin found for:coconutchamber1, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/coconutchamber1 <> caves-1623/2017-cucc-28/coconutchamber1
+[]
+> > > > LEGS: 12 (previous: 4580, now:4592)
+> > > - Include path found, including - caves-1623/2017-cucc-28/bigbastard
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/bigbastard
+[]
+[]
+> > > > - Begin found for:bigbastard, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/bigbastard <> caves-1623/2017-cucc-28/bigbastard
+[]
+> > > > LEGS: 2 (previous: 4592, now:4594)
+> > > - Include path found, including - caves-1623/2017-cucc-28/miraclemaze2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze2
+[]
+[]
+> > > > - Begin found for:miraclemaze2, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/miraclemaze2 <> caves-1623/2017-cucc-28/miraclemaze2
+[]
+> > > > LEGS: 10 (previous: 4594, now:4604)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber2
+[]
+[]
+> > > > - Begin found for:coconutchamber2, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/coconutchamber2 <> caves-1623/2017-cucc-28/coconutchamber2
+[]
+> > > > LEGS: 13 (previous: 4604, now:4617)
+> > > - Include path found, including - caves-1623/2017-cucc-28/coconutchamber3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber3
+[]
+[]
+> > > > - Begin found for:coconutchamber3, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/coconutchamber3 <> caves-1623/2017-cucc-28/coconutchamber3
+[]
+> > > > LEGS: 14 (previous: 4617, now:4631)
+> > > - Include path found, including - caves-1623/2017-cucc-28/gardeningschl
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/gardeningschl
+[]
+[]
+> > > > - Begin found for:gardeningschool, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/gardeningschl <> caves-1623/2017-cucc-28/gardeningschl
+[]
+> > > > LEGS: 13 (previous: 4631, now:4644)
+> > > - Include path found, including - caves-1623/2017-cucc-28/pushderig
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+[]
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/pushderig
+[]
+[]
+> > > > - Begin found for:pushderig, creating new SurvexBlock
+> > > > > - MEM:48.0859375 Reading. parent:caves-1623/2017-cucc-28/pushderig <> caves-1623/2017-cucc-28/pushderig
+[]
+> > > > LEGS: 36 (previous: 4644, now:4680)
+> > > LEGS: 413 (previous: 4267, now:4680)
+> > - Include path found, including - caves-1623/2014-ms-14/driveneast
+> > - Match in DB (i) for cave 1623-2014-ms-14.
+[<Cave: 1623-287>]
+> > > - MEM:48.0859375 Reading. parent:kataster/1623 <> caves-1623/2014-ms-14/driveneast
+[<Cave: 1623-287>]
+> > > - Begin found for:driveneast, creating new SurvexBlock
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2014-ms-14/driveneast <> caves-1623/2014-ms-14/driveneast
+[<Cave: 1623-287>]
+> > > LEGS: 14 (previous: 4680, now:4694)
+> > - Include path found, including - caves-1623/2018-aa-01/2018-aa-01
+> > - Match in DB (i) for cave 1623-2018-aa-01.
+[<Cave: 1623-2018-aa-01>]
+> > > - MEM:48.0859375 Reading. parent:kataster/1623 <> caves-1623/2018-aa-01/2018-aa-01
+[<Cave: 1623-2018-aa-01>]
+> > > - Begin found for:2018-aa-01, creating new SurvexBlock
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2018-aa-01/2018-aa-01 <> caves-1623/2018-aa-01/2018-aa-01
+[<Cave: 1623-2018-aa-01>]
+> > > LEGS: 4 (previous: 4694, now:4698)
+> > - Include path found, including - caves-1623/2018-pf-01/2018-pf-01
+> > - Match in DB (i) for cave 1623-2018-pf-01.
+[]
+> > > - MEM:48.0859375 Reading. parent:kataster/1623 <> caves-1623/2018-pf-01/2018-pf-01
+[]
+> > > - Begin found for:2018-pf-01, creating new SurvexBlock
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2018-pf-01/2018-pf-01 <> caves-1623/2018-pf-01/2018-pf-01
+[]
+> > > LEGS: 5 (previous: 4698, now:4703)
+> > - Include path found, including - caves-1623/2018-pf-02/2018-pf-02
+> > - Match in DB (i) for cave 1623-2018-pf-02.
+[]
+> > > - MEM:48.0859375 Reading. parent:kataster/1623 <> caves-1623/2018-pf-02/2018-pf-02
+[]
+> > > - Begin found for:2018-pf-02, creating new SurvexBlock
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2018-pf-02/2018-pf-02 <> caves-1623/2018-pf-02/2018-pf-02
+[]
+> > > LEGS: 4 (previous: 4703, now:4707)
+> > - Include path found, including - caves-1623/82/82
+> > - Match in DB (i) for cave 1623-82.
+[<Cave: 1623-82>]
+> > > - MEM:48.0859375 Reading. parent:kataster/1623 <> caves-1623/82/82
+[<Cave: 1623-82>]
+> > > - Begin found for:82, creating new SurvexBlock
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/82/82 <> caves-1623/82/82
+[<Cave: 1623-82>]
+> > > LEGS: 0 (previous: 4707, now:4707)
+> > - Include path found, including - caves-1623/2007-neu/2007-neu
+> > - NO Match in DB (i) for a cave for caves-1623/2007-neu/2007-neu
+> > > - MEM:48.0859375 Reading. parent:kataster/1623 <> caves-1623/2007-neu/2007-neu
+> > > - No match (b) for caves-1623/2007-neu/2007-neu
+> > > - Begin found for:2007-neu, creating new SurvexBlock
+> > > > - MEM:48.0859375 Reading. parent:caves-1623/2007-neu/2007-neu <> caves-1623/2007-neu/2007-neu
+> > > LEGS: 1 (previous: 4707, now:4708)
+> > - Include path found, including - caves-1623/gassischacht/gassischacht
+> > - NO Match in DB (i) for a cave for caves-1623/gassischacht/gassischacht
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/gassischacht/gassischacht
+> > > - No match (b) for caves-1623/gassischacht/gassischacht
+> > > - Begin found for:gassischacht, creating new SurvexBlock
+> > > > - MEM:48.109375 Reading. parent:caves-1623/gassischacht/gassischacht <> caves-1623/gassischacht/gassischacht
+> > > LEGS: 15 (previous: 4708, now:4723)
+> > - Include path found, including - caves-1623/BS17/BS17
+> > - NO Match in DB (i) for a cave for caves-1623/BS17/BS17
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/BS17/BS17
+> > > - No match (b) for caves-1623/BS17/organ
+> > > - Begin found for:organ, creating new SurvexBlock
+> > > > - MEM:48.109375 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/BS17
+> > > - Include path found, including - caves-1623/BS17/organfake
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organfake
+> > > > - MEM:48.109375 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organfake
+> > > > - No match (b) for caves-1623/BS17/fake
+> > > > - Begin found for:fake, creating new SurvexBlock
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/BS17/organfake <> caves-1623/BS17/organfake
+> > > > LEGS: 0 (previous: 4723, now:4723)
+> > > - Include path found, including - caves-1623/BS17/organ_entrance
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organ_entrance
+> > > > - MEM:48.109375 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organ_entrance
+> > > > - No match (b) for caves-1623/BS17/entrance
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/BS17/organ_entrance <> caves-1623/BS17/organ_entrance
+> > > > LEGS: 34 (previous: 4723, now:4757)
+> > > LEGS: 34 (previous: 4723, now:4757)
+> > - Include path found, including - caves-1623/haldenloch/haldenloch
+> > - NO Match in DB (i) for a cave for caves-1623/haldenloch/haldenloch
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/haldenloch
+> > > - Begin found for:haldenloch, creating new SurvexBlock
+> > > > - MEM:48.109375 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/eingang
+> > > - Begin found for:eingang, creating new SurvexBlock
+> > > > - MEM:48.109375 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > LEGS: 7 (previous: 4757, now:4764)
+> > - Include path found, including - caves-1623/gruenstein/gruenstein
+> > - NO Match in DB (i) for a cave for caves-1623/gruenstein/gruenstein
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/gruenstein/gruenstein
+> > > - No match (b) for caves-1623/gruenstein/gruenstein
+> > > - Begin found for:gruenstein, creating new SurvexBlock
+> > > > - MEM:48.109375 Reading. parent:caves-1623/gruenstein/gruenstein <> caves-1623/gruenstein/gruenstein
+> > > LEGS: 37 (previous: 4764, now:4801)
+> - Include path found, including - caves-1623/caves-smk
+> - NO Match in DB (i) for a cave for caves-1623/caves-smk
+> > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/caves-smk
+> > - Include path found, including - caves-1623/links-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > - Include path found, including - caves-1623/links41-142
+> > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > - Include path found, including - caves-1623/links-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > - Include path found, including - caves-1623/links204-258
+> > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > - Include path found, including - caves-1623/links161-204
+> > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > - Include path found, including - caves-1623/caves-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-south
+> > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/caves-smk-south
+> > > - Include path found, including - caves-1623/links-smk-south
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > > - Include path found, including - caves-1623/links41-142
+> > > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > > - Include path found, including - caves-1623/32/32
+> > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > - MEM:48.109375 Reading. parent:kataster/1623 <> caves-1623/32/32
+[<Cave: 1623-32>]
+> > > > - Begin found for:32, creating new SurvexBlock
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/32/32 <> caves-1623/32/32
+[<Cave: 1623-32>]
+> > > > - Include path found, including - caves-1623/32/main
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/32/32 <> caves-1623/32/main
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:main, creating new SurvexBlock
+> > > > > > - MEM:48.109375 Reading. parent:caves-1623/32/main <> caves-1623/32/main
+[<Cave: 1623-32>]
+> > > > > LEGS: 62 (previous: 4801, now:4863)
+> > > > - Include path found, including - caves-1623/32/links
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/32/32 <> caves-1623/32/links
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:links, creating new SurvexBlock
+> > > > > > - MEM:48.109375 Reading. parent:caves-1623/32/links <> caves-1623/32/links
+[<Cave: 1623-32>]
+> > > > > LEGS: 109 (previous: 4863, now:4972)
+> > > > - Include path found, including - caves-1623/32/verteilerhalle
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/32/32 <> caves-1623/32/verteilerhalle
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:verteilerhalle, creating new SurvexBlock
+> > > > > > - MEM:48.109375 Reading. parent:caves-1623/32/verteilerhalle <> caves-1623/32/verteilerhalle
+[<Cave: 1623-32>]
+> > > > > LEGS: 47 (previous: 4972, now:5019)
+> > > > - Include path found, including - caves-1623/32/forever
+> > > > - Match in DB (i) for cave 1623-32.
+[<Cave: 1623-32>]
+> > > > > - MEM:48.109375 Reading. parent:caves-1623/32/32 <> caves-1623/32/forever
+[<Cave: 1623-32>]
+[<Cave: 1623-32>]
+> > > > > - Begin found for:forever, creating new SurvexBlock
+> > > > > > - MEM:48.109375 Reading. parent:caves-1623/32/forever <> caves-1623/32/forever
+[<Cave: 1623-32>]
+> > > > > LEGS: 64 (previous: 5019, now:5083)
+> > > > LEGS: 282 (previous: 4801, now:5083)
+> > > - Include path found, including - caves-1623/40/40
+> > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > - MEM:48.15234375 Reading. parent:kataster/1623 <> caves-1623/40/40
+[<Cave: 1623-40>]
+> > > > - Begin found for:40, creating new SurvexBlock
+> > > > > - MEM:48.16015625 Reading. parent:caves-1623/40/40 <> caves-1623/40/40
+[<Cave: 1623-40>]
+> > > > - Include path found, including - caves-1623/40/40alt
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.18359375 Reading. parent:caves-1623/40/40 <> caves-1623/40/40alt
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/old/EisSVH
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.203125 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/EisSVH
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:eissvh, creating new SurvexBlock
+> > > > > > > - MEM:48.2265625 Reading. parent:caves-1623/40/old/EisSVH <> caves-1623/40/old/EisSVH
+[<Cave: 1623-40>]
+> > > > > > LEGS: 81 (previous: 5083, now:5164)
+> > > > > - Include path found, including - caves-1623/40/old/spinne
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2265625 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/spinne
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:spinne, creating new SurvexBlock
+> > > > > > > - MEM:48.24609375 Reading. parent:caves-1623/40/old/spinne <> caves-1623/40/old/spinne
+[<Cave: 1623-40>]
+> > > > > > LEGS: 38 (previous: 5164, now:5202)
+> > > > > - Include path found, including - caves-1623/40/old/eismain
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.24609375 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/eismain
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:eishohle, creating new SurvexBlock
+> > > > > > > - MEM:48.24609375 Reading. parent:caves-1623/40/old/eismain <> caves-1623/40/old/eismain
+[<Cave: 1623-40>]
+> > > > > > LEGS: 47 (previous: 5202, now:5249)
+> > > > - Include path found, including - caves-1623/40/40arge
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.24609375 Reading. parent:caves-1623/40/40 <> caves-1623/40/40arge
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/arge/elefantengang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.24609375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/elefantengang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:elefantengang, creating new SurvexBlock
+> > > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/arge/elefantengang <> caves-1623/40/arge/elefantengang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5249, now:5257)
+> > > > > - Include path found, including - caves-1623/40/arge/gruenerEingang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.2578125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gruenerEingang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:gruenereingang, creating new SurvexBlock
+> > > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/arge/gruenerEingang <> caves-1623/40/arge/gruenerEingang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 19 (previous: 5257, now:5276)
+> > > > > - Include path found, including - caves-1623/40/arge/expressfinish
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.265625 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/expressfinish
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:expressfinish, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/expressfinish <> caves-1623/40/arge/expressfinish
+[<Cave: 1623-40>]
+> > > > > > LEGS: 15 (previous: 5276, now:5291)
+> > > > > - Include path found, including - caves-1623/40/arge/koenigsschacht
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/koenigsschacht
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:koenigsschacht, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/koenigsschacht <> caves-1623/40/arge/koenigsschacht
+[<Cave: 1623-40>]
+> > > > > > LEGS: 7 (previous: 5291, now:5298)
+> > > > > - Include path found, including - caves-1623/40/arge/schotterland
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:schotterland, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:bits, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5313, now:5318)
+> > > > > - Include path found, including - caves-1623/40/arge/niete
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/niete
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:niete, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/niete <> caves-1623/40/arge/niete
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5318, now:5326)
+> > > > > - Include path found, including - caves-1623/40/arge/tiefergang
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/tiefergang
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:tiefergang, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/tiefergang <> caves-1623/40/arge/tiefergang
+[<Cave: 1623-40>]
+> > > > > > LEGS: 13 (previous: 5326, now:5339)
+> > > > > - Include path found, including - caves-1623/40/arge/hanspfandlhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/hanspfandlhalle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:hanspfandlhalle, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/hanspfandlhalle <> caves-1623/40/arge/hanspfandlhalle
+[<Cave: 1623-40>]
+> > > > > > LEGS: 8 (previous: 5339, now:5347)
+> > > > > - Include path found, including - caves-1623/40/arge/wahnsinnsschaechte
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnsschaechte
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:wahnsinnsschaechte, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/wahnsinnsschaechte <> caves-1623/40/arge/wahnsinnsschaechte
+[<Cave: 1623-40>]
+> > > > > > LEGS: 41 (previous: 5347, now:5388)
+> > > > > - Include path found, including - caves-1623/40/arge/wahnsinnscanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnscanyon
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:wahnsinnscanyon, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/wahnsinnscanyon <> caves-1623/40/arge/wahnsinnscanyon
+[<Cave: 1623-40>]
+> > > > > > LEGS: 13 (previous: 5388, now:5401)
+> > > > > - Include path found, including - caves-1623/40/arge/thalhammerhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/thalhammerhalle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:thalhammerhalle, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/thalhammerhalle <> caves-1623/40/arge/thalhammerhalle
+[<Cave: 1623-40>]
+> > > > > > LEGS: 22 (previous: 5401, now:5423)
+> > > > > - Include path found, including - caves-1623/40/arge/flusstunnel
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/flusstunnel
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:flusstunnel, creating new SurvexBlock
+> > > > > > > - MEM:48.27734375 Reading. parent:caves-1623/40/arge/flusstunnel <> caves-1623/40/arge/flusstunnel
+[<Cave: 1623-40>]
+> > > > > > LEGS: 150 (previous: 5423, now:5573)
+> > > > > - Include path found, including - caves-1623/40/arge/gluehwuermchen
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gluehwuermchen
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:gluehwuermchen, creating new SurvexBlock
+> > > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/arge/gluehwuermchen <> caves-1623/40/arge/gluehwuermchen
+[<Cave: 1623-40>]
+> > > > > > LEGS: 19 (previous: 5573, now:5592)
+> > > > > - Include path found, including - caves-1623/40/arge/wanderer
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wanderer
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:wanderer, creating new SurvexBlock
+> > > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/arge/wanderer <> caves-1623/40/arge/wanderer
+[<Cave: 1623-40>]
+> > > > > > LEGS: 53 (previous: 5592, now:5645)
+> > > > > - Include path found, including - caves-1623/40/arge/silbercanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/silbercanyon
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:silbercanyon, creating new SurvexBlock
+> > > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/arge/silbercanyon <> caves-1623/40/arge/silbercanyon
+[<Cave: 1623-40>]
+> > > > > > LEGS: 58 (previous: 5645, now:5703)
+> > > > > - Include path found, including - caves-1623/40/arge/franzosenbiwak
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/franzosenbiwak
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:franzosenbiwak, creating new SurvexBlock
+> > > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/arge/franzosenbiwak <> caves-1623/40/arge/franzosenbiwak
+[<Cave: 1623-40>]
+> > > > > > LEGS: 27 (previous: 5703, now:5730)
+> > > > - Include path found, including - caves-1623/40/40cucc
+> > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/40cucc
+[<Cave: 1623-40>]
+> > > > > - Include path found, including - caves-1623/40/cucc/plastic
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/plastic
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:plastic, creating new SurvexBlock
+> > > > > > > - MEM:48.28125 Reading. parent:caves-1623/40/cucc/plastic <> caves-1623/40/cucc/plastic
+[<Cave: 1623-40>]
+> > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book p59"' caves-1623/40/cucc/plastic
+> > > > > > LEGS: 21 (previous: 5730, now:5751)
+> > > > > - Include path found, including - caves-1623/40/cucc/pov/pov
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.28515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/pov
+[<Cave: 1623-40>]
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/deviant
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.29296875 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/deviant
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:deviant, creating new SurvexBlock
+> > > > > > > > - MEM:48.3125 Reading. parent:caves-1623/40/cucc/pov/deviant <> caves-1623/40/cucc/pov/deviant
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 92-95"' caves-1623/40/cucc/pov/deviant
+> > > > > > > LEGS: 17 (previous: 5751, now:5768)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/uuaway
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.3125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/uuaway
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:uuaway, creating new SurvexBlock
+> > > > > > > > - MEM:48.3125 Reading. parent:caves-1623/40/cucc/pov/uuaway <> caves-1623/40/cucc/pov/uuaway
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 96-97"' caves-1623/40/cucc/pov/uuaway
+> > > > > > > LEGS: 15 (previous: 5768, now:5783)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/dangle
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.3125 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/dangle
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:dangle, creating new SurvexBlock
+> > > > > > > > - MEM:48.3125 Reading. parent:caves-1623/40/cucc/pov/dangle <> caves-1623/40/cucc/pov/dangle
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 98-100"' caves-1623/40/cucc/pov/dangle
+> > > > > > > LEGS: 19 (previous: 5783, now:5802)
+> > > > > > - Include path found, including - caves-1623/40/cucc/pov/eiscream
+> > > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > > - MEM:48.31640625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/eiscream
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > > - Begin found for:eiscream, creating new SurvexBlock
+> > > > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/cucc/pov/eiscream <> caves-1623/40/cucc/pov/eiscream
+[<Cave: 1623-40>]
+> > > > > > > ! Unparsed [*ref]: '"1996-1999 Not-KH survey book pp 101-103"' caves-1623/40/cucc/pov/eiscream
+> > > > > > > LEGS: 23 (previous: 5802, now:5825)
+> > > > > - Include path found, including - caves-1623/40/cucc/oldway
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldway
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:oldway, creating new SurvexBlock
+> > > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/cucc/oldway <> caves-1623/40/cucc/oldway
+[<Cave: 1623-40>]
+> > > > > > ! Unparsed [*ref]: '"1999 Not-KH survey book pp ?"' caves-1623/40/cucc/oldway
+> > > > > > LEGS: 3 (previous: 5825, now:5828)
+> > > > > - Include path found, including - caves-1623/40/cucc/mission
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3359375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:mission, creating new SurvexBlock
+> > > > > > > - MEM:48.34375 Reading. parent:caves-1623/40/cucc/mission <> caves-1623/40/cucc/mission
+[<Cave: 1623-40>]
+> > > > > > LEGS: 9 (previous: 5828, now:5837)
+> > > > > - Include path found, including - caves-1623/40/cucc/mission5
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.34375 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission5
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:mission5, creating new SurvexBlock
+> > > > > > > - MEM:48.34765625 Reading. parent:caves-1623/40/cucc/mission5 <> caves-1623/40/cucc/mission5
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5837, now:5842)
+> > > > > - Include path found, including - caves-1623/40/cucc/nmanip
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/nmanip
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:nmanip, creating new SurvexBlock
+> > > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/cucc/nmanip <> caves-1623/40/cucc/nmanip
+[<Cave: 1623-40>]
+> > > > > > LEGS: 26 (previous: 5842, now:5868)
+> > > > > - Include path found, including - caves-1623/40/cucc/40h
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/40h
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:40h, creating new SurvexBlock
+> > > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/cucc/40h <> caves-1623/40/cucc/40h
+[<Cave: 1623-40>]
+> > > > > > LEGS: 5 (previous: 5868, now:5873)
+> > > > > - Include path found, including - caves-1623/40/cucc/oldnew
+> > > > > - Match in DB (i) for cave 1623-40.
+[<Cave: 1623-40>]
+> > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:oldnew, creating new SurvexBlock
+> > > > > > > - MEM:48.3515625 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+[<Cave: 1623-40>]
+> > > > > > - Begin found for:bodge, creating new SurvexBlock
+> > > > > > > - MEM:48.36328125 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+[<Cave: 1623-40>]
+> > > > > > LEGS: 1 (previous: 5878, now:5879)
+> > > > LEGS: 796 (previous: 5083, now:5879)
+> > > - Include path found, including - caves-1623/41/41
+> > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > - MEM:48.37109375 Reading. parent:kataster/1623 <> caves-1623/41/41
+[<Cave: 1623-41>]
+> > > > - Begin found for:41, creating new SurvexBlock
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/41
+[<Cave: 1623-41>]
+> > > > - Include path found, including - caves-1623/41/seiteng
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/seiteng
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:seiteng, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/seiteng <> caves-1623/41/seiteng
+[<Cave: 1623-41>]
+> > > > > LEGS: 23 (previous: 5879, now:5902)
+> > > > - Include path found, including - caves-1623/41/bonsai
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/bonsai
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bonsai, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/bonsai <> caves-1623/41/bonsai
+[<Cave: 1623-41>]
+> > > > > LEGS: 22 (previous: 5902, now:5924)
+> > > > - Include path found, including - caves-1623/41/verhall
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/verhall
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:verhall, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/verhall <> caves-1623/41/verhall
+[<Cave: 1623-41>]
+> > > > > LEGS: 38 (previous: 5924, now:5962)
+> > > > - Include path found, including - caves-1623/41/blakwite
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/blakwite
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:blakwite, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/blakwite <> caves-1623/41/blakwite
+[<Cave: 1623-41>]
+> > > > > LEGS: 54 (previous: 5962, now:6016)
+> > > > - Include path found, including - caves-1623/41/stream
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/stream
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:stream, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/stream <> caves-1623/41/stream
+[<Cave: 1623-41>]
+> > > > > LEGS: 18 (previous: 6016, now:6034)
+> > > > - Include path found, including - caves-1623/41/bigchamber
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/bigchamber
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bigchamber, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/bigchamber <> caves-1623/41/bigchamber
+[<Cave: 1623-41>]
+> > > > > LEGS: 60 (previous: 6034, now:6094)
+> > > > - Include path found, including - caves-1623/41/abstieg
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/abstieg
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:abstieg, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/abstieg <> caves-1623/41/abstieg
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6094, now:6109)
+> > > > - Include path found, including - caves-1623/41/runway
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/runway
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:runway, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/runway <> caves-1623/41/runway
+[<Cave: 1623-41>]
+> > > > > LEGS: 33 (previous: 6109, now:6142)
+> > > > - Include path found, including - caves-1623/41/treppe
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/treppe
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:treppe, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/treppe <> caves-1623/41/treppe
+[<Cave: 1623-41>]
+> > > > > LEGS: 9 (previous: 6142, now:6151)
+> > > > - Include path found, including - caves-1623/41/platte
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/41 <> caves-1623/41/platte
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:platte, creating new SurvexBlock
+> > > > > > - MEM:48.37109375 Reading. parent:caves-1623/41/platte <> caves-1623/41/platte
+[<Cave: 1623-41>]
+> > > > > LEGS: 43 (previous: 6151, now:6194)
+> > > > - Include path found, including - caves-1623/41/e41
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.37890625 Reading. parent:caves-1623/41/41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:e41, creating new SurvexBlock
+> > > > > > - MEM:48.37890625 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+> > > > > - Include path found, including - caves-1623/41/germanrt
+> > > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > > - MEM:48.37890625 Reading. parent:caves-1623/41/e41 <> caves-1623/41/germanrt
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > > - Begin found for:germanrt, creating new SurvexBlock
+> > > > > > > - MEM:48.38671875 Reading. parent:caves-1623/41/germanrt <> caves-1623/41/germanrt
+[<Cave: 1623-41>]
+> > > > > > LEGS: 8 (previous: 6223, now:6231)
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bloop, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+[<Cave: 1623-41>]
+> > > > > LEGS: 10 (previous: 6231, now:6241)
+> > > > - Include path found, including - caves-1623/41/steinsch
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/steinsch
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:steinsch, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/steinsch <> caves-1623/41/steinsch
+[<Cave: 1623-41>]
+> > > > > LEGS: 18 (previous: 6241, now:6259)
+> > > > - Include path found, including - caves-1623/41/din
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/din
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:din, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/din <> caves-1623/41/din
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6259, now:6273)
+> > > > - Include path found, including - caves-1623/41/extblatt
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/extblatt
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:extblatt, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/extblatt <> caves-1623/41/extblatt
+[<Cave: 1623-41>]
+> > > > > LEGS: 29 (previous: 6273, now:6302)
+> > > > - Include path found, including - caves-1623/41/extradin
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/extradin
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:extradin, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/extradin <> caves-1623/41/extradin
+[<Cave: 1623-41>]
+> > > > > LEGS: 10 (previous: 6302, now:6312)
+> > > > - Include path found, including - caves-1623/41/edelmean
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/edelmean
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:edelmean, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/edelmean <> caves-1623/41/edelmean
+[<Cave: 1623-41>]
+> > > > > LEGS: 11 (previous: 6312, now:6323)
+> > > > - Include path found, including - caves-1623/41/rondos
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/rondos
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:rondos, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/rondos <> caves-1623/41/rondos
+[<Cave: 1623-41>]
+> > > > > LEGS: 54 (previous: 6323, now:6377)
+> > > > - Include path found, including - caves-1623/41/german
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/german
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:german, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/german <> caves-1623/41/german
+[<Cave: 1623-41>]
+> > > > > LEGS: 39 (previous: 6377, now:6416)
+> > > > - Include path found, including - caves-1623/41/mond
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/mond
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:mond, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/mond <> caves-1623/41/mond
+[<Cave: 1623-41>]
+> > > > > LEGS: 47 (previous: 6416, now:6463)
+> > > > - Include path found, including - caves-1623/41/oktar
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/oktar
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:oktar, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/oktar <> caves-1623/41/oktar
+[<Cave: 1623-41>]
+> > > > > LEGS: 28 (previous: 6463, now:6491)
+> > > > - Include path found, including - caves-1623/41/megalo
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/megalo
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:megalo, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/megalo <> caves-1623/41/megalo
+[<Cave: 1623-41>]
+> > > > > LEGS: 23 (previous: 6491, now:6514)
+> > > > - Include path found, including - caves-1623/41/wdr
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/wdr
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:wdr, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/wdr <> caves-1623/41/wdr
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6514, now:6528)
+> > > > - Include path found, including - caves-1623/41/lampntot
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/lampntot
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:lampntot, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/lampntot <> caves-1623/41/lampntot
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6528, now:6543)
+> > > > - Include path found, including - caves-1623/41/manhattn
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/manhattn
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:manhattn, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/manhattn <> caves-1623/41/manhattn
+[<Cave: 1623-41>]
+> > > > > LEGS: 41 (previous: 6543, now:6584)
+> > > > - Include path found, including - caves-1623/41/entlueft
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/entlueft
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:entlueft, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/entlueft <> caves-1623/41/entlueft
+[<Cave: 1623-41>]
+> > > > > LEGS: 55 (previous: 6584, now:6639)
+> > > > - Include path found, including - caves-1623/41/glueck
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/glueck
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:glueck, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/glueck <> caves-1623/41/glueck
+[<Cave: 1623-41>]
+> > > > > LEGS: 77 (previous: 6639, now:6716)
+> > > > - Include path found, including - caves-1623/41/bus
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/bus
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:bus, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/bus <> caves-1623/41/bus
+[<Cave: 1623-41>]
+> > > > > LEGS: 49 (previous: 6716, now:6765)
+> > > > - Include path found, including - caves-1623/41/morphan
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.390625 Reading. parent:caves-1623/41/41 <> caves-1623/41/morphan
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:morphan, creating new SurvexBlock
+> > > > > > - MEM:48.390625 Reading. parent:caves-1623/41/morphan <> caves-1623/41/morphan
+[<Cave: 1623-41>]
+> > > > > LEGS: 59 (previous: 6765, now:6824)
+> > > > - Include path found, including - caves-1623/41/basic
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/basic
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:basic, creating new SurvexBlock
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/basic <> caves-1623/41/basic
+[<Cave: 1623-41>]
+> > > > > LEGS: 14 (previous: 6824, now:6838)
+> > > > - Include path found, including - caves-1623/41/tincan
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/tincan
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:tincan, creating new SurvexBlock
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/tincan <> caves-1623/41/tincan
+[<Cave: 1623-41>]
+> > > > > LEGS: 22 (previous: 6838, now:6860)
+> > > > - Include path found, including - caves-1623/41/jade
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/jade
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:jade, creating new SurvexBlock
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/jade <> caves-1623/41/jade
+[<Cave: 1623-41>]
+> > > > > LEGS: 15 (previous: 6860, now:6875)
+> > > > - Include path found, including - caves-1623/41/doplbodn
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/doplbodn
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:doplbodn, creating new SurvexBlock
+> > > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/doplbodn <> caves-1623/41/doplbodn
+[<Cave: 1623-41>]
+> > > > > LEGS: 33 (previous: 6875, now:6908)
+> > > > - Include path found, including - caves-1623/41/alice
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.39453125 Reading. parent:caves-1623/41/41 <> caves-1623/41/alice
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:alice, creating new SurvexBlock
+> > > > > > - MEM:48.3984375 Reading. parent:caves-1623/41/alice <> caves-1623/41/alice
+[<Cave: 1623-41>]
+> > > > > LEGS: 62 (previous: 6908, now:6970)
+> > > > - Include path found, including - caves-1623/41/wetnwild
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.40625 Reading. parent:caves-1623/41/41 <> caves-1623/41/wetnwild
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:wetnwild, creating new SurvexBlock
+> > > > > > - MEM:48.40625 Reading. parent:caves-1623/41/wetnwild <> caves-1623/41/wetnwild
+[<Cave: 1623-41>]
+> > > > > LEGS: 75 (previous: 6970, now:7045)
+> > > > - Include path found, including - caves-1623/41/diaet
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.4140625 Reading. parent:caves-1623/41/41 <> caves-1623/41/diaet
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:diaet, creating new SurvexBlock
+> > > > > > - MEM:48.41796875 Reading. parent:caves-1623/41/diaet <> caves-1623/41/diaet
+[<Cave: 1623-41>]
+> > > > > LEGS: 104 (previous: 7045, now:7149)
+> > > > - Include path found, including - caves-1623/41/roehre
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.4296875 Reading. parent:caves-1623/41/41 <> caves-1623/41/roehre
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:roehre, creating new SurvexBlock
+> > > > > > - MEM:48.4296875 Reading. parent:caves-1623/41/roehre <> caves-1623/41/roehre
+[<Cave: 1623-41>]
+> > > > > LEGS: 79 (previous: 7149, now:7228)
+> > > > - Include path found, including - caves-1623/41/rampe
+> > > > - Match in DB (i) for cave 1623-41.
+[<Cave: 1623-41>]
+> > > > > - MEM:48.43359375 Reading. parent:caves-1623/41/41 <> caves-1623/41/rampe
+[<Cave: 1623-41>]
+[<Cave: 1623-41>]
+> > > > > - Begin found for:rampe, creating new SurvexBlock
+> > > > > > - MEM:48.43359375 Reading. parent:caves-1623/41/rampe <> caves-1623/41/rampe
+[<Cave: 1623-41>]
+> > > > > LEGS: 37 (previous: 7228, now:7265)
+> > > > LEGS: 1386 (previous: 5879, now:7265)
+> > > - Include path found, including - caves-1623/78/78
+> > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > - MEM:48.4375 Reading. parent:kataster/1623 <> caves-1623/78/78
+[<Cave: 1623-78>]
+> > > > - Begin found for:78, creating new SurvexBlock
+> > > > > - MEM:48.4375 Reading. parent:caves-1623/78/78 <> caves-1623/78/78
+[<Cave: 1623-78>]
+> > > > - Include path found, including - caves-1623/78/haupt
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.4375 Reading. parent:caves-1623/78/78 <> caves-1623/78/haupt
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > > - MEM:48.4375 Reading. parent:caves-1623/78/haupt <> caves-1623/78/haupt
+[<Cave: 1623-78>]
+> > > > > LEGS: 99 (previous: 7265, now:7364)
+> > > > - Include path found, including - caves-1623/78/nasse
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.4375 Reading. parent:caves-1623/78/78 <> caves-1623/78/nasse
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:nasse, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/nasse <> caves-1623/78/nasse
+[<Cave: 1623-78>]
+> > > > > LEGS: 42 (previous: 7364, now:7406)
+> > > > - Include path found, including - caves-1623/78/eisdom
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisdom
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:eisdom, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/eisdom <> caves-1623/78/eisdom
+[<Cave: 1623-78>]
+> > > > > LEGS: 21 (previous: 7406, now:7427)
+> > > > - Include path found, including - caves-1623/78/forsten
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/forsten
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:forsten, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/forsten <> caves-1623/78/forsten
+[<Cave: 1623-78>]
+> > > > > LEGS: 23 (previous: 7427, now:7450)
+> > > > - Include path found, including - caves-1623/78/augsburg
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/augsburg
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:augsburg, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/augsburg <> caves-1623/78/augsburg
+[<Cave: 1623-78>]
+> > > > > LEGS: 26 (previous: 7450, now:7476)
+> > > > - Include path found, including - caves-1623/78/eisscha
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisscha
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:eisscha, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/eisscha <> caves-1623/78/eisscha
+[<Cave: 1623-78>]
+> > > > > LEGS: 5 (previous: 7476, now:7481)
+> > > > - Include path found, including - caves-1623/78/fossimea
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/fossimea
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:fossimea, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/fossimea <> caves-1623/78/fossimea
+[<Cave: 1623-78>]
+> > > > > LEGS: 73 (previous: 7481, now:7554)
+> > > > - Include path found, including - caves-1623/78/schwadom
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schwadom
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:schwadom, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/schwadom <> caves-1623/78/schwadom
+[<Cave: 1623-78>]
+> > > > > LEGS: 54 (previous: 7554, now:7608)
+> > > > - Include path found, including - caves-1623/78/stgneu
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/stgneu
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:stgneu, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/stgneu <> caves-1623/78/stgneu
+[<Cave: 1623-78>]
+> > > > > LEGS: 5 (previous: 7608, now:7613)
+> > > > - Include path found, including - caves-1623/78/bayberg
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/bayberg
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:bayberg, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/bayberg <> caves-1623/78/bayberg
+[<Cave: 1623-78>]
+> > > > > LEGS: 30 (previous: 7613, now:7643)
+> > > > - Include path found, including - caves-1623/78/keller
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/keller
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:keller, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/keller <> caves-1623/78/keller
+[<Cave: 1623-78>]
+> > > > > LEGS: 11 (previous: 7643, now:7654)
+> > > > - Include path found, including - caves-1623/78/e2
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/e2
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:e2, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/e2 <> caves-1623/78/e2
+[<Cave: 1623-78>]
+> > > > > LEGS: 17 (previous: 7654, now:7671)
+> > > > - Include path found, including - caves-1623/78/bartl
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/bartl
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:bartl, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/bartl <> caves-1623/78/bartl
+[<Cave: 1623-78>]
+> > > > > LEGS: 68 (previous: 7671, now:7739)
+> > > > - Include path found, including - caves-1623/78/fetzig
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/fetzig
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:fetzig, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/fetzig <> caves-1623/78/fetzig
+[<Cave: 1623-78>]
+> > > > > LEGS: 9 (previous: 7739, now:7748)
+> > > > - Include path found, including - caves-1623/78/verloren
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/verloren
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:verloren, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/verloren <> caves-1623/78/verloren
+[<Cave: 1623-78>]
+> > > > > LEGS: 13 (previous: 7748, now:7761)
+> > > > - Include path found, including - caves-1623/78/highway
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/highway
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:highway, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/highway <> caves-1623/78/highway
+[<Cave: 1623-78>]
+> > > > > LEGS: 148 (previous: 7761, now:7909)
+> > > > - Include path found, including - caves-1623/78/parallel
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/parallel
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:parallel, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/parallel <> caves-1623/78/parallel
+[<Cave: 1623-78>]
+> > > > > LEGS: 22 (previous: 7909, now:7931)
+> > > > - Include path found, including - caves-1623/78/allkaese
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/allkaese
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:allkaese, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/allkaese <> caves-1623/78/allkaese
+[<Cave: 1623-78>]
+> > > > > LEGS: 78 (previous: 7931, now:8009)
+> > > > - Include path found, including - caves-1623/78/schnaps
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schnaps
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:schnaps, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/schnaps <> caves-1623/78/schnaps
+[<Cave: 1623-78>]
+> > > > > LEGS: 35 (previous: 8009, now:8044)
+> > > > - Include path found, including - caves-1623/78/standard
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/standard
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:standard, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/standard <> caves-1623/78/standard
+[<Cave: 1623-78>]
+> > > > > LEGS: 92 (previous: 8044, now:8136)
+> > > > - Include path found, including - caves-1623/78/schlepp
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/schlepp
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:schlepp, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/schlepp <> caves-1623/78/schlepp
+[<Cave: 1623-78>]
+> > > > > LEGS: 23 (previous: 8136, now:8159)
+> > > > - Include path found, including - caves-1623/78/igramul
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/igramul
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:igramul, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/igramul <> caves-1623/78/igramul
+[<Cave: 1623-78>]
+> > > > > LEGS: 31 (previous: 8159, now:8190)
+> > > > - Include path found, including - caves-1623/78/spazier
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/spazier
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:spazier, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/spazier <> caves-1623/78/spazier
+[<Cave: 1623-78>]
+> > > > > LEGS: 61 (previous: 8190, now:8251)
+> > > > - Include path found, including - caves-1623/78/galakt
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/galakt
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:galakt, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/galakt <> caves-1623/78/galakt
+[<Cave: 1623-78>]
+> > > > > LEGS: 84 (previous: 8251, now:8335)
+> > > > - Include path found, including - caves-1623/78/steinbl
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/steinbl
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:steinbl, creating new SurvexBlock
+> > > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/steinbl <> caves-1623/78/steinbl
+[<Cave: 1623-78>]
+> > > > > LEGS: 20 (previous: 8335, now:8355)
+> > > > - Include path found, including - caves-1623/78/rausch
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.44140625 Reading. parent:caves-1623/78/78 <> caves-1623/78/rausch
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:rausch, creating new SurvexBlock
+> > > > > > - MEM:48.45703125 Reading. parent:caves-1623/78/rausch <> caves-1623/78/rausch
+[<Cave: 1623-78>]
+> > > > > LEGS: 27 (previous: 8355, now:8382)
+> > > > - Include path found, including - caves-1623/78/comeback
+> > > > - Match in DB (i) for cave 1623-78.
+[<Cave: 1623-78>]
+> > > > > - MEM:48.45703125 Reading. parent:caves-1623/78/78 <> caves-1623/78/comeback
+[<Cave: 1623-78>]
+[<Cave: 1623-78>]
+> > > > > - Begin found for:comeback, creating new SurvexBlock
+> > > > > > - MEM:48.45703125 Reading. parent:caves-1623/78/comeback <> caves-1623/78/comeback
+[<Cave: 1623-78>]
+> > > > > LEGS: 39 (previous: 8382, now:8421)
+> > > > LEGS: 1156 (previous: 7265, now:8421)
+> > > - Include path found, including - caves-1623/87/87
+> > > - Match in DB (i) for cave 1623-87.
+[]
+> > > > - MEM:48.45703125 Reading. parent:kataster/1623 <> caves-1623/87/87
+[]
+> > > > - Begin found for:87, creating new SurvexBlock
+> > > > > - MEM:48.45703125 Reading. parent:caves-1623/87/87 <> caves-1623/87/87
+[]
+> > > > LEGS: 48 (previous: 8421, now:8469)
+> > > - Include path found, including - caves-1623/88/88
+> > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > - MEM:48.52734375 Reading. parent:kataster/1623 <> caves-1623/88/88
+[<Cave: 1623-88>]
+> > > > - Begin found for:88, creating new SurvexBlock
+> > > > > - MEM:48.5390625 Reading. parent:caves-1623/88/88 <> caves-1623/88/88
+[<Cave: 1623-88>]
+> > > > - Include path found, including - caves-1623/88/lerche1
+> > > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > > - MEM:48.578125 Reading. parent:caves-1623/88/88 <> caves-1623/88/lerche1
+[<Cave: 1623-88>]
+[<Cave: 1623-88>]
+> > > > > - Begin found for:lerche1, creating new SurvexBlock
+> > > > > > - MEM:48.61328125 Reading. parent:caves-1623/88/lerche1 <> caves-1623/88/lerche1
+[<Cave: 1623-88>]
+> > > > > LEGS: 214 (previous: 8469, now:8683)
+> > > > - Include path found, including - caves-1623/88/sophy
+> > > > - Match in DB (i) for cave 1623-88.
+[<Cave: 1623-88>]
+> > > > > - MEM:48.61328125 Reading. parent:caves-1623/88/88 <> caves-1623/88/sophy
+[<Cave: 1623-88>]
+[<Cave: 1623-88>]
+> > > > > - Begin found for:sophy, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/88/sophy <> caves-1623/88/sophy
+[<Cave: 1623-88>]
+> > > > > LEGS: 7 (previous: 8683, now:8690)
+> > > > LEGS: 221 (previous: 8469, now:8690)
+> > > - Include path found, including - caves-1623/115/115
+> > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > - MEM:48.625 Reading. parent:kataster/1623 <> caves-1623/115/115
+[<Cave: 1623-115>]
+> > > > - Begin found for:115, creating new SurvexBlock
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115
+[<Cave: 1623-115>]
+> > > > - Include path found, including - caves-1623/115/115eing
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115eing
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:115eing, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/115eing <> caves-1623/115/115eing
+[<Cave: 1623-115>]
+> > > > > LEGS: 112 (previous: 8690, now:8802)
+> > > > - Include path found, including - caves-1623/115/nutzlos
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/nutzlos
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:nutzlos, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/nutzlos <> caves-1623/115/nutzlos
+[<Cave: 1623-115>]
+> > > > > LEGS: 24 (previous: 8802, now:8826)
+> > > > - Include path found, including - caves-1623/115/babylon
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/babylon
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:babylon, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/babylon <> caves-1623/115/babylon
+[<Cave: 1623-115>]
+> > > > > LEGS: 71 (previous: 8826, now:8897)
+> > > > - Include path found, including - caves-1623/115/115haupt
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115haupt
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:115haupt, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/115haupt <> caves-1623/115/115haupt
+[<Cave: 1623-115>]
+> > > > > LEGS: 32 (previous: 8897, now:8929)
+> > > > - Include path found, including - caves-1623/115/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/purgatory
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:purgatory, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/purgatory <> caves-1623/115/purgatory
+[<Cave: 1623-115>]
+> > > > > LEGS: 74 (previous: 8929, now:9003)
+> > > > - Include path found, including - caves-1623/115/babywind
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/babywind
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:babywind, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/babywind <> caves-1623/115/babywind
+[<Cave: 1623-115>]
+> > > > > LEGS: 45 (previous: 9003, now:9048)
+> > > > - Include path found, including - caves-1623/115/nebukad
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/nebukad
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:nebukad, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/nebukad <> caves-1623/115/nebukad
+[<Cave: 1623-115>]
+> > > > > LEGS: 36 (previous: 9048, now:9084)
+> > > > - Include path found, including - caves-1623/115/dartford
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/dartford
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:dartford, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/dartford <> caves-1623/115/dartford
+[<Cave: 1623-115>]
+> > > > > LEGS: 52 (previous: 9084, now:9136)
+> > > > - Include path found, including - caves-1623/115/koelndom
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/koelndom
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:koelndom, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/koelndom <> caves-1623/115/koelndom
+[<Cave: 1623-115>]
+> > > > > LEGS: 51 (previous: 9136, now:9187)
+> > > > - Include path found, including - caves-1623/115/confluence
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/confluence
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:confluence, creating new SurvexBlock
+> > > > > > - MEM:48.625 Reading. parent:caves-1623/115/confluence <> caves-1623/115/confluence
+[<Cave: 1623-115>]
+> > > > > LEGS: 38 (previous: 9187, now:9225)
+> > > > - Include path found, including - caves-1623/115/cucc/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.625 Reading. parent:caves-1623/115/115 <> caves-1623/115/cucc/purgatory
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:cuccpurgatory, creating new SurvexBlock
+> > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/cucc/purgatory <> caves-1623/115/cucc/purgatory
+[<Cave: 1623-115>]
+> > > > > LEGS: 25 (previous: 9225, now:9250)
+> > > > - Include path found, including - caves-1623/115/115rest
+> > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115 <> caves-1623/115/115rest
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > - Begin found for:115rest, creating new SurvexBlock
+> > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/115rest
+[<Cave: 1623-115>]
+> > > > > - Include path found, including - caves-1623/115/cucc/stream
+> > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/stream
+[<Cave: 1623-115>]
+> > > > > > - Include path found, including - caves-1623/115/cucc/12foot
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/12foot
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:12foot, creating new SurvexBlock
+> > > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/cucc/12foot <> caves-1623/115/cucc/12foot
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 22 (previous: 9250, now:9272)
+> > > > > > - Include path found, including - caves-1623/115/cucc/confluence
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/confluence
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:confluence, creating new SurvexBlock
+> > > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/cucc/confluence <> caves-1623/115/cucc/confluence
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 59 (previous: 9272, now:9331)
+> > > > > > - Include path found, including - caves-1623/115/cucc/commando
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.640625 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/commando
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:commando, creating new SurvexBlock
+> > > > > > > > - MEM:48.65234375 Reading. parent:caves-1623/115/cucc/commando <> caves-1623/115/cucc/commando
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 86 (previous: 9331, now:9417)
+> > > > > > - Include path found, including - caves-1623/115/cucc/orgasm
+> > > > > > - Match in DB (i) for cave 1623-115.
+[<Cave: 1623-115>]
+> > > > > > > - MEM:48.65234375 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/orgasm
+[<Cave: 1623-115>]
+[<Cave: 1623-115>]
+> > > > > > > - Begin found for:orgasm, creating new SurvexBlock
+> > > > > > > > - MEM:48.65234375 Reading. parent:caves-1623/115/cucc/orgasm <> caves-1623/115/cucc/orgasm
+[<Cave: 1623-115>]
+> > > > > > > LEGS: 65 (previous: 9417, now:9482)
+> > > > > LEGS: 232 (previous: 9250, now:9482)
+> > > > LEGS: 792 (previous: 8690, now:9482)
+> > > - Include path found, including - caves-1623/142/142
+> > > - Match in DB (i) for cave 1623-142.
+[<Cave: 1623-142>]
+> > > > - MEM:48.65234375 Reading. parent:kataster/1623 <> caves-1623/142/142
+[<Cave: 1623-142>]
+> > > > - Begin found for:142, creating new SurvexBlock
+> > > > > - MEM:48.66796875 Reading. parent:caves-1623/142/142 <> caves-1623/142/142
+[<Cave: 1623-142>]
+> > > > LEGS: 124 (previous: 9482, now:9606)
+> > > - Include path found, including - caves-1623/143/143
+> > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > - MEM:48.66796875 Reading. parent:kataster/1623 <> caves-1623/143/143
+[<Cave: 1623-143>]
+> > > > - Begin found for:143, creating new SurvexBlock
+> > > > > - MEM:48.66796875 Reading. parent:caves-1623/143/143 <> caves-1623/143/143
+[<Cave: 1623-143>]
+> > > > - Include path found, including - caves-1623/143/canyon
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.66796875 Reading. parent:caves-1623/143/143 <> caves-1623/143/canyon
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:canyon, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/canyon <> caves-1623/143/canyon
+[<Cave: 1623-143>]
+> > > > > LEGS: 93 (previous: 9606, now:9699)
+> > > > - Include path found, including - caves-1623/143/brauner
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/brauner
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:brauner, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/brauner <> caves-1623/143/brauner
+[<Cave: 1623-143>]
+> > > > > LEGS: 15 (previous: 9699, now:9714)
+> > > > - Include path found, including - caves-1623/143/flammen
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/flammen
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:flammen, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/flammen <> caves-1623/143/flammen
+[<Cave: 1623-143>]
+> > > > > LEGS: 16 (previous: 9714, now:9730)
+> > > > - Include path found, including - caves-1623/143/haupt
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/haupt
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/haupt <> caves-1623/143/haupt
+[<Cave: 1623-143>]
+> > > > > LEGS: 26 (previous: 9730, now:9756)
+> > > > - Include path found, including - caves-1623/143/iqcanyon
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/iqcanyon
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:iqcanyon, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/iqcanyon <> caves-1623/143/iqcanyon
+[<Cave: 1623-143>]
+> > > > > LEGS: 42 (previous: 9756, now:9798)
+> > > > - Include path found, including - caves-1623/143/kuhwiese
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:kuhwiese, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:22a, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+[<Cave: 1623-143>]
+> > > > > LEGS: 43 (previous: 9798, now:9841)
+> > > > - Include path found, including - caves-1623/143/rampe
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/rampe
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:rampe, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/rampe <> caves-1623/143/rampe
+[<Cave: 1623-143>]
+> > > > > LEGS: 53 (previous: 9841, now:9894)
+> > > > - Include path found, including - caves-1623/143/rutsche
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.671875 Reading. parent:caves-1623/143/143 <> caves-1623/143/rutsche
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:rutsche, creating new SurvexBlock
+> > > > > > - MEM:48.671875 Reading. parent:caves-1623/143/rutsche <> caves-1623/143/rutsche
+[<Cave: 1623-143>]
+> > > > > LEGS: 26 (previous: 9894, now:9920)
+> > > > - Include path found, including - caves-1623/143/doppelrohr
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/143 <> caves-1623/143/doppelrohr
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:doppelrohr, creating new SurvexBlock
+> > > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/doppelrohr <> caves-1623/143/doppelrohr
+[<Cave: 1623-143>]
+> > > > > LEGS: 28 (previous: 9920, now:9948)
+> > > > - Include path found, including - caves-1623/143/sophy
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/143 <> caves-1623/143/sophy
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:sophy, creating new SurvexBlock
+> > > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/sophy <> caves-1623/143/sophy
+[<Cave: 1623-143>]
+> > > > > LEGS: 12 (previous: 9948, now:9960)
+> > > > - Include path found, including - caves-1623/143/hades
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/143 <> caves-1623/143/hades
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:hades, creating new SurvexBlock
+> > > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/hades <> caves-1623/143/hades
+[<Cave: 1623-143>]
+> > > > > LEGS: 25 (previous: 9960, now:9985)
+> > > > - Include path found, including - caves-1623/143/troja
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/143 <> caves-1623/143/troja
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:troja, creating new SurvexBlock
+> > > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/troja <> caves-1623/143/troja
+[<Cave: 1623-143>]
+> > > > > LEGS: 49 (previous: 9985, now:10034)
+> > > > - Include path found, including - caves-1623/143/hdp
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/143 <> caves-1623/143/hdp
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:hdp, creating new SurvexBlock
+> > > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/hdp <> caves-1623/143/hdp
+[<Cave: 1623-143>]
+> > > > > LEGS: 7 (previous: 10034, now:10041)
+> > > > - Include path found, including - caves-1623/143/soich
+> > > > - Match in DB (i) for cave 1623-143.
+[<Cave: 1623-143>]
+> > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/143 <> caves-1623/143/soich
+[<Cave: 1623-143>]
+[<Cave: 1623-143>]
+> > > > > - Begin found for:soich, creating new SurvexBlock
+> > > > > > - MEM:48.67578125 Reading. parent:caves-1623/143/soich <> caves-1623/143/soich
+[<Cave: 1623-143>]
+> > > > > LEGS: 6 (previous: 10041, now:10047)
+> > > > LEGS: 441 (previous: 9606, now:10047)
+> > > - Include path found, including - caves-1623/144/144
+> > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > - MEM:48.67578125 Reading. parent:kataster/1623 <> caves-1623/144/144
+[<Cave: 1623-144>]
+> > > > - Begin found for:144, creating new SurvexBlock
+> > > > > - MEM:48.6796875 Reading. parent:caves-1623/144/144 <> caves-1623/144/144
+[<Cave: 1623-144>]
+> > > > - Include path found, including - caves-1623/144/144ein
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6796875 Reading. parent:caves-1623/144/144 <> caves-1623/144/144ein
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:144ein, creating new SurvexBlock
+> > > > > > - MEM:48.6875 Reading. parent:caves-1623/144/144ein <> caves-1623/144/144ein
+[<Cave: 1623-144>]
+> > > > > LEGS: 26 (previous: 10047, now:10073)
+> > > > - Include path found, including - caves-1623/144/144horiz
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.69140625 Reading. parent:caves-1623/144/144 <> caves-1623/144/144horiz
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:144horiz, creating new SurvexBlock
+> > > > > > - MEM:48.6953125 Reading. parent:caves-1623/144/144horiz <> caves-1623/144/144horiz
+[<Cave: 1623-144>]
+> > > > > LEGS: 46 (previous: 10073, now:10119)
+> > > > - Include path found, including - caves-1623/144/144verb
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.6953125 Reading. parent:caves-1623/144/144 <> caves-1623/144/144verb
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:144verb, creating new SurvexBlock
+> > > > > > - MEM:48.70703125 Reading. parent:caves-1623/144/144verb <> caves-1623/144/144verb
+[<Cave: 1623-144>]
+> > > > > LEGS: 49 (previous: 10119, now:10168)
+> > > > - Include path found, including - caves-1623/144/America
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.70703125 Reading. parent:caves-1623/144/144 <> caves-1623/144/America
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:america, creating new SurvexBlock
+> > > > > > - MEM:48.71875 Reading. parent:caves-1623/144/America <> caves-1623/144/America
+[<Cave: 1623-144>]
+> > > > > LEGS: 117 (previous: 10168, now:10285)
+> > > > - Include path found, including - caves-1623/144/cuccrest
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/144 <> caves-1623/144/cuccrest
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:cuccrest, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/cuccrest <> caves-1623/144/cuccrest
+[<Cave: 1623-144>]
+> > > > > LEGS: 24 (previous: 10285, now:10309)
+> > > > - Include path found, including - caves-1623/144/ElfUhr
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/144 <> caves-1623/144/ElfUhr
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:elfuhr, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/ElfUhr <> caves-1623/144/ElfUhr
+[<Cave: 1623-144>]
+> > > > > LEGS: 18 (previous: 10309, now:10327)
+> > > > - Include path found, including - caves-1623/144/gang
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/144 <> caves-1623/144/gang
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:gang, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/gang <> caves-1623/144/gang
+[<Cave: 1623-144>]
+> > > > > LEGS: 88 (previous: 10327, now:10415)
+> > > > - Include path found, including - caves-1623/144/Meander
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/144 <> caves-1623/144/Meander
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:meander, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/Meander <> caves-1623/144/Meander
+[<Cave: 1623-144>]
+> > > > > LEGS: 98 (previous: 10415, now:10513)
+> > > > - Include path found, including - caves-1623/144/me2
+> > > > - Match in DB (i) for cave 1623-144.
+[<Cave: 1623-144>]
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/144 <> caves-1623/144/me2
+[<Cave: 1623-144>]
+[<Cave: 1623-144>]
+> > > > > - Begin found for:me2, creating new SurvexBlock
+> > > > > > - MEM:48.7265625 Reading. parent:caves-1623/144/me2 <> caves-1623/144/me2
+[<Cave: 1623-144>]
+> > > > > LEGS: 15 (previous: 10513, now:10528)
+> > > > LEGS: 481 (previous: 10047, now:10528)
+> > > - Include path found, including - caves-1623/158/158
+> > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > - MEM:48.7265625 Reading. parent:kataster/1623 <> caves-1623/158/158
+[<Cave: 1623-158>]
+> > > > - Begin found for:158, creating new SurvexBlock
+> > > > > - MEM:48.7265625 Reading. parent:caves-1623/158/158 <> caves-1623/158/158
+[<Cave: 1623-158>]
+> > > > - Include path found, including - caves-1623/158/nagellackentferner
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.76171875 Reading. parent:caves-1623/158/158 <> caves-1623/158/nagellackentferner
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:nagellackentferner, creating new SurvexBlock
+> > > > > > - MEM:48.76171875 Reading. parent:caves-1623/158/nagellackentferner <> caves-1623/158/nagellackentferner
+[<Cave: 1623-158>]
+> > > > > LEGS: 88 (previous: 10528, now:10616)
+> > > > - Include path found, including - caves-1623/158/bigberta
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.76171875 Reading. parent:caves-1623/158/158 <> caves-1623/158/bigberta
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:bigberta, creating new SurvexBlock
+> > > > > > - MEM:48.76171875 Reading. parent:caves-1623/158/bigberta <> caves-1623/158/bigberta
+[<Cave: 1623-158>]
+> > > > > LEGS: 71 (previous: 10616, now:10687)
+> > > > - Include path found, including - caves-1623/158/fruttidelmare
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.76171875 Reading. parent:caves-1623/158/158 <> caves-1623/158/fruttidelmare
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:fruttidelmare, creating new SurvexBlock
+> > > > > > - MEM:48.76171875 Reading. parent:caves-1623/158/fruttidelmare <> caves-1623/158/fruttidelmare
+[<Cave: 1623-158>]
+> > > > > LEGS: 40 (previous: 10687, now:10727)
+> > > > - Include path found, including - caves-1623/158/lasvegas
+> > > > - Match in DB (i) for cave 1623-158.
+[<Cave: 1623-158>]
+> > > > > - MEM:48.765625 Reading. parent:caves-1623/158/158 <> caves-1623/158/lasvegas
+[<Cave: 1623-158>]
+[<Cave: 1623-158>]
+> > > > > - Begin found for:lasvegas, creating new SurvexBlock
+> > > > > > - MEM:48.765625 Reading. parent:caves-1623/158/lasvegas <> caves-1623/158/lasvegas
+[<Cave: 1623-158>]
+> > > > > LEGS: 91 (previous: 10727, now:10818)
+> > > > LEGS: 290 (previous: 10528, now:10818)
+> > > - Include path found, including - caves-1623/216/216
+> > > - Match in DB (i) for cave 1623-216.
+[<Cave: 1623-216>]
+> > > > - MEM:48.765625 Reading. parent:kataster/1623 <> caves-1623/216/216
+[<Cave: 1623-216>]
+> > > > - Begin found for:216, creating new SurvexBlock
+> > > > > - MEM:48.76953125 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+[<Cave: 1623-216>]
+[<Cave: 1623-216>]
+> > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > - MEM:48.76953125 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+[<Cave: 1623-216>]
+> > > > LEGS: 1 (previous: 10835, now:10836)
+> > - Include path found, including - caves-1623/caves-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-north
+> > > - MEM:48.76953125 Reading. parent:kataster/1623 <> caves-1623/caves-smk-north
+> > > - Include path found, including - caves-1623/links-smk-north
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > > - MEM:48.76953125 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > > - Include path found, including - caves-1623/links204-258
+> > > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > > - MEM:48.76953125 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > > - Include path found, including - caves-1623/links161-204
+> > > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > > - MEM:48.76953125 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > > - Include path found, including - caves-1623/83/83
+> > > - Match in DB (i) for cave 1623-83.
+[<Cave: 1623-83>]
+> > > > - MEM:48.76953125 Reading. parent:kataster/1623 <> caves-1623/83/83
+[<Cave: 1623-83>]
+> > > > - Begin found for:107entsingleleg, creating new SurvexBlock
+> > > > > - MEM:48.76953125 Reading. parent:caves-1623/83/83 <> caves-1623/83/83
+[<Cave: 1623-83>]
+> > > > LEGS: 1 (previous: 10836, now:10837)
+> > > - Include path found, including - caves-1623/107/107
+> > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > - MEM:48.80859375 Reading. parent:kataster/1623 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > - Begin found for:107, creating new SurvexBlock
+> > > > > - MEM:48.83203125 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > - Include path found, including - caves-1623/107/ent
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.87109375 Reading. parent:caves-1623/107/107 <> caves-1623/107/ent
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > > - MEM:48.91015625 Reading. parent:caves-1623/107/ent <> caves-1623/107/ent
+[<Cave: 1623-107>]
+> > > > > LEGS: 20 (previous: 10837, now:10857)
+> > > > - Include path found, including - caves-1623/107/fake
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.9375 Reading. parent:caves-1623/107/107 <> caves-1623/107/fake
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for:fake, creating new SurvexBlock
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/107/fake <> caves-1623/107/fake
+[<Cave: 1623-107>]
+> > > > > LEGS: 0 (previous: 10857, now:10857)
+> > > > - Include path found, including - caves-1623/107/ext
+> > > > - Match in DB (i) for cave 1623-107.
+[<Cave: 1623-107>]
+> > > > > - MEM:48.94140625 Reading. parent:caves-1623/107/107 <> caves-1623/107/ext
+[<Cave: 1623-107>]
+[<Cave: 1623-107>]
+> > > > > - Begin found for:ext, creating new SurvexBlock
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/107/ext <> caves-1623/107/ext
+[<Cave: 1623-107>]
+> > > > > LEGS: 20 (previous: 10857, now:10877)
+[<Cave: 1623-107>]
+> > > > - Begin found for:connectingleg, creating new SurvexBlock
+> > > > > - MEM:48.94140625 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+[<Cave: 1623-107>]
+> > > > LEGS: 1 (previous: 10877, now:10878)
+> > > - Include path found, including - caves-1623/136/136-correct
+> > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > - MEM:48.94140625 Reading. parent:kataster/1623 <> caves-1623/136/136-correct
+[<Cave: 1623-136>]
+> > > > - Begin found for:136, creating new SurvexBlock
+> > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/136-correct
+[<Cave: 1623-136>]
+> > > > - Include path found, including - caves-1623/136/main
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/main
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/main <> caves-1623/136/main
+[<Cave: 1623-136>]
+> > > > > LEGS: 32 (previous: 10878, now:10910)
+> > > > - Include path found, including - caves-1623/136/ents
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/ents
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:morent, creating new SurvexBlock
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/ents <> caves-1623/136/ents
+[<Cave: 1623-136>]
+> > > > > LEGS: 11 (previous: 10910, now:10921)
+> > > > - Include path found, including - caves-1623/136/chile/chile
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/chile/chile
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:chile, creating new SurvexBlock
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/chile
+[<Cave: 1623-136>]
+> > > > > - Include path found, including - caves-1623/136/chile/oatso
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/oatso
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:oatso, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/oatso <> caves-1623/136/chile/oatso
+[<Cave: 1623-136>]
+> > > > > > LEGS: 13 (previous: 10921, now:10934)
+> > > > > - Include path found, including - caves-1623/136/chile/ovrshoot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:overshoot, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 10 (previous: 10934, now:10944)
+> > > > > - Include path found, including - caves-1623/136/chile/lostspce
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:lostinspace, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+[<Cave: 1623-136>]
+> > > > > > LEGS: 13 (previous: 10944, now:10957)
+> > > > > - Include path found, including - caves-1623/136/chile/windybot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/windybot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:windybottom, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/windybot <> caves-1623/136/chile/windybot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 4 (previous: 10957, now:10961)
+> > > > > - Include path found, including - caves-1623/136/chile/breeze
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/breeze
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:breezethrough, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/breeze <> caves-1623/136/chile/breeze
+[<Cave: 1623-136>]
+> > > > > > LEGS: 9 (previous: 10961, now:10970)
+> > > > > - Include path found, including - caves-1623/136/chile/watershoot
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/watershoot
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:watershoot, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/watershoot <> caves-1623/136/chile/watershoot
+[<Cave: 1623-136>]
+> > > > > > LEGS: 12 (previous: 10970, now:10982)
+> > > > > - Include path found, including - caves-1623/136/chile/leftroute
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/leftroute
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:leftroute, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/leftroute <> caves-1623/136/chile/leftroute
+[<Cave: 1623-136>]
+> > > > > > LEGS: 7 (previous: 10982, now:10989)
+> > > > > - Include path found, including - caves-1623/136/chile/runnyb
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/runnyb
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:runnybowels, creating new SurvexBlock
+> > > > > > > - MEM:48.94140625 Reading. parent:caves-1623/136/chile/runnyb <> caves-1623/136/chile/runnyb
+[<Cave: 1623-136>]
+> > > > > > LEGS: 38 (previous: 10989, now:11027)
+> > > > > - Include path found, including - caves-1623/136/chile/carpetworld
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/carpetworld
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:carpetworld, creating new SurvexBlock
+> > > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/carpetworld <> caves-1623/136/chile/carpetworld
+[<Cave: 1623-136>]
+> > > > > > LEGS: 7 (previous: 11027, now:11034)
+> > > > > - Include path found, including - caves-1623/136/chile/pebbled
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/pebbled
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:pebbled1, creating new SurvexBlock
+> > > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/pebbled <> caves-1623/136/chile/pebbled
+[<Cave: 1623-136>]
+> > > > > > LEGS: 8 (previous: 11034, now:11042)
+> > > > > - Include path found, including - caves-1623/136/chile/left2route
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/left2route
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:left2route, creating new SurvexBlock
+> > > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/left2route <> caves-1623/136/chile/left2route
+[<Cave: 1623-136>]
+> > > > > > LEGS: 9 (previous: 11042, now:11051)
+> > > > > - Include path found, including - caves-1623/136/chile/aven
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:aven, creating new SurvexBlock
+> > > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/aven <> caves-1623/136/chile/aven
+[<Cave: 1623-136>]
+> > > > > > LEGS: 4 (previous: 11051, now:11055)
+> > > > > - Include path found, including - caves-1623/136/chile/aven2
+> > > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven2
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > > - Begin found for:aven2, creating new SurvexBlock
+> > > > > > > - MEM:48.9453125 Reading. parent:caves-1623/136/chile/aven2 <> caves-1623/136/chile/aven2
+[<Cave: 1623-136>]
+> > > > > > LEGS: 3 (previous: 11055, now:11058)
+> > > > > LEGS: 137 (previous: 10921, now:11058)
+> > > > - Include path found, including - caves-1623/136/forbiden
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:48.953125 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/forbiden
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:hotmc, creating new SurvexBlock
+> > > > > > - MEM:48.95703125 Reading. parent:caves-1623/136/forbiden <> caves-1623/136/forbiden
+[<Cave: 1623-136>]
+> > > > > LEGS: 28 (previous: 11058, now:11086)
+> > > > - Include path found, including - caves-1623/136/gravel
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:49.01171875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/gravel
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:gravel, creating new SurvexBlock
+> > > > > > - MEM:49.01171875 Reading. parent:caves-1623/136/gravel <> caves-1623/136/gravel
+[<Cave: 1623-136>]
+> > > > > LEGS: 21 (previous: 11086, now:11107)
+> > > > - Include path found, including - caves-1623/136/footconn
+> > > > - Match in DB (i) for cave 1623-136.
+[<Cave: 1623-136>]
+> > > > > - MEM:49.01171875 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/footconn
+[<Cave: 1623-136>]
+[<Cave: 1623-136>]
+> > > > > - Begin found for:footconn, creating new SurvexBlock
+> > > > > > - MEM:49.01171875 Reading. parent:caves-1623/136/footconn <> caves-1623/136/footconn
+[<Cave: 1623-136>]
+> > > > > LEGS: 5 (previous: 11107, now:11112)
+> > > > LEGS: 234 (previous: 10878, now:11112)
+> > > - Include path found, including - caves-1623/161/161
+> > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > - MEM:49.01171875 Reading. parent:kataster/1623 <> caves-1623/161/161
+[<Cave: 1623-161>]
+> > > > - Begin found for:161, creating new SurvexBlock
+> > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/161
+[<Cave: 1623-161>]
+> > > > - Include path found, including - caves-1623/161/top/alltop
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/alltop
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/top/entrance
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/entrance
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > > > - MEM:49.01171875 Reading. parent:caves-1623/161/top/entrance <> caves-1623/161/top/entrance
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 11112, now:11127)
+> > > > > - Include path found, including - caves-1623/161/top/oldp2
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/oldp2
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldp2, creating new SurvexBlock
+> > > > > > > - MEM:49.015625 Reading. parent:caves-1623/161/top/oldp2 <> caves-1623/161/top/oldp2
+[<Cave: 1623-161>]
+> > > > > > LEGS: 3 (previous: 11127, now:11130)
+> > > > > - Include path found, including - caves-1623/161/top/snot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/snot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:snot, creating new SurvexBlock
+> > > > > > > - MEM:49.015625 Reading. parent:caves-1623/161/top/snot <> caves-1623/161/top/snot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11130, now:11154)
+> > > > - Include path found, including - caves-1623/161/lhr/alllhr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/alllhr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/lhr/lhroute
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/lhroute
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:lh, creating new SurvexBlock
+> > > > > > > - MEM:49.015625 Reading. parent:caves-1623/161/lhr/lhroute <> caves-1623/161/lhr/lhroute
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 11154, now:11177)
+> > > > > - Include path found, including - caves-1623/161/lhr/ragnarok
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.0703125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ragnarok
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ragnarok, creating new SurvexBlock
+> > > > > > > - MEM:49.0703125 Reading. parent:caves-1623/161/lhr/ragnarok <> caves-1623/161/lhr/ragnarok
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11177, now:11188)
+> > > > > - Include path found, including - caves-1623/161/lhr/drunk
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.0703125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:drunk, creating new SurvexBlock
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11188, now:11200)
+> > > > > - Include path found, including - caves-1623/161/lhr/gparty
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:gparty, creating new SurvexBlock
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1st, creating new SurvexBlock
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 11200, now:11210)
+> > > > > - Include path found, including - caves-1623/161/lhr/powerstn
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/powerstn
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:powerstn, creating new SurvexBlock
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/powerstn <> caves-1623/161/lhr/powerstn
+[<Cave: 1623-161>]
+> > > > > > LEGS: 29 (previous: 11210, now:11239)
+> > > > > - Include path found, including - caves-1623/161/lhr/arrow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ptchrp, creating new SurvexBlock
+> > > > > > > - MEM:49.078125 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:49.0859375 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11239, now:11263)
+> > > > > - Include path found, including - caves-1623/161/lhr/ambi
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12109375 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ambi, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 11263, now:11271)
+> > > > - Include path found, including - caves-1623/161/rhr/allrhr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/allrhr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/rhr/chunnel
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.12890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/chunnel
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chunnel, creating new SurvexBlock
+> > > > > > > - MEM:49.13671875 Reading. parent:caves-1623/161/rhr/chunnel <> caves-1623/161/rhr/chunnel
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 11271, now:11292)
+> > > > > - Include path found, including - caves-1623/161/rhr/bladerun
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/bladerun
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bladerun, creating new SurvexBlock
+> > > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/rhr/bladerun <> caves-1623/161/rhr/bladerun
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 11292, now:11312)
+> > > > > - Include path found, including - caves-1623/161/rhr/vesta
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/vesta
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:vesta, creating new SurvexBlock
+> > > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/rhr/vesta <> caves-1623/161/rhr/vesta
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11312, now:11324)
+> > > > > - Include path found, including - caves-1623/161/rhr/pog
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pog
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:potgold, creating new SurvexBlock
+> > > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/rhr/pog <> caves-1623/161/rhr/pog
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 11324, now:11362)
+> > > > > - Include path found, including - caves-1623/161/rhr/pitpend
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pitpend, creating new SurvexBlock
+> > > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11362, now:11369)
+> > > > > - Include path found, including - caves-1623/161/rhr/tblocks
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/tblocks
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:knossos, creating new SurvexBlock
+> > > > > > > - MEM:49.16015625 Reading. parent:caves-1623/161/rhr/tblocks <> caves-1623/161/rhr/tblocks
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11369, now:11382)
+> > > > > - Include path found, including - caves-1623/161/rhr/olympus
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.1796875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:olympus, creating new SurvexBlock
+> > > > > > > - MEM:49.18359375 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11382, now:11393)
+> > > > > - Include path found, including - caves-1623/161/rhr/dreamtme
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/dreamtme
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:boltconn2, creating new SurvexBlock
+> > > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/rhr/dreamtme <> caves-1623/161/rhr/dreamtme
+[<Cave: 1623-161>]
+> > > > > > LEGS: 2 (previous: 11393, now:11395)
+> > > > > - Include path found, including - caves-1623/161/rhr/deepslp
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/deepslp
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:deepsleep, creating new SurvexBlock
+> > > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/rhr/deepslp <> caves-1623/161/rhr/deepslp
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11395, now:11407)
+> > > > > - Include path found, including - caves-1623/161/rhr/gnome
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/gnome
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:gnome, creating new SurvexBlock
+> > > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/rhr/gnome <> caves-1623/161/rhr/gnome
+[<Cave: 1623-161>]
+> > > > > > LEGS: 27 (previous: 11407, now:11434)
+> > > > > - Include path found, including - caves-1623/161/rhr/notwhat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/notwhat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:notwhat, creating new SurvexBlock
+> > > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/rhr/notwhat <> caves-1623/161/rhr/notwhat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 51 (previous: 11434, now:11485)
+> > > > > - Include path found, including - caves-1623/161/rhr/nights
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/nights
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:nightsoil, creating new SurvexBlock
+> > > > > > > - MEM:49.19140625 Reading. parent:caves-1623/161/rhr/nights <> caves-1623/161/rhr/nights
+[<Cave: 1623-161>]
+> > > > > > LEGS: 43 (previous: 11485, now:11528)
+> > > > > - Include path found, including - caves-1623/161/rhr/oral
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.21875 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/oral
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oral, creating new SurvexBlock
+> > > > > > > - MEM:49.21875 Reading. parent:caves-1623/161/rhr/oral <> caves-1623/161/rhr/oral
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 11528, now:11547)
+> > > > > - Include path found, including - caves-1623/161/rhr/splat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/splat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:splattery, creating new SurvexBlock
+> > > > > > > - MEM:49.26953125 Reading. parent:caves-1623/161/rhr/splat <> caves-1623/161/rhr/splat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 11547, now:11573)
+> > > > > - Include path found, including - caves-1623/161/rhr/revenge
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.2734375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/revenge
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:revenge, creating new SurvexBlock
+> > > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/rhr/revenge <> caves-1623/161/rhr/revenge
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 11573, now:11585)
+> > > > > - Include path found, including - caves-1623/161/rhr/doubting
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/doubting
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:doubting, creating new SurvexBlock
+> > > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/rhr/doubting <> caves-1623/161/rhr/doubting
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 11585, now:11623)
+> > > > - Include path found, including - caves-1623/161/north/allnth
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/allnth
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/north/yapate
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.27734375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/yapate
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:yapate, creating new SurvexBlock
+> > > > > > > - MEM:49.29296875 Reading. parent:caves-1623/161/north/yapate <> caves-1623/161/north/yapate
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 11623, now:11639)
+> > > > > - Include path found, including - caves-1623/161/north/flapjack
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flapjack
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:flapjack, creating new SurvexBlock
+> > > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/north/flapjack <> caves-1623/161/north/flapjack
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 11639, now:11664)
+> > > > > - Include path found, including - caves-1623/161/north/toomuch
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:toomuch, creating new SurvexBlock
+> > > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 11664, now:11683)
+> > > > > - Include path found, including - caves-1623/161/north/flatbatt
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fbs, creating new SurvexBlock
+> > > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 11683, now:11706)
+> > > > > - Include path found, including - caves-1623/161/north/dehy
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/dehy
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:cfn, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/dehy <> caves-1623/161/north/dehy
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 11706, now:11721)
+> > > > > - Include path found, including - caves-1623/161/north/gob
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:gob, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:top, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+[<Cave: 1623-161>]
+> > > > > > LEGS: 5 (previous: 11721, now:11726)
+> > > > > - Include path found, including - caves-1623/161/north/burble
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/burble
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:burblcrawl, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/burble <> caves-1623/161/north/burble
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 11726, now:11744)
+> > > > > - Include path found, including - caves-1623/161/north/pipeless
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/pipeless
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:beeconn, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/pipeless <> caves-1623/161/north/pipeless
+[<Cave: 1623-161>]
+> > > > > > LEGS: 1 (previous: 11744, now:11745)
+> > > > > - Include path found, including - caves-1623/161/north/3wisemen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/3wisemen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:3wisemen, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/3wisemen <> caves-1623/161/north/3wisemen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11745, now:11752)
+> > > > > - Include path found, including - caves-1623/161/north/further
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/further
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:further, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/further <> caves-1623/161/north/further
+[<Cave: 1623-161>]
+> > > > > > LEGS: 24 (previous: 11752, now:11776)
+> > > > > - Include path found, including - caves-1623/161/north/anglia
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/anglia
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:anglia, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/anglia <> caves-1623/161/north/anglia
+[<Cave: 1623-161>]
+> > > > > > LEGS: 28 (previous: 11776, now:11804)
+> > > > > - Include path found, including - caves-1623/161/north/siberia
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/siberia
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:siberia, creating new SurvexBlock
+> > > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/north/siberia <> caves-1623/161/north/siberia
+[<Cave: 1623-161>]
+> > > > > > LEGS: 34 (previous: 11804, now:11838)
+> > > > > - Include path found, including - caves-1623/161/north/sep
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.30859375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sep, creating new SurvexBlock
+> > > > > > > - MEM:49.3125 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:teama, creating new SurvexBlock
+> > > > > > > - MEM:49.3125 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11838, now:11851)
+> > > > > - Include path found, including - caves-1623/161/north/midnight
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/midnight
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:midnght1, creating new SurvexBlock
+> > > > > > > - MEM:49.3125 Reading. parent:caves-1623/161/north/midnight <> caves-1623/161/north/midnight
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 11851, now:11864)
+> > > > > - Include path found, including - caves-1623/161/north/logic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/logic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:logic, creating new SurvexBlock
+> > > > > > > - MEM:49.3125 Reading. parent:caves-1623/161/north/logic <> caves-1623/161/north/logic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 11864, now:11880)
+> > > > > - Include path found, including - caves-1623/161/north/psychost
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/psychost
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:psycho, creating new SurvexBlock
+> > > > > > > - MEM:49.3203125 Reading. parent:caves-1623/161/north/psychost <> caves-1623/161/north/psychost
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 11880, now:11897)
+> > > > > - Include path found, including - caves-1623/161/north/clearas
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/clearas
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:clearas, creating new SurvexBlock
+> > > > > > > - MEM:49.3203125 Reading. parent:caves-1623/161/north/clearas <> caves-1623/161/north/clearas
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 11897, now:11922)
+> > > > > - Include path found, including - caves-1623/161/north/bearbum
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3203125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bearbum
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bearbum, creating new SurvexBlock
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/bearbum <> caves-1623/161/north/bearbum
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11922, now:11931)
+> > > > > - Include path found, including - caves-1623/161/north/forgetmenot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/forgetmenot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:forgetmenot, creating new SurvexBlock
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/forgetmenot <> caves-1623/161/north/forgetmenot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 11931, now:11938)
+> > > > > - Include path found, including - caves-1623/161/north/solidrock
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/solidrock
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:solidrock, creating new SurvexBlock
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/solidrock <> caves-1623/161/north/solidrock
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11938, now:11947)
+> > > > > - Include path found, including - caves-1623/161/north/direstraits
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/direstraits
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:direstraits, creating new SurvexBlock
+> > > > > > > - MEM:49.328125 Reading. parent:caves-1623/161/north/direstraits <> caves-1623/161/north/direstraits
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 11947, now:11956)
+> > > > > - Include path found, including - caves-1623/161/north/satansitter
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/satansitter
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:satansitter, creating new SurvexBlock
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/satansitter <> caves-1623/161/north/satansitter
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 11956, now:11967)
+> > > > > - Include path found, including - caves-1623/161/north/naturalway
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:naturalway, creating new SurvexBlock
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/naturalway <> caves-1623/161/north/naturalway
+[<Cave: 1623-161>]
+> > > > > > LEGS: 39 (previous: 11967, now:12006)
+> > > > > - Include path found, including - caves-1623/161/north/6milebottom
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/6milebottom
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:6milebottom, creating new SurvexBlock
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/6milebottom <> caves-1623/161/north/6milebottom
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12006, now:12028)
+> > > > > - Include path found, including - caves-1623/161/north/sofaraway
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sofaraway
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sofaraway, creating new SurvexBlock
+> > > > > > > - MEM:49.3359375 Reading. parent:caves-1623/161/north/sofaraway <> caves-1623/161/north/sofaraway
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 12028, now:12036)
+> > > > > - Include path found, including - caves-1623/161/north/ironyoftime
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/ironyoftime
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ironyoftime, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/ironyoftime <> caves-1623/161/north/ironyoftime
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12036, now:12043)
+> > > > > - Include path found, including - caves-1623/161/north/naturalway2
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway2
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:naturalway2, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/naturalway2 <> caves-1623/161/north/naturalway2
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 12043, now:12049)
+> > > > > - Include path found, including - caves-1623/161/north/oldmen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldmen, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/oldmen <> caves-1623/161/north/oldmen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 30 (previous: 12049, now:12079)
+> > > > > - Include path found, including - caves-1623/161/north/chocolateloops
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/chocolateloops
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chocolateloops, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/chocolateloops <> caves-1623/161/north/chocolateloops
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 12079, now:12089)
+> > > > > - Include path found, including - caves-1623/161/north/mendip
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mendip
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:mendip, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/mendip <> caves-1623/161/north/mendip
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 12089, now:12100)
+> > > > > - Include path found, including - caves-1623/161/north/popcorn
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/popcorn
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:popcorn, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/popcorn <> caves-1623/161/north/popcorn
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12100, now:12112)
+> > > > > - Include path found, including - caves-1623/161/north/oldmensouth
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmensouth
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldmensouth, creating new SurvexBlock
+> > > > > > > - MEM:49.34375 Reading. parent:caves-1623/161/north/oldmensouth <> caves-1623/161/north/oldmensouth
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 12112, now:12123)
+> > > > > - Include path found, including - caves-1623/161/north/oldmenleft
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3515625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmenleft
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:oldmenleft, creating new SurvexBlock
+> > > > > > > - MEM:49.3515625 Reading. parent:caves-1623/161/north/oldmenleft <> caves-1623/161/north/oldmenleft
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12123, now:12130)
+> > > > > - Include path found, including - caves-1623/161/north/mordor
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.3984375 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mordor
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:mordor, creating new SurvexBlock
+> > > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/north/mordor <> caves-1623/161/north/mordor
+[<Cave: 1623-161>]
+> > > > > > LEGS: 35 (previous: 12130, now:12165)
+> > > > > - Include path found, including - caves-1623/161/north/bored
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bored
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bored, creating new SurvexBlock
+> > > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/north/bored <> caves-1623/161/north/bored
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 12165, now:12183)
+> > > > > - Include path found, including - caves-1623/161/north/stables
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/stables
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:stables, creating new SurvexBlock
+> > > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/north/stables <> caves-1623/161/north/stables
+[<Cave: 1623-161>]
+> > > > > > LEGS: 38 (previous: 12183, now:12221)
+> > > > > - Include path found, including - caves-1623/161/north/holeycow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.40625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/holeycow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:holeycow, creating new SurvexBlock
+> > > > > > > - MEM:49.41015625 Reading. parent:caves-1623/161/north/holeycow <> caves-1623/161/north/holeycow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 56 (previous: 12221, now:12277)
+> > > > > - Include path found, including - caves-1623/161/north/blownout
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/blownout
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:blownout, creating new SurvexBlock
+> > > > > > > - MEM:49.421875 Reading. parent:caves-1623/161/north/blownout <> caves-1623/161/north/blownout
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12277, now:12303)
+> > > > > - Include path found, including - caves-1623/161/north/sauron
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sauron
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sauron, creating new SurvexBlock
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/sauron <> caves-1623/161/north/sauron
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12303, now:12312)
+> > > > > - Include path found, including - caves-1623/161/north/soilathon
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilathon
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:soilathon, creating new SurvexBlock
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/soilathon <> caves-1623/161/north/soilathon
+[<Cave: 1623-161>]
+> > > > > > LEGS: 23 (previous: 12312, now:12335)
+> > > > > - Include path found, including - caves-1623/161/north/wellypopper
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/wellypopper
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:wellypopper, creating new SurvexBlock
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/wellypopper <> caves-1623/161/north/wellypopper
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12335, now:12357)
+> > > > > - Include path found, including - caves-1623/161/north/runnelnorth
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/runnelnorth
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:runnelnorth, creating new SurvexBlock
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/runnelnorth <> caves-1623/161/north/runnelnorth
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12357, now:12383)
+> > > > > - Include path found, including - caves-1623/161/north/soilchute
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilchute
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:soilchute, creating new SurvexBlock
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/soilchute <> caves-1623/161/north/soilchute
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12383, now:12390)
+> > > > > - Include path found, including - caves-1623/161/north/polkadot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/polkadot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:polkadot, creating new SurvexBlock
+> > > > > > > - MEM:49.42578125 Reading. parent:caves-1623/161/north/polkadot <> caves-1623/161/north/polkadot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 12390, now:12407)
+> > > > > - Include path found, including - caves-1623/161/north/larchenrepublic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/larchenrepublic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:larchenrepublic, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/north/larchenrepublic <> caves-1623/161/north/larchenrepublic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 18 (previous: 12407, now:12425)
+> > > > > - Include path found, including - caves-1623/161/north/bundestrasse
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bundestrasse
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:bundestrasse, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/north/bundestrasse <> caves-1623/161/north/bundestrasse
+[<Cave: 1623-161>]
+> > > > > > LEGS: 26 (previous: 12425, now:12451)
+> > > > > - Include path found, including - caves-1623/161/north/fbitw
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fbitw
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fbitw, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/north/fbitw <> caves-1623/161/north/fbitw
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12451, now:12467)
+> > > > > - Include path found, including - caves-1623/161/north/fallingspike
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fallingspike
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fallingspike, creating new SurvexBlock
+> > > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/north/fallingspike <> caves-1623/161/north/fallingspike
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12467, now:12474)
+> > > > > - Include path found, including - caves-1623/161/north/qualitybelays
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.44140625 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/qualitybelays
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:quality, creating new SurvexBlock
+> > > > > > > - MEM:49.4453125 Reading. parent:caves-1623/161/north/qualitybelays <> caves-1623/161/north/qualitybelays
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12474, now:12486)
+> > > > - Include path found, including - caves-1623/161/france/allfr
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/allfr
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/france/adrian
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.453125 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:adrian, creating new SurvexBlock
+> > > > > > > - MEM:49.453125 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > > - MEM:49.4609375 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12486, now:12502)
+> > > > > - Include path found, including - caves-1623/161/france/btoc
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/btoc
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:btoc, creating new SurvexBlock
+> > > > > > > - MEM:49.4609375 Reading. parent:caves-1623/161/france/btoc <> caves-1623/161/france/btoc
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12502, now:12515)
+> > > > > - Include path found, including - caves-1623/161/france/vertfran
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:france, creating new SurvexBlock
+> > > > > > > - MEM:49.4609375 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:a, creating new SurvexBlock
+> > > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+[<Cave: 1623-161>]
+> > > > > > LEGS: 10 (previous: 12515, now:12525)
+> > > > > - Include path found, including - caves-1623/161/france/algeria
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/algeria
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:algeria, creating new SurvexBlock
+> > > > > > > - MEM:49.46875 Reading. parent:caves-1623/161/france/algeria <> caves-1623/161/france/algeria
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12525, now:12539)
+> > > > > - Include path found, including - caves-1623/161/france/orient
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/orient
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:orient, creating new SurvexBlock
+> > > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/france/orient <> caves-1623/161/france/orient
+[<Cave: 1623-161>]
+> > > > > > LEGS: 30 (previous: 12539, now:12569)
+> > > > > - Include path found, including - caves-1623/161/france/missip
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.47265625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/missip
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:missip, creating new SurvexBlock
+> > > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/france/missip <> caves-1623/161/france/missip
+[<Cave: 1623-161>]
+> > > > > > LEGS: 22 (previous: 12569, now:12591)
+> > > > > - Include path found, including - caves-1623/161/france/toplo
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/toplo
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:toploader, creating new SurvexBlock
+> > > > > > > - MEM:49.4921875 Reading. parent:caves-1623/161/france/toplo <> caves-1623/161/france/toplo
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12591, now:12600)
+> > > > > - Include path found, including - caves-1623/161/france/browni
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/browni
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:brownie, creating new SurvexBlock
+> > > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/france/browni <> caves-1623/161/france/browni
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12600, now:12607)
+> > > > > - Include path found, including - caves-1623/161/france/rocky
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/rocky
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:rocky, creating new SurvexBlock
+> > > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/france/rocky <> caves-1623/161/france/rocky
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12607, now:12620)
+> > > > > - Include path found, including - caves-1623/161/france/iidriv
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/iidriv
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:infinite, creating new SurvexBlock
+> > > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/france/iidriv <> caves-1623/161/france/iidriv
+[<Cave: 1623-161>]
+> > > > > > LEGS: 27 (previous: 12620, now:12647)
+> > > > > - Include path found, including - caves-1623/161/france/bisfac
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/bisfac
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:ginger, creating new SurvexBlock
+> > > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/france/bisfac <> caves-1623/161/france/bisfac
+[<Cave: 1623-161>]
+> > > > > > LEGS: 25 (previous: 12647, now:12672)
+> > > > > - Include path found, including - caves-1623/161/france/sultans
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/sultans
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:sultans, creating new SurvexBlock
+> > > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/france/sultans <> caves-1623/161/france/sultans
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12672, now:12681)
+> > > > > - Include path found, including - caves-1623/161/france/regurg
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.49609375 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/regurg
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:regurg, creating new SurvexBlock
+> > > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/france/regurg <> caves-1623/161/france/regurg
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12681, now:12688)
+> > > > > - Include path found, including - caves-1623/161/france/room
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/room
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:room, creating new SurvexBlock
+> > > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/france/room <> caves-1623/161/france/room
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 12688, now:12708)
+> > > > > - Include path found, including - caves-1623/161/france/irrig
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.50390625 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/irrig
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:irrig, creating new SurvexBlock
+> > > > > > > - MEM:49.5078125 Reading. parent:caves-1623/161/france/irrig <> caves-1623/161/france/irrig
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12708, now:12721)
+> > > > - Include path found, including - caves-1623/161/triassic/alltrias
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.5078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/alltrias
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/triassic/triassic
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.5078125 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:triassic, creating new SurvexBlock
+> > > > > > > - MEM:49.578125 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.58984375 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+[<Cave: 1623-161>]
+> > > > > > LEGS: 41 (previous: 12721, now:12762)
+> > > > > - Include path found, including - caves-1623/161/triassic/palace
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/palace
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:palace, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/palace <> caves-1623/161/triassic/palace
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 12762, now:12768)
+> > > > > - Include path found, including - caves-1623/161/triassic/teapot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/teapot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:teapot, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/teapot <> caves-1623/161/triassic/teapot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 12768, now:12788)
+> > > > > - Include path found, including - caves-1623/161/triassic/snug
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/snug
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:snug, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/snug <> caves-1623/161/triassic/snug
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12788, now:12809)
+> > > > > - Include path found, including - caves-1623/161/triassic/altuni
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/altuni
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:altuni, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/altuni <> caves-1623/161/triassic/altuni
+[<Cave: 1623-161>]
+> > > > > > LEGS: 33 (previous: 12809, now:12842)
+> > > > > - Include path found, including - caves-1623/161/triassic/hymen
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/hymen
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:hymen, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/hymen <> caves-1623/161/triassic/hymen
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 12842, now:12851)
+> > > > > - Include path found, including - caves-1623/161/triassic/magicjum
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/magicjum
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:magicjumars, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/magicjum <> caves-1623/161/triassic/magicjum
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12851, now:12863)
+> > > > > - Include path found, including - caves-1623/161/triassic/fogies
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fogies
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fogies, creating new SurvexBlock
+> > > > > > > - MEM:49.59765625 Reading. parent:caves-1623/161/triassic/fogies <> caves-1623/161/triassic/fogies
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 12863, now:12882)
+> > > > > - Include path found, including - caves-1623/161/triassic/keinzimm
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/keinzimm
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:keinzimmer, creating new SurvexBlock
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/triassic/keinzimm <> caves-1623/161/triassic/keinzimm
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12882, now:12903)
+> > > > > - Include path found, including - caves-1623/161/triassic/lostworl
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:lostworld, creating new SurvexBlock
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:downstream, creating new SurvexBlock
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 12903, now:12910)
+> > > > > - Include path found, including - caves-1623/161/triassic/tapeworm
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/tapeworm
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:tapeworm, creating new SurvexBlock
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/triassic/tapeworm <> caves-1623/161/triassic/tapeworm
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12910, now:12924)
+> > > > > - Include path found, including - caves-1623/161/triassic/chaos
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chaos
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chaos, creating new SurvexBlock
+> > > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/triassic/chaos <> caves-1623/161/triassic/chaos
+[<Cave: 1623-161>]
+> > > > > > LEGS: 21 (previous: 12924, now:12945)
+> > > > > - Include path found, including - caves-1623/161/triassic/intrview
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6015625 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:interview, creating new SurvexBlock
+> > > > > > > - MEM:49.61328125 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.61328125 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+[<Cave: 1623-161>]
+> > > > > > LEGS: 12 (previous: 12945, now:12957)
+> > > > > - Include path found, including - caves-1623/161/triassic/fcr
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fcr
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:fcr, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/fcr <> caves-1623/161/triassic/fcr
+[<Cave: 1623-161>]
+> > > > > > LEGS: 14 (previous: 12957, now:12971)
+> > > > > - Include path found, including - caves-1623/161/triassic/chosspot
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chosspot
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:chosspot, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/chosspot <> caves-1623/161/triassic/chosspot
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 12971, now:12984)
+> > > > > - Include path found, including - caves-1623/161/triassic/henricat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:henricat, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 12984, now:13000)
+> > > > > - Include path found, including - caves-1623/161/triassic/ovflow
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/ovflow
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:overflow, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/ovflow <> caves-1623/161/triassic/ovflow
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 13000, now:13006)
+> > > > > - Include path found, including - caves-1623/161/triassic/eaunat
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/eaunat
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:eaunatlink, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/eaunat <> caves-1623/161/triassic/eaunat
+[<Cave: 1623-161>]
+> > > > > > LEGS: 1 (previous: 13006, now:13007)
+> > > > > - Include path found, including - caves-1623/161/triassic/scorchio
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/scorchio
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:scorchio, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/triassic/scorchio <> caves-1623/161/triassic/scorchio
+[<Cave: 1623-161>]
+> > > > > > LEGS: 6 (previous: 13007, now:13013)
+> > > > - Include path found, including - caves-1623/161/phumour/allphs
+> > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/allphs
+[<Cave: 1623-161>]
+> > > > > - Include path found, including - caves-1623/161/phumour/thighs
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/thighs
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:thighs, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/phumour/thighs <> caves-1623/161/phumour/thighs
+[<Cave: 1623-161>]
+> > > > > > LEGS: 17 (previous: 13013, now:13030)
+> > > > > - Include path found, including - caves-1623/161/phumour/venereal
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/venereal
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:venereal, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/phumour/venereal <> caves-1623/161/phumour/venereal
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13030, now:13041)
+> > > > > - Include path found, including - caves-1623/161/phumour/natural
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/natural
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:natural, creating new SurvexBlock
+> > > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/phumour/natural <> caves-1623/161/phumour/natural
+[<Cave: 1623-161>]
+> > > > > > LEGS: 9 (previous: 13041, now:13050)
+> > > > > - Include path found, including - caves-1623/161/phumour/deadbats
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.6171875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/deadbats
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:deadbats, creating new SurvexBlock
+> > > > > > > - MEM:49.62109375 Reading. parent:caves-1623/161/phumour/deadbats <> caves-1623/161/phumour/deadbats
+[<Cave: 1623-161>]
+> > > > > > LEGS: 41 (previous: 13050, now:13091)
+> > > > > - Include path found, including - caves-1623/161/phumour/loopy
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.62109375 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/loopy
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:loopy, creating new SurvexBlock
+> > > > > > > - MEM:49.62109375 Reading. parent:caves-1623/161/phumour/loopy <> caves-1623/161/phumour/loopy
+[<Cave: 1623-161>]
+> > > > > > LEGS: 8 (previous: 13091, now:13099)
+> > > > > - Include path found, including - caves-1623/161/phumour/catwoman
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catwoman
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:catwoman, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/catwoman <> caves-1623/161/phumour/catwoman
+[<Cave: 1623-161>]
+> > > > > > LEGS: 16 (previous: 13099, now:13115)
+> > > > > - Include path found, including - caves-1623/161/phumour/wheretwb
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/wheretwb
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:wheretwb, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/wheretwb <> caves-1623/161/phumour/wheretwb
+[<Cave: 1623-161>]
+> > > > > > LEGS: 13 (previous: 13115, now:13128)
+> > > > > - Include path found, including - caves-1623/161/phumour/asturias
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/asturias
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:asturias, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/asturias <> caves-1623/161/phumour/asturias
+[<Cave: 1623-161>]
+> > > > > > LEGS: 19 (previous: 13128, now:13147)
+> > > > > - Include path found, including - caves-1623/161/phumour/catshfts
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catshfts
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:shafts1, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/catshfts <> caves-1623/161/phumour/catshfts
+[<Cave: 1623-161>]
+> > > > > > LEGS: 2 (previous: 13147, now:13149)
+> > > > > - Include path found, including - caves-1623/161/phumour/shaftmin
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/shaftmin
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:shaftmin, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/shaftmin <> caves-1623/161/phumour/shaftmin
+[<Cave: 1623-161>]
+> > > > > > LEGS: 7 (previous: 13149, now:13156)
+> > > > > - Include path found, including - caves-1623/161/phumour/pudding
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/pudding
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:pudding, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/pudding <> caves-1623/161/phumour/pudding
+[<Cave: 1623-161>]
+> > > > > > LEGS: 20 (previous: 13156, now:13176)
+> > > > > - Include path found, including - caves-1623/161/phumour/iceland
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/iceland
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:iceland1, creating new SurvexBlock
+> > > > > > > - MEM:49.625 Reading. parent:caves-1623/161/phumour/iceland <> caves-1623/161/phumour/iceland
+[<Cave: 1623-161>]
+> > > > > > LEGS: 15 (previous: 13176, now:13191)
+> > > > > - Include path found, including - caves-1623/161/phumour/turkey
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.62890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/turkey
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:turkey, creating new SurvexBlock
+> > > > > > > - MEM:49.62890625 Reading. parent:caves-1623/161/phumour/turkey <> caves-1623/161/phumour/turkey
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13191, now:13202)
+> > > > > - Include path found, including - caves-1623/161/phumour/161g
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.62890625 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:161g, creating new SurvexBlock
+> > > > > > > - MEM:49.62890625 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:161g_1, creating new SurvexBlock
+> > > > > > > - MEM:49.6328125 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+[<Cave: 1623-161>]
+> > > > > > LEGS: 4 (previous: 13202, now:13206)
+> > > > > - Include path found, including - caves-1623/161/phumour/161h
+> > > > > - Match in DB (i) for cave 1623-161.
+[<Cave: 1623-161>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161h
+[<Cave: 1623-161>]
+[<Cave: 1623-161>]
+> > > > > > - Begin found for:161h, creating new SurvexBlock
+> > > > > > > - MEM:49.63671875 Reading. parent:caves-1623/161/phumour/161h <> caves-1623/161/phumour/161h
+[<Cave: 1623-161>]
+> > > > > > LEGS: 11 (previous: 13206, now:13217)
+> > > > LEGS: 2105 (previous: 11112, now:13217)
+> > > - Include path found, including - caves-1623/204/204
+> > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > - MEM:49.63671875 Reading. parent:kataster/1623 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > - Begin found for:204, creating new SurvexBlock
+> > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > - Include path found, including - caves-1623/204/nearend/nearend
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/204 <> caves-1623/204/nearend/nearend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:nearend, creating new SurvexBlock
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/nearend
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/nearend/ent
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.63671875 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/ent
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/ent <> caves-1623/204/nearend/ent
+[<Cave: 1623-204>]
+> > > > > > LEGS: 39 (previous: 13218, now:13257)
+> > > > > - Include path found, including - caves-1623/204/nearend/link
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/link
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:link, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/link <> caves-1623/204/nearend/link
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 13257, now:13259)
+> > > > > - Include path found, including - caves-1623/204/nearend/junction
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/junction
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:junction, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/junction <> caves-1623/204/nearend/junction
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13259, now:13263)
+> > > > > - Include path found, including - caves-1623/204/nearend/updip
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/updip
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:updip, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/updip <> caves-1623/204/nearend/updip
+[<Cave: 1623-204>]
+> > > > > > LEGS: 11 (previous: 13263, now:13274)
+> > > > > - Include path found, including - caves-1623/204/nearend/stitchthis
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/stitchthis
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stitchthis, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/stitchthis <> caves-1623/204/nearend/stitchthis
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13274, now:13279)
+> > > > > - Include path found, including - caves-1623/204/nearend/kingcarbide
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kingcarbide
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kingcarbide, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/kingcarbide <> caves-1623/204/nearend/kingcarbide
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13279, now:13289)
+> > > > > - Include path found, including - caves-1623/204/nearend/kidney
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kidney
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kidney, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/kidney <> caves-1623/204/nearend/kidney
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13289, now:13297)
+> > > > > - Include path found, including - caves-1623/204/nearend/atob
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/atob
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:atob, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/atob <> caves-1623/204/nearend/atob
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13297, now:13300)
+> > > > > - Include path found, including - caves-1623/204/nearend/deathglory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/deathglory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:deathglory, creating new SurvexBlock
+> > > > > > > - MEM:49.64453125 Reading. parent:caves-1623/204/nearend/deathglory <> caves-1623/204/nearend/deathglory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 13300, now:13313)
+> > > > > LEGS: 95 (previous: 13218, now:13313)
+> > > > - Include path found, including - caves-1623/204/midlevel/midlevel
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/204 <> caves-1623/204/midlevel/midlevel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:midlevel, creating new SurvexBlock
+> > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/midlevel
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/midlevel/pendulum
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pendulum
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pendulum, creating new SurvexBlock
+> > > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/pendulum <> caves-1623/204/midlevel/pendulum
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 13313, now:13333)
+> > > > > - Include path found, including - caves-1623/204/midlevel/veined
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:veined, creating new SurvexBlock
+> > > > > > > - MEM:49.6484375 Reading. parent:caves-1623/204/midlevel/veined <> caves-1623/204/midlevel/veined
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 13333, now:13349)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110aday
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.65234375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110aday, creating new SurvexBlock
+> > > > > > > - MEM:49.65234375 Reading. parent:caves-1623/204/midlevel/110aday <> caves-1623/204/midlevel/110aday
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 13349, now:13373)
+> > > > > - Include path found, including - caves-1623/204/midlevel/rainbow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/rainbow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rainbow, creating new SurvexBlock
+> > > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/rainbow <> caves-1623/204/midlevel/rainbow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 13373, now:13388)
+> > > > > - Include path found, including - caves-1623/204/midlevel/phreatic
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phreatic
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:phreatic, creating new SurvexBlock
+> > > > > > > - MEM:49.6640625 Reading. parent:caves-1623/204/midlevel/phreatic <> caves-1623/204/midlevel/phreatic
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 13388, now:13395)
+> > > > > - Include path found, including - caves-1623/204/midlevel/aday2bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.66796875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/aday2bidet
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:aday2bidet, creating new SurvexBlock
+> > > > > > > - MEM:49.66796875 Reading. parent:caves-1623/204/midlevel/aday2bidet <> caves-1623/204/midlevel/aday2bidet
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13395, now:13400)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110_bidet_b
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet_b
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110_bidet_b, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/110_bidet_b <> caves-1623/204/midlevel/110_bidet_b
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13400, now:13404)
+> > > > > - Include path found, including - caves-1623/204/midlevel/veined_deadend
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined_deadend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:veined_deadend, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/veined_deadend <> caves-1623/204/midlevel/veined_deadend
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13404, now:13407)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110_bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110_bidet, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/110_bidet <> caves-1623/204/midlevel/110_bidet
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 13407, now:13420)
+> > > > > - Include path found, including - caves-1623/204/midlevel/marble_run
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/marble_run
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:marble_run, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/marble_run <> caves-1623/204/midlevel/marble_run
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 13420, now:13429)
+> > > > > - Include path found, including - caves-1623/204/midlevel/botofwolpertinger1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:botofwolpertinger1, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/botofwolpertinger1 <> caves-1623/204/midlevel/botofwolpertinger1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 13429, now:13435)
+> > > > > - Include path found, including - caves-1623/204/midlevel/botofwolpertinger2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:botofwolpertinger2, creating new SurvexBlock
+> > > > > > > - MEM:49.671875 Reading. parent:caves-1623/204/midlevel/botofwolpertinger2 <> caves-1623/204/midlevel/botofwolpertinger2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13435, now:13445)
+> > > > > - Include path found, including - caves-1623/204/midlevel/merry
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/merry
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merry, creating new SurvexBlock
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/merry <> caves-1623/204/midlevel/merry
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 13445, now:13463)
+> > > > > - Include path found, including - caves-1623/204/midlevel/recycled
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/recycled
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:recycled, creating new SurvexBlock
+> > > > > > > - MEM:49.67578125 Reading. parent:caves-1623/204/midlevel/recycled <> caves-1623/204/midlevel/recycled
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13463, now:13471)
+> > > > > - Include path found, including - caves-1623/204/midlevel/upat45deg
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:upat45deg, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/upat45deg <> caves-1623/204/midlevel/upat45deg
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 13471, now:13485)
+> > > > > - Include path found, including - caves-1623/204/midlevel/110aday2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:110aday2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/110aday2 <> caves-1623/204/midlevel/110aday2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13485, now:13488)
+> > > > > - Include path found, including - caves-1623/204/midlevel/upat45deg2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:upat45deg2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/upat45deg2 <> caves-1623/204/midlevel/upat45deg2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 13488, now:13489)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussyprance
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pussyprance, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/pussyprance <> caves-1623/204/midlevel/pussyprance
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 13489, now:13518)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussyprance2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pussyprance2, creating new SurvexBlock
+> > > > > > > - MEM:49.68359375 Reading. parent:caves-1623/204/midlevel/pussyprance2 <> caves-1623/204/midlevel/pussyprance2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 13518, now:13537)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflap, creating new SurvexBlock
+> > > > > > > - MEM:49.6875 Reading. parent:caves-1623/204/midlevel/catflap <> caves-1623/204/midlevel/catflap
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 13537, now:13559)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflap2, creating new SurvexBlock
+> > > > > > > - MEM:49.6875 Reading. parent:caves-1623/204/midlevel/catflap2 <> caves-1623/204/midlevel/catflap2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13559, now:13564)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflap3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.69140625 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflap3, creating new SurvexBlock
+> > > > > > > - MEM:49.69140625 Reading. parent:caves-1623/204/midlevel/catflap3 <> caves-1623/204/midlevel/catflap3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 13564, now:13566)
+> > > > > - Include path found, including - caves-1623/204/midlevel/paintedlady
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/paintedlady
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:paintedlady, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/midlevel/paintedlady <> caves-1623/204/midlevel/paintedlady
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13566, now:13571)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pussinbolts
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussinbolts
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pussinbolts, creating new SurvexBlock
+> > > > > > > - MEM:49.6953125 Reading. parent:caves-1623/204/midlevel/pussinbolts <> caves-1623/204/midlevel/pussinbolts
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13571, now:13576)
+> > > > > - Include path found, including - caves-1623/204/midlevel/ontheprowl
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/ontheprowl
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ontheprowl, creating new SurvexBlock
+> > > > > > > - MEM:49.69921875 Reading. parent:caves-1623/204/midlevel/ontheprowl <> caves-1623/204/midlevel/ontheprowl
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 13576, now:13593)
+> > > > > - Include path found, including - caves-1623/204/midlevel/snowleopard
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/snowleopard
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:snowleopard, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/snowleopard <> caves-1623/204/midlevel/snowleopard
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13593, now:13598)
+> > > > > - Include path found, including - caves-1623/204/midlevel/theowlandthepussycat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/theowlandthepussycat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:theowlandthepussycat, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/theowlandthepussycat <> caves-1623/204/midlevel/theowlandthepussycat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13598, now:13601)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatcat, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/fatcat <> caves-1623/204/midlevel/fatcat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 13601, now:13608)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatcat2, creating new SurvexBlock
+> > > > > > > - MEM:49.70703125 Reading. parent:caves-1623/204/midlevel/fatcat2 <> caves-1623/204/midlevel/fatcat2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13608, now:13618)
+> > > > > - Include path found, including - caves-1623/204/midlevel/fatcat3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatcat3, creating new SurvexBlock
+> > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/fatcat3 <> caves-1623/204/midlevel/fatcat3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13618, now:13623)
+> > > > > - Include path found, including - caves-1623/204/midlevel/somethingelse
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/somethingelse
+[<Cave: 1623-204>]
+> > > > > > - Include path found, including - caves-1623/204/midlevel/catgut
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catgut
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for:catgut, creating new SurvexBlock
+> > > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/catgut <> caves-1623/204/midlevel/catgut
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 14 (previous: 13623, now:13637)
+> > > > > > - Include path found, including - caves-1623/204/midlevel/cirquedusoleil
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/cirquedusoleil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for:cirquedusoleil, creating new SurvexBlock
+> > > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/cirquedusoleil <> caves-1623/204/midlevel/cirquedusoleil
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 9 (previous: 13637, now:13646)
+> > > > > > - Include path found, including - caves-1623/204/midlevel/pussyriot
+> > > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyriot
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > > - Begin found for:pussyriot, creating new SurvexBlock
+> > > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/pussyriot <> caves-1623/204/midlevel/pussyriot
+[<Cave: 1623-204>]
+> > > > > > > LEGS: 13 (previous: 13646, now:13659)
+> > > > > - Include path found, including - caves-1623/204/midlevel/phat2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phat2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:phat2, creating new SurvexBlock
+> > > > > > > - MEM:49.7109375 Reading. parent:caves-1623/204/midlevel/phat2 <> caves-1623/204/midlevel/phat2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 13659, now:13669)
+> > > > > - Include path found, including - caves-1623/204/midlevel/catflea
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflea
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:catflea, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/catflea <> caves-1623/204/midlevel/catflea
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 13669, now:13677)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dogdays, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/dogdays <> caves-1623/204/midlevel/dogdays
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 13677, now:13681)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dogdays2, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/dogdays2 <> caves-1623/204/midlevel/dogdays2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 13681, now:13695)
+> > > > > - Include path found, including - caves-1623/204/midlevel/farfromsupport
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/farfromsupport
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:farfromsupport, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/farfromsupport <> caves-1623/204/midlevel/farfromsupport
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13695, now:13700)
+> > > > > - Include path found, including - caves-1623/204/midlevel/dogdays3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dogdays3, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/dogdays3 <> caves-1623/204/midlevel/dogdays3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 90 (previous: 13700, now:13790)
+> > > > > - Include path found, including - caves-1623/204/midlevel/bigboulders
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/bigboulders
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:bigboulders, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/bigboulders <> caves-1623/204/midlevel/bigboulders
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 13790, now:13795)
+> > > > > - Include path found, including - caves-1623/204/midlevel/BoulderChamber
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:boulderchamber, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/BoulderChamber <> caves-1623/204/midlevel/BoulderChamber
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 13795, now:13821)
+> > > > > - Include path found, including - caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber_upper
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:boulderchamber_upper, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/BoulderChamber_upper <> caves-1623/204/midlevel/BoulderChamber_upper
+[<Cave: 1623-204>]
+> > > > > > LEGS: 64 (previous: 13821, now:13885)
+> > > > > - Include path found, including - caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/downfrombigboulderchamber
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:downfrombigboulderchamber, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/downfrombigboulderchamber <> caves-1623/204/midlevel/downfrombigboulderchamber
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 13885, now:13902)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pretzelpassage1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pretzelpassage1, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/pretzelpassage1 <> caves-1623/204/midlevel/pretzelpassage1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 13902, now:13922)
+> > > > > - Include path found, including - caves-1623/204/midlevel/pretzelpassage2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pretzelpassage2, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/midlevel/pretzelpassage2 <> caves-1623/204/midlevel/pretzelpassage2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 13922, now:13934)
+> > > > > LEGS: 621 (previous: 13313, now:13934)
+> > > > - Include path found, including - caves-1623/204/domes/domes
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/204 <> caves-1623/204/domes/domes
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:domes, creating new SurvexBlock
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/domes
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/domes/millennium
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/millennium
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:millennium, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/millennium <> caves-1623/204/domes/millennium
+[<Cave: 1623-204>]
+> > > > > > LEGS: 40 (previous: 13934, now:13974)
+> > > > > - Include path found, including - caves-1623/204/domes/pleasuredome
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/pleasuredome
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pleasuredome, creating new SurvexBlock
+> > > > > > > - MEM:49.71484375 Reading. parent:caves-1623/204/domes/pleasuredome <> caves-1623/204/domes/pleasuredome
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 13974, now:13990)
+> > > > > - Include path found, including - caves-1623/204/domes/loop22
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/loop22
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:loop22, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/loop22 <> caves-1623/204/domes/loop22
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 13990, now:13993)
+> > > > > - Include path found, including - caves-1623/204/domes/phat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/phat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:phat, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/phat <> caves-1623/204/domes/phat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 13993, now:14002)
+> > > > > - Include path found, including - caves-1623/204/domes/micturation
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/micturation
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:micturation, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/micturation <> caves-1623/204/domes/micturation
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14002, now:14010)
+> > > > > - Include path found, including - caves-1623/204/domes/obese
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/obese
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:obese, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/obese <> caves-1623/204/domes/obese
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14010, now:14013)
+> > > > > - Include path found, including - caves-1623/204/domes/allroads
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/allroads
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:allroads, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/domes/allroads <> caves-1623/204/domes/allroads
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14013, now:14019)
+> > > > > LEGS: 85 (previous: 13934, now:14019)
+> > > > - Include path found, including - caves-1623/204/deepsouth/deepsouth
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/204 <> caves-1623/204/deepsouth/deepsouth
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:deepsouth, creating new SurvexBlock
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/deepsouth
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/deepsouth/ariston1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ariston1, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/ariston1 <> caves-1623/204/deepsouth/ariston1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14019, now:14024)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/ariston2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ariston2, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/ariston2 <> caves-1623/204/deepsouth/ariston2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 14024, now:14050)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/fledermaus
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/fledermaus
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fledermaus, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/fledermaus <> caves-1623/204/deepsouth/fledermaus
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14050, now:14063)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/kiwisuit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/kiwisuit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kiwisuit, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/kiwisuit <> caves-1623/204/deepsouth/kiwisuit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14063, now:14076)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor1, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor1 <> caves-1623/204/deepsouth/razor1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 14076, now:14105)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor2, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor2 <> caves-1623/204/deepsouth/razor2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14105, now:14118)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor3, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor3 <> caves-1623/204/deepsouth/razor3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14118, now:14122)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor4, creating new SurvexBlock
+> > > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/razor4 <> caves-1623/204/deepsouth/razor4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14122, now:14134)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.7265625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor5, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor5 <> caves-1623/204/deepsouth/razor5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14134, now:14149)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor6
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor6
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor6, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor6 <> caves-1623/204/deepsouth/razor6
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14149, now:14150)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor7
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor7
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor7, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor7 <> caves-1623/204/deepsouth/razor7
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 14150, now:14176)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor8
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor8
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor8, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor8 <> caves-1623/204/deepsouth/razor8
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 14176, now:14196)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor9
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor9
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor9, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor9 <> caves-1623/204/deepsouth/razor9
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14196, now:14217)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor10
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor10
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor10, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor10 <> caves-1623/204/deepsouth/razor10
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14217, now:14238)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor11
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor11
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor11, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor11 <> caves-1623/204/deepsouth/razor11
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 14238, now:14252)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/razor12
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor12
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:razor12, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/razor12 <> caves-1623/204/deepsouth/razor12
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14252, now:14267)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkroad
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:silkroad, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/silkroad <> caves-1623/204/deepsouth/silkroad
+[<Cave: 1623-204>]
+> > > > > > LEGS: 30 (previous: 14267, now:14297)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkroad2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:silkroad2, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/silkroad2 <> caves-1623/204/deepsouth/silkroad2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14297, now:14319)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/entertheflagon
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/entertheflagon
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:entertheflagon, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/entertheflagon <> caves-1623/204/deepsouth/entertheflagon
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14319, now:14332)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/silkworm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkworm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:silkworm, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/silkworm <> caves-1623/204/deepsouth/silkworm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14332, now:14336)
+> > > > > - Include path found, including - caves-1623/204/deepsouth/crouching
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/crouching
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crouching, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/deepsouth/crouching <> caves-1623/204/deepsouth/crouching
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14336, now:14358)
+> > > > > LEGS: 339 (previous: 14019, now:14358)
+> > > > - Include path found, including - caves-1623/204/trunk/trunk
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/204 <> caves-1623/204/trunk/trunk
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:trunk, creating new SurvexBlock
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/trunk
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/trunk/nopainnogain
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/nopainnogain
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:nopainnogain, creating new SurvexBlock
+> > > > > > > - MEM:49.75390625 Reading. parent:caves-1623/204/trunk/nopainnogain <> caves-1623/204/trunk/nopainnogain
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 14358, now:14382)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:insig, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/insig <> caves-1623/204/trunk/insig
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14382, now:14389)
+> > > > > - Include path found, including - caves-1623/204/trunk/bonsai
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/bonsai
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:bonsai, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/bonsai <> caves-1623/204/trunk/bonsai
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14389, now:14395)
+> > > > > - Include path found, including - caves-1623/204/trunk/treeumphant
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeumphant
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:treeumphant, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/treeumphant <> caves-1623/204/trunk/treeumphant
+[<Cave: 1623-204>]
+> > > > > > LEGS: 27 (previous: 14395, now:14422)
+> > > > > - Include path found, including - caves-1623/204/trunk/colonade
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/colonade
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:colonade, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/colonade <> caves-1623/204/trunk/colonade
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14422, now:14430)
+> > > > > - Include path found, including - caves-1623/204/trunk/scroat
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/scroat
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:scroat, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/scroat <> caves-1623/204/trunk/scroat
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14430, now:14434)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crowningglory, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/crowningglory <> caves-1623/204/trunk/crowningglory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 40 (previous: 14434, now:14474)
+> > > > > - Include path found, including - caves-1623/204/trunk/sucker
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sucker
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sucker, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/sucker <> caves-1623/204/trunk/sucker
+[<Cave: 1623-204>]
+> > > > > > LEGS: 30 (previous: 14474, now:14504)
+> > > > > - Include path found, including - caves-1623/204/trunk/csballs
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/csballs
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:csballs, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/csballs <> caves-1623/204/trunk/csballs
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14504, now:14517)
+> > > > > - Include path found, including - caves-1623/204/trunk/moreballs
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/moreballs
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:moreballs, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/moreballs <> caves-1623/204/trunk/moreballs
+[<Cave: 1623-204>]
+> > > > > > LEGS: 22 (previous: 14517, now:14539)
+> > > > > - Include path found, including - caves-1623/204/trunk/backpassage
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/backpassage
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:backpassage, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/backpassage <> caves-1623/204/trunk/backpassage
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14539, now:14545)
+> > > > > - Include path found, including - caves-1623/204/trunk/treeslope
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeslope
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:treeslope, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/treeslope <> caves-1623/204/trunk/treeslope
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14545, now:14549)
+> > > > > - Include path found, including - caves-1623/204/trunk/tree15c
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree15c
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:tree15c, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/tree15c <> caves-1623/204/trunk/tree15c
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14549, now:14552)
+> > > > > - Include path found, including - caves-1623/204/trunk/helterskelter
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterskelter
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:helterskelter, creating new SurvexBlock
+> > > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/helterskelter <> caves-1623/204/trunk/helterskelter
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14552, now:14561)
+> > > > > - Include path found, including - caves-1623/204/trunk/gknodel
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.765625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:gknodel, creating new SurvexBlock
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:part1, creating new SurvexBlock
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14561, now:14570)
+> > > > > - Include path found, including - caves-1623/204/trunk/drillingdelight
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/drillingdelight
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:drillingdelight, creating new SurvexBlock
+> > > > > > > - MEM:49.76953125 Reading. parent:caves-1623/204/trunk/drillingdelight <> caves-1623/204/trunk/drillingdelight
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14570, now:14578)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:insig2, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/insig2 <> caves-1623/204/trunk/insig2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14578, now:14586)
+> > > > > - Include path found, including - caves-1623/204/trunk/flopsy
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/flopsy
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:flopsy, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/flopsy <> caves-1623/204/trunk/flopsy
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14586, now:14593)
+> > > > > - Include path found, including - caves-1623/204/trunk/greatoak
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:greatoak, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/greatoak <> caves-1623/204/trunk/greatoak
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14593, now:14598)
+> > > > > - Include path found, including - caves-1623/204/trunk/tree2glory
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree2glory
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:tree2glory, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/tree2glory <> caves-1623/204/trunk/tree2glory
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14598, now:14606)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sandpit, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/sandpit <> caves-1623/204/trunk/sandpit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 42 (previous: 14606, now:14648)
+> > > > > - Include path found, including - caves-1623/204/trunk/helterdig
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterdig
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:helterdig, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/helterdig <> caves-1623/204/trunk/helterdig
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14648, now:14652)
+> > > > > - Include path found, including - caves-1623/204/trunk/dontstep
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dontstep
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dontstep, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/dontstep <> caves-1623/204/trunk/dontstep
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 14652, now:14665)
+> > > > > - Include path found, including - caves-1623/204/trunk/insig2rhino
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2rhino
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:insig2rhino, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/insig2rhino <> caves-1623/204/trunk/insig2rhino
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14665, now:14669)
+> > > > > - Include path found, including - caves-1623/204/trunk/twiglets
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/twiglets
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:twiglets, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/twiglets <> caves-1623/204/trunk/twiglets
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 14669, now:14683)
+> > > > > - Include path found, including - caves-1623/204/trunk/stageleft
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/stageleft
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stageleft, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/stageleft <> caves-1623/204/trunk/stageleft
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14683, now:14690)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goesser, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/goesser <> caves-1623/204/trunk/goesser
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14690, now:14700)
+> > > > > - Include path found, including - caves-1623/204/trunk/greatoak2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:greatoak2, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/greatoak2 <> caves-1623/204/trunk/greatoak2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14700, now:14701)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:riverdance, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/riverdance <> caves-1623/204/trunk/riverdance
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14701, now:14709)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:riverdance2, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/riverdance2 <> caves-1623/204/trunk/riverdance2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14709, now:14714)
+> > > > > - Include path found, including - caves-1623/204/trunk/riverdance3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:riverdance3, creating new SurvexBlock
+> > > > > > > - MEM:49.78515625 Reading. parent:caves-1623/204/trunk/riverdance3 <> caves-1623/204/trunk/riverdance3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 14714, now:14729)
+> > > > > - Include path found, including - caves-1623/204/trunk/fingerbang
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fingerbang
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fingerbang, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/fingerbang <> caves-1623/204/trunk/fingerbang
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14729, now:14735)
+> > > > > - Include path found, including - caves-1623/204/trunk/fblink
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fblink
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fblink, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/fblink <> caves-1623/204/trunk/fblink
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 14735, now:14736)
+> > > > > - Include path found, including - caves-1623/204/trunk/dutchelm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dutchelm, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/dutchelm <> caves-1623/204/trunk/dutchelm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14736, now:14748)
+> > > > > - Include path found, including - caves-1623/204/trunk/dutchelm2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dutchelm2, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/dutchelm2 <> caves-1623/204/trunk/dutchelm2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14748, now:14750)
+> > > > > - Include path found, including - caves-1623/204/trunk/wotnosurvey
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wotnosurvey
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wotnosurvey, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/wotnosurvey <> caves-1623/204/trunk/wotnosurvey
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14750, now:14755)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goesser2, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/goesser2 <> caves-1623/204/trunk/goesser2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14755, now:14757)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crowningglory2, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/crowningglory2 <> caves-1623/204/trunk/crowningglory2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14757, now:14767)
+> > > > > - Include path found, including - caves-1623/204/trunk/crowningglory3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crowningglory3, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/crowningglory3 <> caves-1623/204/trunk/crowningglory3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 14767, now:14770)
+> > > > > - Include path found, including - caves-1623/204/trunk/11sr
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/11sr
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:11sr, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/11sr <> caves-1623/204/trunk/11sr
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 14770, now:14793)
+> > > > > - Include path found, including - caves-1623/204/trunk/swisscheese
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/swisscheese
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swisscheese, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/swisscheese <> caves-1623/204/trunk/swisscheese
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 14793, now:14814)
+> > > > > - Include path found, including - caves-1623/204/trunk/wetdry
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wetdry
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wetdry, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/wetdry <> caves-1623/204/trunk/wetdry
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14814, now:14822)
+> > > > > - Include path found, including - caves-1623/204/trunk/goesser3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goesser3, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/goesser3 <> caves-1623/204/trunk/goesser3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14822, now:14824)
+> > > > > - Include path found, including - caves-1623/204/trunk/godonlyknows
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/godonlyknows
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:godonlyknows, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/godonlyknows <> caves-1623/204/trunk/godonlyknows
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14824, now:14830)
+> > > > > - Include path found, including - caves-1623/204/trunk/goodvibrations
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goodvibrations
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:goodvibrations, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/goodvibrations <> caves-1623/204/trunk/goodvibrations
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14830, now:14835)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sandpit2, creating new SurvexBlock
+> > > > > > > - MEM:49.796875 Reading. parent:caves-1623/204/trunk/sandpit2 <> caves-1623/204/trunk/sandpit2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14835, now:14840)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pingu, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/pingu <> caves-1623/204/trunk/pingu
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14840, now:14847)
+> > > > > - Include path found, including - caves-1623/204/trunk/noodnoodles
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/noodnoodles
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:noodnoodles, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/noodnoodles <> caves-1623/204/trunk/noodnoodles
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14847, now:14852)
+> > > > > - Include path found, including - caves-1623/204/trunk/sandpit3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sandpit3, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/sandpit3 <> caves-1623/204/trunk/sandpit3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14852, now:14854)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pingu2, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/pingu2 <> caves-1623/204/trunk/pingu2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14854, now:14861)
+> > > > > - Include path found, including - caves-1623/204/trunk/pingu3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:pingu3, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/pingu3 <> caves-1623/204/trunk/pingu3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14861, now:14867)
+> > > > > - Include path found, including - caves-1623/204/trunk/appendix
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/appendix
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:appendix, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/appendix <> caves-1623/204/trunk/appendix
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14867, now:14871)
+> > > > > - Include path found, including - caves-1623/204/trunk/root
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/root
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:root, creating new SurvexBlock
+> > > > > > > - MEM:49.80859375 Reading. parent:caves-1623/204/trunk/root <> caves-1623/204/trunk/root
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14871, now:14878)
+> > > > > LEGS: 520 (previous: 14358, now:14878)
+> > > > - Include path found, including - caves-1623/204/swings/allswings
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.8125 Reading. parent:caves-1623/204/204 <> caves-1623/204/swings/allswings
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allswings, creating new SurvexBlock
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/allswings
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/swings/playground
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/playground
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:playground, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/playground <> caves-1623/204/swings/playground
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14878, now:14885)
+> > > > > - Include path found, including - caves-1623/204/swings/swings
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/swings <> caves-1623/204/swings/swings
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 14885, now:14913)
+> > > > > - Include path found, including - caves-1623/204/swings/swings2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings2, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/swings2 <> caves-1623/204/swings/swings2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14913, now:14920)
+> > > > > - Include path found, including - caves-1623/204/swings/swings3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings3, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/swings3 <> caves-1623/204/swings/swings3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14920, now:14924)
+> > > > > - Include path found, including - caves-1623/204/swings/swings4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings4, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/swings4 <> caves-1623/204/swings/swings4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 14924, now:14934)
+> > > > > - Include path found, including - caves-1623/204/swings/swings5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings5, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/swings5 <> caves-1623/204/swings/swings5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14934, now:14936)
+> > > > > - Include path found, including - caves-1623/204/swings/swings6
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings6
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings6, creating new SurvexBlock
+> > > > > > > - MEM:49.81640625 Reading. parent:caves-1623/204/swings/swings6 <> caves-1623/204/swings/swings6
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 14936, now:14940)
+> > > > > - Include path found, including - caves-1623/204/swings/swings7
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings7
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings7, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/swings7 <> caves-1623/204/swings/swings7
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 14940, now:14942)
+> > > > > - Include path found, including - caves-1623/204/swings/swings8
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings8
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings8, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/swings8 <> caves-1623/204/swings/swings8
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14942, now:14948)
+> > > > > - Include path found, including - caves-1623/204/swings/swings9
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings9
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swings9, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/swings9 <> caves-1623/204/swings/swings9
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 14948, now:14960)
+> > > > > - Include path found, including - caves-1623/204/swings/prettybits
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/prettybits
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:prettybits, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/prettybits <> caves-1623/204/swings/prettybits
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 14960, now:14968)
+> > > > > - Include path found, including - caves-1623/204/swings/juicybits
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/juicybits
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:juicybits, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/juicybits <> caves-1623/204/swings/juicybits
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 14968, now:14977)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merrygoround, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/merrygoround <> caves-1623/204/swings/merrygoround
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14977, now:14984)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merrygoround2, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/merrygoround2 <> caves-1623/204/swings/merrygoround2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 14984, now:14989)
+> > > > > - Include path found, including - caves-1623/204/swings/merrygoround3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:merrygoround3, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/merrygoround3 <> caves-1623/204/swings/merrygoround3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 14989, now:14996)
+> > > > > - Include path found, including - caves-1623/204/swings/ermintrude
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ermintrude, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/ermintrude <> caves-1623/204/swings/ermintrude
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 14996, now:15002)
+> > > > > - Include path found, including - caves-1623/204/swings/trapeze
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/trapeze
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:trapeze, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/trapeze <> caves-1623/204/swings/trapeze
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 15002, now:15010)
+> > > > > - Include path found, including - caves-1623/204/swings/crestarun
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/crestarun
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crestarun, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/crestarun <> caves-1623/204/swings/crestarun
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 15010, now:15026)
+> > > > > - Include path found, including - caves-1623/204/swings/piledriver
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/piledriver
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:piledriver, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/piledriver <> caves-1623/204/swings/piledriver
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15026, now:15032)
+> > > > > - Include path found, including - caves-1623/204/swings/toothless
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/toothless
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:toothless, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/toothless <> caves-1623/204/swings/toothless
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15032, now:15044)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopes, creating new SurvexBlock
+> > > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/highhopes <> caves-1623/204/swings/highhopes
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15044, now:15054)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83203125 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopes2, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/highhopes2 <> caves-1623/204/swings/highhopes2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 16 (previous: 15054, now:15070)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopeslink
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopeslink
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopeslink, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/highhopeslink <> caves-1623/204/swings/highhopeslink
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15070, now:15072)
+> > > > > - Include path found, including - caves-1623/204/swings/highhopes3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:highhopes3, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/highhopes3 <> caves-1623/204/swings/highhopes3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15072, now:15081)
+> > > > > - Include path found, including - caves-1623/204/swings/enth
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enth
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:enth, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/enth <> caves-1623/204/swings/enth
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 15081, now:15099)
+> > > > > - Include path found, including - caves-1623/204/swings/enti
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enti
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:enti, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/enti <> caves-1623/204/swings/enti
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15099, now:15105)
+> > > > > - Include path found, including - caves-1623/204/swings/ermintrude2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ermintrude2, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/ermintrude2 <> caves-1623/204/swings/ermintrude2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15105, now:15114)
+> > > > > - Include path found, including - caves-1623/204/swings/entg
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/entg
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:entg, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/entg <> caves-1623/204/swings/entg
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15114, now:15121)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/ubantu <> caves-1623/204/swings/ubantu
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15121, now:15128)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu2, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/ubantu2 <> caves-1623/204/swings/ubantu2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15128, now:15135)
+> > > > > - Include path found, including - caves-1623/204/swings/zebedee
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/zebedee
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:zebedee, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/zebedee <> caves-1623/204/swings/zebedee
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15135, now:15141)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu3, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/ubantu3 <> caves-1623/204/swings/ubantu3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 26 (previous: 15141, now:15167)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu4, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/ubantu4 <> caves-1623/204/swings/ubantu4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 15167, now:15182)
+> > > > > - Include path found, including - caves-1623/204/swings/05-9cQMkilling
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/05-9cQMkilling
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:05-9cqmkilling, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/05-9cQMkilling <> caves-1623/204/swings/05-9cQMkilling
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15182, now:15185)
+> > > > > - Include path found, including - caves-1623/204/swings/ubantu5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ubantu5, creating new SurvexBlock
+> > > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/swings/ubantu5 <> caves-1623/204/swings/ubantu5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15185, now:15188)
+> > > > > LEGS: 310 (previous: 14878, now:15188)
+> > > > - Include path found, including - caves-1623/204/gaffered/allgaffered
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/204 <> caves-1623/204/gaffered/allgaffered
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allgaffered, creating new SurvexBlock
+> > > > > > - MEM:49.83984375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/allgaffered
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/gaffered/plan
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/plan
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:plan, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/plan <> caves-1623/204/gaffered/plan
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15188, now:15191)
+> > > > > - Include path found, including - caves-1623/204/gaffered/not
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/not
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:not, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/not <> caves-1623/204/gaffered/not
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15191, now:15198)
+> > > > > - Include path found, including - caves-1623/204/gaffered/interesting
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/interesting
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:interesting, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/interesting <> caves-1623/204/gaffered/interesting
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15198, now:15201)
+> > > > > - Include path found, including - caves-1623/204/gaffered/trihang
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/trihang
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:trihang, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/trihang <> caves-1623/204/gaffered/trihang
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 15201, now:15214)
+> > > > > - Include path found, including - caves-1623/204/gaffered/eeyore
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/eeyore
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:eeyore, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/eeyore <> caves-1623/204/gaffered/eeyore
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15214, now:15218)
+> > > > > - Include path found, including - caves-1623/204/gaffered/poohstyx
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:poohstyx, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/poohstyx <> caves-1623/204/gaffered/poohstyx
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15218, now:15227)
+> > > > > - Include path found, including - caves-1623/204/gaffered/sirens
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sirens, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/sirens <> caves-1623/204/gaffered/sirens
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15227, now:15233)
+> > > > > - Include path found, including - caves-1623/204/gaffered/sirens2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:sirens2, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/sirens2 <> caves-1623/204/gaffered/sirens2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 17 (previous: 15233, now:15250)
+> > > > > - Include path found, including - caves-1623/204/gaffered/kanga
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/kanga
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:kanga, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/kanga <> caves-1623/204/gaffered/kanga
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15250, now:15255)
+> > > > > - Include path found, including - caves-1623/204/gaffered/mudslope
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/mudslope
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:mudslope, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/mudslope <> caves-1623/204/gaffered/mudslope
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15255, now:15258)
+> > > > > - Include path found, including - caves-1623/204/gaffered/gardenersworld
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/gardenersworld
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:gardenersworld, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/gardenersworld <> caves-1623/204/gaffered/gardenersworld
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15258, now:15261)
+> > > > > - Include path found, including - caves-1623/204/gaffered/uppertube
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/uppertube
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:uppertube, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/uppertube <> caves-1623/204/gaffered/uppertube
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15261, now:15264)
+> > > > > - Include path found, including - caves-1623/204/gaffered/terrafirma
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/terrafirma
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:terrafirma, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/terrafirma <> caves-1623/204/gaffered/terrafirma
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15264, now:15266)
+> > > > > - Include path found, including - caves-1623/204/gaffered/oxtailoxbow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/oxtailoxbow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:oxtailoxbow, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/oxtailoxbow <> caves-1623/204/gaffered/oxtailoxbow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15266, now:15271)
+> > > > > - Include path found, including - caves-1623/204/gaffered/blackmaria
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/blackmaria
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:blackmaria, creating new SurvexBlock
+> > > > > > > - MEM:49.84375 Reading. parent:caves-1623/204/gaffered/blackmaria <> caves-1623/204/gaffered/blackmaria
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15271, now:15274)
+> > > > > - Include path found, including - caves-1623/204/gaffered/poohstyx2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:poohstyx2, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/poohstyx2 <> caves-1623/204/gaffered/poohstyx2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15274, now:15276)
+> > > > > - Include path found, including - caves-1623/204/gaffered/shprinkles
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/shprinkles
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:shprinkles, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/shprinkles <> caves-1623/204/gaffered/shprinkles
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15276, now:15281)
+> > > > > - Include path found, including - caves-1623/204/gaffered/dangly
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangly
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dangly, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/dangly <> caves-1623/204/gaffered/dangly
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15281, now:15286)
+> > > > > - Include path found, including - caves-1623/204/gaffered/slimy1
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy1
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:slimy1, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/slimy1 <> caves-1623/204/gaffered/slimy1
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15286, now:15291)
+> > > > > - Include path found, including - caves-1623/204/gaffered/dangerous
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangerous
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:dangerous, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/dangerous <> caves-1623/204/gaffered/dangerous
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 15291, now:15315)
+> > > > > - Include path found, including - caves-1623/204/gaffered/slimy2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:slimy2, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/gaffered/slimy2 <> caves-1623/204/gaffered/slimy2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15315, now:15325)
+> > > > > LEGS: 137 (previous: 15188, now:15325)
+> > > > - Include path found, including - caves-1623/204/rhino/allrhino
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/204 <> caves-1623/204/rhino/allrhino
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allrhino, creating new SurvexBlock
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/allrhino
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/rhino/21boltsalute
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/21boltsalute
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:21boltsalute, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/rhino/21boltsalute <> caves-1623/204/rhino/21boltsalute
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15325, now:15334)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rhinorift, creating new SurvexBlock
+> > > > > > > - MEM:49.8515625 Reading. parent:caves-1623/204/rhino/rhinorift <> caves-1623/204/rhino/rhinorift
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 15334, now:15362)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:onamission, creating new SurvexBlock
+> > > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/onamission <> caves-1623/204/rhino/onamission
+[<Cave: 1623-204>]
+> > > > > > LEGS: 35 (previous: 15362, now:15397)
+> > > > > - Include path found, including - caves-1623/204/rhino/watnobutcombe
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/watnobutcombe
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:watnobutcombe, creating new SurvexBlock
+> > > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/watnobutcombe <> caves-1623/204/rhino/watnobutcombe
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15397, now:15403)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rhinorift2, creating new SurvexBlock
+> > > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/rhinorift2 <> caves-1623/204/rhino/rhinorift2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15403, now:15415)
+> > > > > - Include path found, including - caves-1623/204/rhino/ratbiscuit
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/ratbiscuit
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:ratbiscuit, creating new SurvexBlock
+> > > > > > > - MEM:49.859375 Reading. parent:caves-1623/204/rhino/ratbiscuit <> caves-1623/204/rhino/ratbiscuit
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 15415, now:15438)
+> > > > > - Include path found, including - caves-1623/204/rhino/crimper
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8671875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/crimper
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:crimper, creating new SurvexBlock
+> > > > > > > - MEM:49.8671875 Reading. parent:caves-1623/204/rhino/crimper <> caves-1623/204/rhino/crimper
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15438, now:15445)
+> > > > > - Include path found, including - caves-1623/204/rhino/swallowhard
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.8671875 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/swallowhard
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:swallowhard, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/swallowhard <> caves-1623/204/rhino/swallowhard
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15445, now:15457)
+> > > > > - Include path found, including - caves-1623/204/rhino/takingthepiss
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/takingthepiss
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:takingthepiss, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/takingthepiss <> caves-1623/204/rhino/takingthepiss
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15457, now:15463)
+> > > > > - Include path found, including - caves-1623/204/rhino/rhinorift3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:rhinorift3, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/rhinorift3 <> caves-1623/204/rhino/rhinorift3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 1 (previous: 15463, now:15464)
+> > > > > - Include path found, including - caves-1623/204/rhino/unconformity
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:unconformity, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/unconformity <> caves-1623/204/rhino/unconformity
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 15464, now:15483)
+> > > > > - Include path found, including - caves-1623/204/rhino/unconformity2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:unconformity2, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/unconformity2 <> caves-1623/204/rhino/unconformity2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15483, now:15492)
+> > > > > - Include path found, including - caves-1623/204/rhino/belief
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/belief
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:belief, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/belief <> caves-1623/204/rhino/belief
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15492, now:15496)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:onamission2, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/onamission2 <> caves-1623/204/rhino/onamission2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15496, now:15498)
+> > > > > - Include path found, including - caves-1623/204/rhino/onamission3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:onamission3, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/onamission3 <> caves-1623/204/rhino/onamission3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15498, now:15507)
+> > > > > - Include path found, including - caves-1623/204/rhino/faith
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/faith
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:faith, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/faith <> caves-1623/204/rhino/faith
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15507, now:15517)
+> > > > > - Include path found, including - caves-1623/204/rhino/roundtrip
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/roundtrip
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:roundtrip, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/roundtrip <> caves-1623/204/rhino/roundtrip
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15517, now:15523)
+> > > > > - Include path found, including - caves-1623/204/rhino/wotnoconnection
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/wotnoconnection
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wotnoconnection, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/wotnoconnection <> caves-1623/204/rhino/wotnoconnection
+[<Cave: 1623-204>]
+> > > > > > LEGS: 11 (previous: 15523, now:15534)
+> > > > > - Include path found, including - caves-1623/204/rhino/grater
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/grater
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:grater, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/grater <> caves-1623/204/rhino/grater
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15534, now:15538)
+> > > > > - Include path found, including - caves-1623/204/rhino/uncrimped
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/uncrimped
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:uncrimped, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/uncrimped <> caves-1623/204/rhino/uncrimped
+[<Cave: 1623-204>]
+> > > > > > LEGS: 0 (previous: 15538, now:15538)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:beyondbelief, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/beyondbelief <> caves-1623/204/rhino/beyondbelief
+[<Cave: 1623-204>]
+> > > > > > LEGS: 10 (previous: 15538, now:15548)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:beyondbelief2, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/beyondbelief2 <> caves-1623/204/rhino/beyondbelief2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15548, now:15569)
+> > > > > - Include path found, including - caves-1623/204/rhino/beyondbelief3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:beyondbelief3, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/beyondbelief3 <> caves-1623/204/rhino/beyondbelief3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 8 (previous: 15569, now:15577)
+> > > > > - Include path found, including - caves-1623/204/rhino/hangingontofaith
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hangingontofaith
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hangingontofaith, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/hangingontofaith <> caves-1623/204/rhino/hangingontofaith
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 15577, now:15591)
+> > > > > - Include path found, including - caves-1623/204/rhino/shanks
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/shanks
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:shanks, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/shanks <> caves-1623/204/rhino/shanks
+[<Cave: 1623-204>]
+> > > > > > LEGS: 25 (previous: 15591, now:15616)
+> > > > > - Include path found, including - caves-1623/204/rhino/nonconformism
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/nonconformism
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:nonconformism, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/nonconformism <> caves-1623/204/rhino/nonconformism
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15616, now:15619)
+> > > > > - Include path found, including - caves-1623/204/rhino/spittersend
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/spittersend
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:spittersend, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/spittersend <> caves-1623/204/rhino/spittersend
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 15619, now:15624)
+> > > > > - Include path found, including - caves-1623/204/rhino/hollow
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hollow
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hollow, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/rhino/hollow <> caves-1623/204/rhino/hollow
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 15624, now:15633)
+> > > > > LEGS: 308 (previous: 15325, now:15633)
+> > > > - Include path found, including - caves-1623/204/subsoil/allsubsoil
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/204 <> caves-1623/204/subsoil/allsubsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:allsubsoil, creating new SurvexBlock
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/allsubsoil
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/subsoil/subsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:subsoil, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/subsoil <> caves-1623/204/subsoil/subsoil
+[<Cave: 1623-204>]
+> > > > > > LEGS: 19 (previous: 15633, now:15652)
+> > > > > - Include path found, including - caves-1623/204/subsoil/subsoil2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:subsoil2, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/subsoil2 <> caves-1623/204/subsoil/subsoil2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 32 (previous: 15652, now:15684)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippohollows
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippohollows
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hippohollows, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/hippohollows <> caves-1623/204/subsoil/hippohollows
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15684, now:15696)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatworm, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/fatworm <> caves-1623/204/subsoil/fatworm
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15696, now:15708)
+> > > > > - Include path found, including - caves-1623/204/subsoil/heavilysoiled
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/heavilysoiled
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:heavilysoiled, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/heavilysoiled <> caves-1623/204/subsoil/heavilysoiled
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15708, now:15720)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:earthenware, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/earthenware <> caves-1623/204/subsoil/earthenware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15720, now:15732)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatworm2, creating new SurvexBlock
+> > > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/fatworm2 <> caves-1623/204/subsoil/fatworm2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15732, now:15753)
+> > > > > - Include path found, including - caves-1623/204/subsoil/fatworm3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.87109375 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:fatworm3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/fatworm3 <> caves-1623/204/subsoil/fatworm3
+[<Cave: 1623-204>]
+> > > > > > ! Wallet ; ref 2004#34 - NOT found in survexscansfolders caves-1623/204/subsoil/fatworm3
+> > > > > > LEGS: 15 (previous: 15753, now:15768)
+> > > > > - Include path found, including - caves-1623/204/subsoil/thinrift
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/thinrift
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thinrift, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/thinrift <> caves-1623/204/subsoil/thinrift
+[<Cave: 1623-204>]
+> > > > > > ! Wallet ; ref 2004#35 - NOT found in survexscansfolders caves-1623/204/subsoil/thinrift
+> > > > > > LEGS: 6 (previous: 15768, now:15774)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:earthenware2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/earthenware2 <> caves-1623/204/subsoil/earthenware2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 24 (previous: 15774, now:15798)
+> > > > > - Include path found, including - caves-1623/204/subsoil/earthenware3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:earthenware3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/earthenware3 <> caves-1623/204/subsoil/earthenware3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 18 (previous: 15798, now:15816)
+> > > > > - Include path found, including - caves-1623/204/subsoil/chimney
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/chimney
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:chimney, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/chimney <> caves-1623/204/subsoil/chimney
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15816, now:15823)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hardware, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/hardware <> caves-1623/204/subsoil/hardware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 12 (previous: 15823, now:15835)
+> > > > > - Include path found, including - caves-1623/204/subsoil/someware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/someware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:someware, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/someware <> caves-1623/204/subsoil/someware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 33 (previous: 15835, now:15868)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:software, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/software <> caves-1623/204/subsoil/software
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15868, now:15872)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-43a
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:qm04_43a, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/hardware_QM04-43a <> caves-1623/204/subsoil/hardware_QM04-43a
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 15872, now:15874)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-38b
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:qm04_38b, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/hardware_QM04-38b <> caves-1623/204/subsoil/hardware_QM04-38b
+[<Cave: 1623-204>]
+> > > > > > LEGS: 4 (previous: 15874, now:15878)
+> > > > > - Include path found, including - caves-1623/204/subsoil/nightsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/nightsoil
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:nightsoil, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/nightsoil <> caves-1623/204/subsoil/nightsoil
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 15878, now:15884)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippocratic
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hippocratic, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/hippocratic <> caves-1623/204/subsoil/hippocratic
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 15884, now:15905)
+> > > > > - Include path found, including - caves-1623/204/subsoil/hippocratic2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:hippocratic2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/hippocratic2 <> caves-1623/204/subsoil/hippocratic2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 20 (previous: 15905, now:15925)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:software2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/software2 <> caves-1623/204/subsoil/software2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 29 (previous: 15925, now:15954)
+> > > > > - Include path found, including - caves-1623/204/subsoil/software3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:software3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/software3 <> caves-1623/204/subsoil/software3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15954, now:15961)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/whereoware <> caves-1623/204/subsoil/whereoware
+[<Cave: 1623-204>]
+> > > > > > LEGS: 31 (previous: 15961, now:15992)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/whereoware2 <> caves-1623/204/subsoil/whereoware2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 3 (previous: 15992, now:15995)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/whereoware3 <> caves-1623/204/subsoil/whereoware3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 15995, now:16002)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware4, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/whereoware4 <> caves-1623/204/subsoil/whereoware4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 16002, now:16011)
+> > > > > - Include path found, including - caves-1623/204/subsoil/whereoware5
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware5
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:whereoware5, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/whereoware5 <> caves-1623/204/subsoil/whereoware5
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 16011, now:16013)
+> > > > > - Include path found, including - caves-1623/204/subsoil/wareforartthou
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wareforartthou, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/wareforartthou <> caves-1623/204/subsoil/wareforartthou
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 16013, now:16041)
+> > > > > - Include path found, including - caves-1623/204/subsoil/wareforartthou2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:wareforartthou2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/wareforartthou2 <> caves-1623/204/subsoil/wareforartthou2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16041, now:16062)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stupidhole, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/stupidhole <> caves-1623/204/subsoil/stupidhole
+[<Cave: 1623-204>]
+> > > > > > LEGS: 9 (previous: 16062, now:16071)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stupidhole2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/stupidhole2 <> caves-1623/204/subsoil/stupidhole2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16071, now:16092)
+> > > > > - Include path found, including - caves-1623/204/subsoil/stupidhole3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:stupidhole3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/stupidhole3 <> caves-1623/204/subsoil/stupidhole3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 7 (previous: 16092, now:16099)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:granddayout, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/granddayout <> caves-1623/204/subsoil/granddayout
+[<Cave: 1623-204>]
+> > > > > > LEGS: 14 (previous: 16099, now:16113)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:granddayout2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/granddayout2 <> caves-1623/204/subsoil/granddayout2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 51 (previous: 16113, now:16164)
+> > > > > - Include path found, including - caves-1623/204/subsoil/birdonawire
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:birdonawire, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/birdonawire <> caves-1623/204/subsoil/birdonawire
+[<Cave: 1623-204>]
+> > > > > > LEGS: 6 (previous: 16164, now:16170)
+> > > > > - Include path found, including - caves-1623/204/subsoil/birdonawire2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:birdonawire2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/birdonawire2 <> caves-1623/204/subsoil/birdonawire2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 5 (previous: 16170, now:16175)
+> > > > > - Include path found, including - caves-1623/204/subsoil/granddayout3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:granddayout3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subsoil/granddayout3 <> caves-1623/204/subsoil/granddayout3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 2 (previous: 16175, now:16177)
+> > > > > LEGS: 544 (previous: 15633, now:16177)
+> > > > - Include path found, including - caves-1623/204/subway/subway
+> > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/204/204 <> caves-1623/204/subway/subway
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > - Begin found for:subway, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/subway
+[<Cave: 1623-204>]
+> > > > > - Include path found, including - caves-1623/204/subway/apocalypse
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/apocalypse
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:apocalypse, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/apocalypse <> caves-1623/204/subway/apocalypse
+[<Cave: 1623-204>]
+> > > > > > LEGS: 13 (previous: 16177, now:16190)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/thetube <> caves-1623/204/subway/thetube
+[<Cave: 1623-204>]
+> > > > > > LEGS: 21 (previous: 16190, now:16211)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube2
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube2
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/thetube2 <> caves-1623/204/subway/thetube2
+[<Cave: 1623-204>]
+> > > > > > LEGS: 23 (previous: 16211, now:16234)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube3
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube3
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/thetube3 <> caves-1623/204/subway/thetube3
+[<Cave: 1623-204>]
+> > > > > > LEGS: 28 (previous: 16234, now:16262)
+> > > > > - Include path found, including - caves-1623/204/subway/thetube4
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube4
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:thetube4, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/thetube4 <> caves-1623/204/subway/thetube4
+[<Cave: 1623-204>]
+> > > > > > LEGS: 35 (previous: 16262, now:16297)
+> > > > > - Include path found, including - caves-1623/204/subway/morningtoncrescent
+> > > > > - Match in DB (i) for cave 1623-204.
+[<Cave: 1623-204>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/morningtoncrescent
+[<Cave: 1623-204>]
+[<Cave: 1623-204>]
+> > > > > > - Begin found for:morningtoncrescent, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/204/subway/morningtoncrescent <> caves-1623/204/subway/morningtoncrescent
+[<Cave: 1623-204>]
+> > > > > > LEGS: 15 (previous: 16297, now:16312)
+> > > > > LEGS: 135 (previous: 16177, now:16312)
+[<Cave: 1623-204>]
+> > > > - Begin found for:slimylink, creating new SurvexBlock
+> > > > > - MEM:49.875 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+[<Cave: 1623-204>]
+> > > > LEGS: 0 (previous: 16312, now:16312)
+> > > - Include path found, including - caves-1623/258/258
+> > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - MEM:49.875 Reading. parent:kataster/1623 <> caves-1623/258/258
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - Begin found for:258, creating new SurvexBlock
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/258
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkeyall
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkeyall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey <> caves-1623/258/stonemonkey/stonemonkey
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 17 (previous: 16312, now:16329)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey2 <> caves-1623/258/stonemonkey/stonemonkey2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16329, now:16334)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey3 <> caves-1623/258/stonemonkey/stonemonkey3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16334, now:16348)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey4
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey4, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey4 <> caves-1623/258/stonemonkey/stonemonkey4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 13 (previous: 16348, now:16361)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey5
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey5, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey5 <> caves-1623/258/stonemonkey/stonemonkey5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 9 (previous: 16361, now:16370)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey6
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey6, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey6 <> caves-1623/258/stonemonkey/stonemonkey6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16370, now:16375)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey7
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey7, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey7 <> caves-1623/258/stonemonkey/stonemonkey7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16375, now:16380)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey8
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey8
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey8, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey8 <> caves-1623/258/stonemonkey/stonemonkey8
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16380, now:16390)
+> > > > > - Include path found, including - caves-1623/258/stonemonkey/stonemonkey9
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey9
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:stonemonkey9, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stonemonkey/stonemonkey9 <> caves-1623/258/stonemonkey/stonemonkey9
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16390, now:16394)
+> > > > - Include path found, including - caves-1623/258/hydra/hydra
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hydra
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Include path found, including - caves-1623/258/hydra/kraken
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kraken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:kraken, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/kraken <> caves-1623/258/hydra/kraken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16394, now:16408)
+> > > > > - Include path found, including - caves-1623/258/hydra/tentacle
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/tentacle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:tentacle, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/tentacle <> caves-1623/258/hydra/tentacle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 8 (previous: 16408, now:16416)
+> > > > > - Include path found, including - caves-1623/258/hydra/livingthedream
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/livingthedream
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:livingthedream, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/livingthedream <> caves-1623/258/hydra/livingthedream
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 30 (previous: 16416, now:16446)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers <> caves-1623/258/hydra/slackers
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 75 (previous: 16446, now:16521)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers2 <> caves-1623/258/hydra/slackers2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 18 (previous: 16521, now:16539)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers3 <> caves-1623/258/hydra/slackers3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16539, now:16545)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers4
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers4, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers4 <> caves-1623/258/hydra/slackers4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 26 (previous: 16545, now:16571)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers5
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers5, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers5 <> caves-1623/258/hydra/slackers5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 31 (previous: 16571, now:16602)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers6
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers6, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers6 <> caves-1623/258/hydra/slackers6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16602, now:16606)
+> > > > > - Include path found, including - caves-1623/258/hydra/wrongcustard
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/wrongcustard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:wrongcustard, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/wrongcustard <> caves-1623/258/hydra/wrongcustard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16606, now:16613)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackers7
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackers7, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackers7 <> caves-1623/258/hydra/slackers7
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 3 (previous: 16613, now:16616)
+> > > > > - Include path found, including - caves-1623/258/hydra/lobsterpot
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lobsterpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:lobsterpot, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/lobsterpot <> caves-1623/258/hydra/lobsterpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16616, now:16626)
+> > > > > - Include path found, including - caves-1623/258/hydra/kippercock
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kippercock
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:kippercock, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/kippercock <> caves-1623/258/hydra/kippercock
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 14 (previous: 16626, now:16640)
+> > > > > - Include path found, including - caves-1623/258/hydra/indianropetrick
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/indianropetrick
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:indianropetrick, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/indianropetrick <> caves-1623/258/hydra/indianropetrick
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16640, now:16646)
+> > > > > - Include path found, including - caves-1623/258/hydra/songoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:songoftheearth, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:part1, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 13 (previous: 16646, now:16659)
+> > > > > - Include path found, including - caves-1623/258/hydra/dontstopmenow
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/dontstopmenow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:dontstopmenow, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/dontstopmenow <> caves-1623/258/hydra/dontstopmenow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 24 (previous: 16659, now:16683)
+> > > > > - Include path found, including - caves-1623/258/hydra/screamer
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/screamer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:screamer, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/screamer <> caves-1623/258/hydra/screamer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16683, now:16688)
+> > > > > - Include path found, including - caves-1623/258/hydra/papawpassage
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/papawpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:papawpassage, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/papawpassage <> caves-1623/258/hydra/papawpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 3 (previous: 16688, now:16691)
+> > > > > - Include path found, including - caves-1623/258/hydra/therestherub
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/therestherub
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:therestherub, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/therestherub <> caves-1623/258/hydra/therestherub
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 12 (previous: 16691, now:16703)
+> > > > > - Include path found, including - caves-1623/258/hydra/biglad
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/biglad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:biglad, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/biglad <> caves-1623/258/hydra/biglad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 28 (previous: 16703, now:16731)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackerstidyup1
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackerstidyup1, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackerstidyup1 <> caves-1623/258/hydra/slackerstidyup1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 6 (previous: 16731, now:16737)
+> > > > > - Include path found, including - caves-1623/258/hydra/slackerstidyup2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:slackerstidyup2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/slackerstidyup2 <> caves-1623/258/hydra/slackerstidyup2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16737, now:16744)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:snakecharmer, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/snakecharmer <> caves-1623/258/hydra/snakecharmer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 27 (previous: 16744, now:16771)
+> > > > > - Include path found, including - caves-1623/258/hydra/mastercave
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/mastercave
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:mastercave, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/mastercave <> caves-1623/258/hydra/mastercave
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 4 (previous: 16771, now:16775)
+> > > > > - Include path found, including - caves-1623/258/hydra/gryke-of-the-earth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/gryke-of-the-earth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:gryke-of-the-earth, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/gryke-of-the-earth <> caves-1623/258/hydra/gryke-of-the-earth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 12 (previous: 16775, now:16787)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:snakecharmer2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/snakecharmer2 <> caves-1623/258/hydra/snakecharmer2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16787, now:16809)
+> > > > > - Include path found, including - caves-1623/258/hydra/snakecharmer3
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:snakecharmer3, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/snakecharmer3 <> caves-1623/258/hydra/snakecharmer3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 15 (previous: 16809, now:16824)
+> > > > > - Include path found, including - caves-1623/258/hydra/hipstersreturn
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hipstersreturn
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:hipstersreturn, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/hipstersreturn <> caves-1623/258/hydra/hipstersreturn
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16824, now:16834)
+> > > > > - Include path found, including - caves-1623/258/hydra/beckoning_silence
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/beckoning_silence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:beckoning_silence, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/beckoning_silence <> caves-1623/258/hydra/beckoning_silence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16834, now:16856)
+> > > > > - Include path found, including - caves-1623/258/hydra/theloserlido
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/theloserlido
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:theloserlido, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/theloserlido <> caves-1623/258/hydra/theloserlido
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 22 (previous: 16856, now:16878)
+> > > > > - Include path found, including - caves-1623/258/hydra/bahamastunnel
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/bahamastunnel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:bahamastunnel, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/bahamastunnel <> caves-1623/258/hydra/bahamastunnel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16878, now:16885)
+> > > > > - Include path found, including - caves-1623/258/hydra/unfathomablestupidity
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/unfathomablestupidity
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:unfathomablestupidity, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/unfathomablestupidity <> caves-1623/258/hydra/unfathomablestupidity
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 5 (previous: 16885, now:16890)
+> > > > > - Include path found, including - caves-1623/258/hydra/lower_snakebite
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lower_snakebite
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:lower_snakebite, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/lower_snakebite <> caves-1623/258/hydra/lower_snakebite
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 10 (previous: 16890, now:16900)
+> > > > > - Include path found, including - caves-1623/258/hydra/radiosilence
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/radiosilence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:radiosilence, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/radiosilence <> caves-1623/258/hydra/radiosilence
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 7 (previous: 16900, now:16907)
+> > > > > - Include path found, including - caves-1623/258/hydra/scumoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scumoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:scumoftheearth, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/scumoftheearth <> caves-1623/258/hydra/scumoftheearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 512 (previous: 16907, now:17419)
+> > > > > - Include path found, including - caves-1623/258/hydra/scum2
+> > > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scum2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > - Begin found for:scum2, creating new SurvexBlock
+> > > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hydra/scum2 <> caves-1623/258/hydra/scum2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > > LEGS: 75 (previous: 17419, now:17494)
+> > > > - Include path found, including - caves-1623/258/1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/1 <> caves-1623/258/1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17494, now:17498)
+> > > > - Include path found, including - caves-1623/258/2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/2 <> caves-1623/258/2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 24 (previous: 17498, now:17522)
+> > > > - Include path found, including - caves-1623/258/ribsknodel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:ribsknodel, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/ribsknodel <> caves-1623/258/ribsknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 18 (previous: 17522, now:17540)
+> > > > - Include path found, including - caves-1623/258/ribsknodel2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:ribsknodel2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/ribsknodel2 <> caves-1623/258/ribsknodel2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17540, now:17543)
+> > > > - Include path found, including - caves-1623/258/skrautlink
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/skrautlink
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:skrautlink, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/skrautlink <> caves-1623/258/skrautlink
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 1 (previous: 17543, now:17544)
+> > > > - Include path found, including - caves-1623/258/sauerkraut
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/sauerkraut
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sauerkraut, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/sauerkraut <> caves-1623/258/sauerkraut
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17544, now:17548)
+> > > > - Include path found, including - caves-1623/258/gknodel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/gknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:gknodel, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/gknodel <> caves-1623/258/gknodel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 17548, now:17564)
+> > > > - Include path found, including - caves-1623/258/literalnorth
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/literalnorth <> caves-1623/258/literalnorth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 17564, now:17581)
+> > > > - Include path found, including - caves-1623/258/squirrel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/squirrel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:squirrel, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/squirrel <> caves-1623/258/squirrel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17581, now:17591)
+> > > > - Include path found, including - caves-1623/258/oompah
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:oompah, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/oompah <> caves-1623/258/oompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17591, now:17596)
+> > > > - Include path found, including - caves-1623/258/apfelstrudel
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/apfelstrudel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:apfelstrudel, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/apfelstrudel <> caves-1623/258/apfelstrudel
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 18 (previous: 17596, now:17614)
+> > > > - Include path found, including - caves-1623/258/literalnorth2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/literalnorth2 <> caves-1623/258/literalnorth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 17614, now:17616)
+> > > > - Include path found, including - caves-1623/258/literalnorth3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth3, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/literalnorth3 <> caves-1623/258/literalnorth3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17616, now:17620)
+> > > > - Include path found, including - caves-1623/258/maxpleasure1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure1, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/maxpleasure1 <> caves-1623/258/maxpleasure1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 24 (previous: 17620, now:17644)
+> > > > - Include path found, including - caves-1623/258/dubiouspleasure
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/dubiouspleasure
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:dubiouspleasure, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/dubiouspleasure <> caves-1623/258/dubiouspleasure
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17644, now:17654)
+> > > > - Include path found, including - caves-1623/258/maxpleasure2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/maxpleasure2 <> caves-1623/258/maxpleasure2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 37 (previous: 17654, now:17691)
+> > > > - Include path found, including - caves-1623/258/hedonismhighway
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hedonismhighway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:hedonismhighway, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hedonismhighway <> caves-1623/258/hedonismhighway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 17691, now:17695)
+> > > > - Include path found, including - caves-1623/258/flyinghigh
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/flyinghigh <> caves-1623/258/flyinghigh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 17695, now:17718)
+> > > > - Include path found, including - caves-1623/258/flyinghigh2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/flyinghigh2 <> caves-1623/258/flyinghigh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17718, now:17723)
+> > > > - Include path found, including - caves-1623/258/pantinsales
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/pantinsales
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pantinsales, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/pantinsales <> caves-1623/258/pantinsales
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17723, now:17728)
+> > > > - Include path found, including - caves-1623/258/maxpleasure3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure3, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/maxpleasure3 <> caves-1623/258/maxpleasure3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 42 (previous: 17728, now:17770)
+> > > > - Include path found, including - caves-1623/258/maxpleasure4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure4, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/maxpleasure4 <> caves-1623/258/maxpleasure4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17770, now:17773)
+> > > > - Include path found, including - caves-1623/258/literalnorth4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth4, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/literalnorth4 <> caves-1623/258/literalnorth4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17773, now:17779)
+> > > > - Include path found, including - caves-1623/258/maxpleasure5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure5, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/maxpleasure5 <> caves-1623/258/maxpleasure5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17779, now:17782)
+> > > > - Include path found, including - caves-1623/258/justforalaugh
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:justforalaugh, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/justforalaugh <> caves-1623/258/justforalaugh
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 17782, now:17805)
+> > > > - Include path found, including - caves-1623/258/letsgetnaked
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/letsgetnaked
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:letsgetnaked, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/letsgetnaked <> caves-1623/258/letsgetnaked
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 17805, now:17827)
+> > > > - Include path found, including - caves-1623/258/maxpleasure6
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:maxpleasure6, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/maxpleasure6 <> caves-1623/258/maxpleasure6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 17827, now:17830)
+> > > > - Include path found, including - caves-1623/258/justforalaugh2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:justforalaugh2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/justforalaugh2 <> caves-1623/258/justforalaugh2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17830, now:17836)
+> > > > - Include path found, including - caves-1623/258/loompah
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/loompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:loompah, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/loompah <> caves-1623/258/loompah
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 17836, now:17841)
+> > > > - Include path found, including - caves-1623/258/delicious1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:delicious1, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/delicious1 <> caves-1623/258/delicious1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 17841, now:17843)
+> > > > - Include path found, including - caves-1623/258/delicious2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:delicious2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/delicious2 <> caves-1623/258/delicious2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17843, now:17853)
+> > > > - Include path found, including - caves-1623/258/darkfumblings
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/darkfumblings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:darkfumblings, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/darkfumblings <> caves-1623/258/darkfumblings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 17853, now:17859)
+> > > > - Include path found, including - caves-1623/258/bouldersurfer
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/bouldersurfer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bouldersurfer, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/bouldersurfer <> caves-1623/258/bouldersurfer
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 17859, now:17880)
+> > > > - Include path found, including - caves-1623/258/naughtynaughty
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:naughtynaughty, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/naughtynaughty <> caves-1623/258/naughtynaughty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 37 (previous: 17880, now:17917)
+> > > > - Include path found, including - caves-1623/258/flapjackchoke
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flapjackchoke
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flapjackchoke, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/flapjackchoke <> caves-1623/258/flapjackchoke
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 17917, now:17928)
+> > > > - Include path found, including - caves-1623/258/rockyroad
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/rockyroad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:rockyroad, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/rockyroad <> caves-1623/258/rockyroad
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 46 (previous: 17928, now:17974)
+> > > > - Include path found, including - caves-1623/258/flyinghigh3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh3, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/flyinghigh3 <> caves-1623/258/flyinghigh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 17974, now:17984)
+> > > > - Include path found, including - caves-1623/258/gravityalwayswins
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/gravityalwayswins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:gravityalwayswins, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/gravityalwayswins <> caves-1623/258/gravityalwayswins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 17984, now:18005)
+> > > > - Include path found, including - caves-1623/258/thinredline
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thinredline, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/thinredline <> caves-1623/258/thinredline
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 18005, now:18011)
+> > > > - Include path found, including - caves-1623/258/blindandbroken
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/blindandbroken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:blindandbroken, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/blindandbroken <> caves-1623/258/blindandbroken
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18011, now:18019)
+> > > > - Include path found, including - caves-1623/258/franklyfreezing
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:franklyfreezing, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/franklyfreezing <> caves-1623/258/franklyfreezing
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18019, now:18027)
+> > > > - Include path found, including - caves-1623/258/franklyfreezing2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:franklyfreezing2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/franklyfreezing2 <> caves-1623/258/franklyfreezing2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18027, now:18043)
+> > > > - Include path found, including - caves-1623/258/literalnorth5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:literalnorth5, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/literalnorth5 <> caves-1623/258/literalnorth5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18043, now:18047)
+> > > > - Include path found, including - caves-1623/258/naughtynaughty2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:naughtynaughty2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/naughtynaughty2 <> caves-1623/258/naughtynaughty2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 26 (previous: 18047, now:18073)
+> > > > - Include path found, including - caves-1623/258/thinredline2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thinredline2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/thinredline2 <> caves-1623/258/thinredline2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 18073, now:18083)
+> > > > - Include path found, including - caves-1623/258/toomuch
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/toomuch
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:toomuch, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/toomuch <> caves-1623/258/toomuch
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 18083, now:18095)
+> > > > - Include path found, including - caves-1623/258/sleepingbeauty
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/sleepingbeauty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sleepingbeauty, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/sleepingbeauty <> caves-1623/258/sleepingbeauty
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18095, now:18099)
+> > > > - Include path found, including - caves-1623/258/usualsuspects
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 27 (previous: 18099, now:18126)
+> > > > - Include path found, including - caves-1623/258/marconianempire1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/marconianempire1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:marconianempire1, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/marconianempire1 <> caves-1623/258/marconianempire1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18126, now:18140)
+> > > > - Include path found, including - caves-1623/258/stomachulsa
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:stomachulsa, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stomachulsa <> caves-1623/258/stomachulsa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18140, now:18157)
+> > > > - Include path found, including - caves-1623/258/dampsquib
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/dampsquib
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:dampsquib, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/dampsquib <> caves-1623/258/dampsquib
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18157, now:18164)
+> > > > - Include path found, including - caves-1623/258/stomachulsa2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:stomachulsa2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stomachulsa2 <> caves-1623/258/stomachulsa2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18164, now:18172)
+> > > > - Include path found, including - caves-1623/258/cleadjackpot
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/cleadjackpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:cleadjackpot, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/cleadjackpot <> caves-1623/258/cleadjackpot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18172, now:18186)
+> > > > - Include path found, including - caves-1623/258/alphabetsoup
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/alphabetsoup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:alphabetsoup, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/alphabetsoup <> caves-1623/258/alphabetsoup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18186, now:18197)
+> > > > - Include path found, including - caves-1623/258/goodygoody
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/goodygoody
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:goodygoody, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/goodygoody <> caves-1623/258/goodygoody
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 63 (previous: 18197, now:18260)
+> > > > - Include path found, including - caves-1623/258/atobtoc
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/atobtoc
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:atobtoc, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/atobtoc <> caves-1623/258/atobtoc
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18260, now:18271)
+> > > > - Include path found, including - caves-1623/258/stringtheory
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/stringtheory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:stringtheory, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/stringtheory <> caves-1623/258/stringtheory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 21 (previous: 18271, now:18292)
+> > > > - Include path found, including - caves-1623/258/konigsbergpassage
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsbergpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsbergpassage, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/konigsbergpassage <> caves-1623/258/konigsbergpassage
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 35 (previous: 18292, now:18327)
+> > > > - Include path found, including - caves-1623/258/usualsuspects4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects4, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/usualsuspects4 <> caves-1623/258/usualsuspects4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 18327, now:18341)
+> > > > - Include path found, including - caves-1623/258/usualsuspects5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects5, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/usualsuspects5 <> caves-1623/258/usualsuspects5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18341, now:18349)
+> > > > - Include path found, including - caves-1623/258/usualsuspects6
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:usualsuspects6, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/usualsuspects6 <> caves-1623/258/usualsuspects6
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18349, now:18362)
+> > > > - Include path found, including - caves-1623/258/sovein
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sovein, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/sovein <> caves-1623/258/sovein
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18362, now:18379)
+> > > > - Include path found, including - caves-1623/258/konigsberg2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/konigsberg2 <> caves-1623/258/konigsberg2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 18379, now:18389)
+> > > > - Include path found, including - caves-1623/258/konigsberg3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg3, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/konigsberg3 <> caves-1623/258/konigsberg3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 19 (previous: 18389, now:18408)
+> > > > - Include path found, including - caves-1623/258/fallempire
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/fallempire
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:fallempire, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/fallempire <> caves-1623/258/fallempire
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18408, now:18415)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pigeondroppings, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/pigeondroppings <> caves-1623/258/pigeondroppings
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18415, now:18432)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pigeondroppings2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/pigeondroppings2 <> caves-1623/258/pigeondroppings2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 18432, now:18449)
+> > > > - Include path found, including - caves-1623/258/pigeondroppings3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:pigeondroppings3, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/pigeondroppings3 <> caves-1623/258/pigeondroppings3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 26 (previous: 18449, now:18475)
+> > > > - Include path found, including - caves-1623/258/trident
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:trident, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/trident <> caves-1623/258/trident
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 15 (previous: 18475, now:18490)
+> > > > - Include path found, including - caves-1623/258/hastespeed
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/hastespeed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:hastespeed, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/hastespeed <> caves-1623/258/hastespeed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 18490, now:18512)
+> > > > - Include path found, including - caves-1623/258/straightchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:straightchoice, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/straightchoice <> caves-1623/258/straightchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 25 (previous: 18512, now:18537)
+> > > > - Include path found, including - caves-1623/258/arcticangle
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/arcticangle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:arcticangle, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/arcticangle <> caves-1623/258/arcticangle
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 19 (previous: 18537, now:18556)
+> > > > - Include path found, including - caves-1623/258/straightchoiceexposed
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoiceexposed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:straightchoiceexposed, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/straightchoiceexposed <> caves-1623/258/straightchoiceexposed
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 18556, now:18561)
+> > > > - Include path found, including - caves-1623/258/beerandsunshine
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/beerandsunshine
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:beerandsunshine, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/beerandsunshine <> caves-1623/258/beerandsunshine
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18561, now:18564)
+> > > > - Include path found, including - caves-1623/258/trident2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:trident2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/trident2 <> caves-1623/258/trident2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18564, now:18571)
+> > > > - Include path found, including - caves-1623/258/konigsberg4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg4, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/konigsberg4 <> caves-1623/258/konigsberg4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 18571, now:18593)
+> > > > - Include path found, including - caves-1623/258/sovein2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sovein2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/sovein2 <> caves-1623/258/sovein2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18593, now:18600)
+> > > > - Include path found, including - caves-1623/258/downtoearth
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:downtoearth, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/downtoearth <> caves-1623/258/downtoearth
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18600, now:18603)
+> > > > - Include path found, including - caves-1623/258/konigsberg5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:konigsberg5, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/konigsberg5 <> caves-1623/258/konigsberg5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 29 (previous: 18603, now:18632)
+> > > > - Include path found, including - caves-1623/258/downtoearth2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:downtoearth2, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/downtoearth2 <> caves-1623/258/downtoearth2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18632, now:18643)
+> > > > - Include path found, including - caves-1623/258/flyinghigh4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh4, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/flyinghigh4 <> caves-1623/258/flyinghigh4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18643, now:18647)
+> > > > - Include path found, including - caves-1623/258/flyinghigh5
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flyinghigh5, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/flyinghigh5 <> caves-1623/258/flyinghigh5
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18647, now:18658)
+> > > > - Include path found, including - caves-1623/258/gawbypass
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/gawbypass
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:gawbypass, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/gawbypass <> caves-1623/258/gawbypass
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18658, now:18666)
+> > > > - Include path found, including - caves-1623/258/iceflow
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/iceflow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:iceflow, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/iceflow <> caves-1623/258/iceflow
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 18666, now:18686)
+> > > > - Include path found, including - caves-1623/258/rampant
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/rampant
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:rampant, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/rampant <> caves-1623/258/rampant
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 18686, now:18698)
+> > > > - Include path found, including - caves-1623/258/tagbolts
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/tagbolts
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:tagbolta, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/tagbolts <> caves-1623/258/tagbolts
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 1 (previous: 18698, now:18699)
+> > > > - Include path found, including - caves-1623/258/popcornrift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/popcornrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:popcornrift, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/popcornrift <> caves-1623/258/popcornrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18699, now:18715)
+> > > > - Include path found, including - caves-1623/258/westsidestory
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/westsidestory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:westsidestory, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/westsidestory <> caves-1623/258/westsidestory
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 18715, now:18721)
+> > > > - Include path found, including - caves-1623/258/sovein3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:sovein3, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/sovein3 <> caves-1623/258/sovein3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 18721, now:18723)
+> > > > - Include path found, including - caves-1623/258/intothinair
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/intothinair
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:intothinair, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/intothinair <> caves-1623/258/intothinair
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18723, now:18736)
+> > > > - Include path found, including - caves-1623/258/tenthousandbusstops
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/tenthousandbusstops
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:tenthousandbusstops, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/tenthousandbusstops <> caves-1623/258/tenthousandbusstops
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 18736, now:18743)
+> > > > - Include path found, including - caves-1623/258/bobon
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/bobon
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bobon, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/bobon <> caves-1623/258/bobon
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 18743, now:18756)
+> > > > - Include path found, including - caves-1623/258/aboveandbeyond
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/aboveandbeyond
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:aboveandbeyond, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/aboveandbeyond <> caves-1623/258/aboveandbeyond
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 23 (previous: 18756, now:18779)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/thirtyninesteps <> caves-1623/258/thirtyninesteps
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 39 (previous: 18779, now:18818)
+> > > > - Include path found, including - caves-1623/258/marchofthepenguins
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.875 Reading. parent:caves-1623/258/258 <> caves-1623/258/marchofthepenguins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:marchofthepenguins, creating new SurvexBlock
+> > > > > > - MEM:49.875 Reading. parent:caves-1623/258/marchofthepenguins <> caves-1623/258/marchofthepenguins
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 40 (previous: 18818, now:18858)
+> > > > - Include path found, including - caves-1623/258/aboveandbeyond2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/aboveandbeyond2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:aboveandbeyond2, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/aboveandbeyond2 <> caves-1623/258/aboveandbeyond2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 28 (previous: 18858, now:18886)
+> > > > - Include path found, including - caves-1623/258/thatsthewaytodoit
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thatsthewaytodoit
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thatsthewaytodoit, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/thatsthewaytodoit <> caves-1623/258/thatsthewaytodoit
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 31 (previous: 18886, now:18917)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps2, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/thirtyninesteps2 <> caves-1623/258/thirtyninesteps2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18917, now:18920)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps3, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/thirtyninesteps3 <> caves-1623/258/thirtyninesteps3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 18920, now:18924)
+> > > > - Include path found, including - caves-1623/258/thirtyninesteps4
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thirtyninesteps4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thirtyninesteps4, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/thirtyninesteps4 <> caves-1623/258/thirtyninesteps4
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 18924, now:18926)
+> > > > - Include path found, including - caves-1623/258/itsbehindyou
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/itsbehindyou
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:itsbehindyou, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/itsbehindyou <> caves-1623/258/itsbehindyou
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 18926, now:18934)
+> > > > - Include path found, including - caves-1623/258/procrastination
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/258 <> caves-1623/258/procrastination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:procrastination, creating new SurvexBlock
+> > > > > > - MEM:49.8828125 Reading. parent:caves-1623/258/procrastination <> caves-1623/258/procrastination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 18934, now:18950)
+> > > > - Include path found, including - caves-1623/258/climbofthepenguins1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.88671875 Reading. parent:caves-1623/258/258 <> caves-1623/258/climbofthepenguins1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:climbofthepenguins1, creating new SurvexBlock
+> > > > > > - MEM:49.88671875 Reading. parent:caves-1623/258/climbofthepenguins1 <> caves-1623/258/climbofthepenguins1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 18950, now:18953)
+> > > > - Include path found, including - caves-1623/258/climbofthepenguins2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.88671875 Reading. parent:caves-1623/258/258 <> caves-1623/258/climbofthepenguins2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:climbofthepenguins2, creating new SurvexBlock
+> > > > > > - MEM:49.88671875 Reading. parent:caves-1623/258/climbofthepenguins2 <> caves-1623/258/climbofthepenguins2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 18953, now:18964)
+> > > > - Include path found, including - caves-1623/258/penguinacrobatics
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.88671875 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinacrobatics
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:penguinacrobatics, creating new SurvexBlock
+> > > > > > - MEM:49.88671875 Reading. parent:caves-1623/258/penguinacrobatics <> caves-1623/258/penguinacrobatics
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 86 (previous: 18964, now:19050)
+> > > > - Include path found, including - caves-1623/258/penguinrift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.890625 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:penguinrift, creating new SurvexBlock
+> > > > > > - MEM:49.890625 Reading. parent:caves-1623/258/penguinrift <> caves-1623/258/penguinrift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19050, now:19070)
+> > > > - Include path found, including - caves-1623/258/innerflapcontinuation
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/innerflapcontinuation
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:innerflapcontinuation, creating new SurvexBlock
+> > > > > > - MEM:49.8984375 Reading. parent:caves-1623/258/innerflapcontinuation <> caves-1623/258/innerflapcontinuation
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19070, now:19090)
+> > > > - Include path found, including - caves-1623/258/suicidalvampyre
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/suicidalvampyre
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:suicidalvampyre, creating new SurvexBlock
+> > > > > > - MEM:49.8984375 Reading. parent:caves-1623/258/suicidalvampyre <> caves-1623/258/suicidalvampyre
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19090, now:19094)
+> > > > - Include path found, including - caves-1623/258/bringontheclowns
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.8984375 Reading. parent:caves-1623/258/258 <> caves-1623/258/bringontheclowns
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bringontheclowns, creating new SurvexBlock
+> > > > > > - MEM:49.8984375 Reading. parent:caves-1623/258/bringontheclowns <> caves-1623/258/bringontheclowns
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19094, now:19102)
+> > > > - Include path found, including - caves-1623/258/determination
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.90234375 Reading. parent:caves-1623/258/258 <> caves-1623/258/determination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:determination, creating new SurvexBlock
+> > > > > > - MEM:49.90234375 Reading. parent:caves-1623/258/determination <> caves-1623/258/determination
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19102, now:19110)
+> > > > - Include path found, including - caves-1623/258/determination2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.90625 Reading. parent:caves-1623/258/258 <> caves-1623/258/determination2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:determination2, creating new SurvexBlock
+> > > > > > - MEM:49.90625 Reading. parent:caves-1623/258/determination2 <> caves-1623/258/determination2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19110, now:19127)
+> > > > - Include path found, including - caves-1623/258/surfergirl
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.90625 Reading. parent:caves-1623/258/258 <> caves-1623/258/surfergirl
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:surfergirl, creating new SurvexBlock
+> > > > > > - MEM:49.90625 Reading. parent:caves-1623/258/surfergirl <> caves-1623/258/surfergirl
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19127, now:19131)
+> > > > - Include path found, including - caves-1623/258/bringontheclowns2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.90625 Reading. parent:caves-1623/258/258 <> caves-1623/258/bringontheclowns2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:bringontheclowns2, creating new SurvexBlock
+> > > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/bringontheclowns2 <> caves-1623/258/bringontheclowns2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19131, now:19136)
+> > > > - Include path found, including - caves-1623/258/numberofthebeast
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/258 <> caves-1623/258/numberofthebeast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:numberofthebeast, creating new SurvexBlock
+> > > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/numberofthebeast <> caves-1623/258/numberofthebeast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 13 (previous: 19136, now:19149)
+> > > > - Include path found, including - caves-1623/258/numberofthebeast2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/258 <> caves-1623/258/numberofthebeast2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:numberofthebeast2, creating new SurvexBlock
+> > > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/numberofthebeast2 <> caves-1623/258/numberofthebeast2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19149, now:19153)
+> > > > - Include path found, including - caves-1623/258/justforalaugh3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:justforalaugh3, creating new SurvexBlock
+> > > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/justforalaugh3 <> caves-1623/258/justforalaugh3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 2 (previous: 19153, now:19155)
+> > > > - Include path found, including - caves-1623/258/downgrade
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91015625 Reading. parent:caves-1623/258/258 <> caves-1623/258/downgrade
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:downgrade, creating new SurvexBlock
+> > > > > > - MEM:49.9140625 Reading. parent:caves-1623/258/downgrade <> caves-1623/258/downgrade
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 22 (previous: 19155, now:19177)
+> > > > - Include path found, including - caves-1623/258/boomboom
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9140625 Reading. parent:caves-1623/258/258 <> caves-1623/258/boomboom
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:boomboom, creating new SurvexBlock
+> > > > > > - MEM:49.9140625 Reading. parent:caves-1623/258/boomboom <> caves-1623/258/boomboom
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19177, now:19185)
+> > > > - Include path found, including - caves-1623/258/window
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91796875 Reading. parent:caves-1623/258/258 <> caves-1623/258/window
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:window, creating new SurvexBlock
+> > > > > > - MEM:49.91796875 Reading. parent:caves-1623/258/window <> caves-1623/258/window
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 19185, now:19199)
+> > > > - Include path found, including - caves-1623/258/crossword
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91796875 Reading. parent:caves-1623/258/258 <> caves-1623/258/crossword
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:crossword, creating new SurvexBlock
+> > > > > > - MEM:49.91796875 Reading. parent:caves-1623/258/crossword <> caves-1623/258/crossword
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 39 (previous: 19199, now:19238)
+> > > > - Include path found, including - caves-1623/258/oompharift
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.91796875 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompharift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:oompharift, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/oompharift <> caves-1623/258/oompharift
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 19238, now:19250)
+> > > > - Include path found, including - caves-1623/258/withintheabove
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.921875 Reading. parent:caves-1623/258/258 <> caves-1623/258/withintheabove
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:withintheabove, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/withintheabove <> caves-1623/258/withintheabove
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19250, now:19258)
+> > > > - Include path found, including - caves-1623/258/trireme
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.921875 Reading. parent:caves-1623/258/258 <> caves-1623/258/trireme
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:trireme, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/trireme <> caves-1623/258/trireme
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19258, now:19263)
+> > > > - Include path found, including - caves-1623/258/ducksonice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.921875 Reading. parent:caves-1623/258/258 <> caves-1623/258/ducksonice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:ducksonice, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/ducksonice <> caves-1623/258/ducksonice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19263, now:19280)
+> > > > - Include path found, including - caves-1623/258/coldladyslegs1
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.921875 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldladyslegs1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldladyslegs1, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/coldladyslegs1 <> caves-1623/258/coldladyslegs1
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 51 (previous: 19280, now:19331)
+> > > > - Include path found, including - caves-1623/258/coldfinger
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.921875 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldfinger, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/coldfinger <> caves-1623/258/coldfinger
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 15 (previous: 19331, now:19346)
+> > > > - Include path found, including - caves-1623/258/coldfinger2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.921875 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldfinger2, creating new SurvexBlock
+> > > > > > - MEM:49.921875 Reading. parent:caves-1623/258/coldfinger2 <> caves-1623/258/coldfinger2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19346, now:19352)
+> > > > - Include path found, including - caves-1623/258/coldfinger3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/coldfinger3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:coldfinger3, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/coldfinger3 <> caves-1623/258/coldfinger3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19352, now:19369)
+> > > > - Include path found, including - caves-1623/258/thewrongchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/thewrongchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thewrongchoice, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/thewrongchoice <> caves-1623/258/thewrongchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 27 (previous: 19369, now:19396)
+> > > > - Include path found, including - caves-1623/258/nochoiceatall
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/nochoiceatall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:nochoiceatall, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/nochoiceatall <> caves-1623/258/nochoiceatall
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 12 (previous: 19396, now:19408)
+> > > > - Include path found, including - caves-1623/258/nochoiceatall2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/nochoiceatall2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:nochoiceatall2, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/nochoiceatall2 <> caves-1623/258/nochoiceatall2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19408, now:19413)
+> > > > - Include path found, including - caves-1623/258/generalscrot
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/generalscrot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:generalscrot, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/generalscrot <> caves-1623/258/generalscrot
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 19413, now:19416)
+> > > > - Include path found, including - caves-1623/258/feckingtight
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/feckingtight
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:feckingtight, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/feckingtight <> caves-1623/258/feckingtight
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19416, now:19424)
+> > > > - Include path found, including - caves-1623/258/grikeexpectations
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/grikeexpectations
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:grikeexpectations, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/grikeexpectations <> caves-1623/258/grikeexpectations
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 14 (previous: 19424, now:19438)
+> > > > - Include path found, including - caves-1623/258/inferno
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/258 <> caves-1623/258/inferno
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:inferno, creating new SurvexBlock
+> > > > > > - MEM:49.92578125 Reading. parent:caves-1623/258/inferno <> caves-1623/258/inferno
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 20 (previous: 19438, now:19458)
+> > > > - Include path found, including - caves-1623/258/anthemusa
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/anthemusa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:anthemusa, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/anthemusa <> caves-1623/258/anthemusa
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 17 (previous: 19458, now:19475)
+> > > > - Include path found, including - caves-1623/258/flashhard
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flashhard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flashhard, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/flashhard <> caves-1623/258/flashhard
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 4 (previous: 19475, now:19479)
+> > > > - Include path found, including - caves-1623/258/flashhard2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/flashhard2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:flashhard2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/flashhard2 <> caves-1623/258/flashhard2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 9 (previous: 19479, now:19488)
+> > > > - Include path found, including - caves-1623/258/claytonscockup
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/claytonscockup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:claytonscockup, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/claytonscockup <> caves-1623/258/claytonscockup
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 7 (previous: 19488, now:19495)
+> > > > - Include path found, including - caves-1623/258/penguinfellatio2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/penguinfellatio2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:penguinfellatio2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/penguinfellatio2 <> caves-1623/258/penguinfellatio2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 11 (previous: 19495, now:19506)
+> > > > - Include path found, including - caves-1623/258/daftchoice
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:daftchoice, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/daftchoice <> caves-1623/258/daftchoice
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 38 (previous: 19506, now:19544)
+> > > > - Include path found, including - caves-1623/258/daftchoice2
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:daftchoice2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/daftchoice2 <> caves-1623/258/daftchoice2
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 8 (previous: 19544, now:19552)
+> > > > - Include path found, including - caves-1623/258/daftchoice3
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/daftchoice3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:daftchoice3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/daftchoice3 <> caves-1623/258/daftchoice3
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19552, now:19558)
+> > > > - Include path found, including - caves-1623/258/whatwouldyourmothersay
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/whatwouldyourmothersay
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:whatwouldyourmothersay, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/whatwouldyourmothersay <> caves-1623/258/whatwouldyourmothersay
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 16 (previous: 19558, now:19574)
+> > > > - Include path found, including - caves-1623/258/wrongway
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/wrongway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:wrongway, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/wrongway <> caves-1623/258/wrongway
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 51 (previous: 19574, now:19625)
+> > > > - Include path found, including - caves-1623/258/not_the_beast
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/not_the_beast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:not_the_beast, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/not_the_beast <> caves-1623/258/not_the_beast
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 10 (previous: 19625, now:19635)
+> > > > - Include path found, including - caves-1623/258/riggermortis
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/riggermortis
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:riggermortis, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/riggermortis <> caves-1623/258/riggermortis
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 34 (previous: 19635, now:19669)
+> > > > - Include path found, including - caves-1623/258/thebeastloop
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/thebeastloop
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:thebeastloop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/thebeastloop <> caves-1623/258/thebeastloop
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 5 (previous: 19669, now:19674)
+> > > > - Include path found, including - caves-1623/258/beastsideleads
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/beastsideleads
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:beastsideleads, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/beastsideleads <> caves-1623/258/beastsideleads
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 3 (previous: 19674, now:19677)
+> > > > - Include path found, including - caves-1623/258/corroborate
+> > > > - Match in DB (i) for cave 1623-258.
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/258 <> caves-1623/258/corroborate
+[<Cave: 1623-258>, <Cave: 1623-258>]
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > - Begin found for:corroborate1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/258/corroborate <> caves-1623/258/corroborate
+[<Cave: 1623-258>, <Cave: 1623-258>]
+> > > > > LEGS: 6 (previous: 19677, now:19683)
+> > > > LEGS: 3371 (previous: 16312, now:19683)
+> > > - Include path found, including - caves-1623/264/264
+> > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> caves-1623/264/264
+[<Cave: 1623-264>]
+> > > > - Begin found for:264, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/264
+[<Cave: 1623-264>]
+> > > > - Include path found, including - caves-1623/264/lower_balkon/lower_balkon
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lower_balkon/lower_balkon
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lower_balkon, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lower_balkon
+[<Cave: 1623-264>]
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/naturecalls
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/naturecalls
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:naturecalls, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/naturecalls <> caves-1623/264/lower_balkon/naturecalls
+[<Cave: 1623-264>]
+> > > > > > LEGS: 9 (previous: 19683, now:19692)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mash
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mash, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mash <> caves-1623/264/lower_balkon/mash
+[<Cave: 1623-264>]
+> > > > > > LEGS: 48 (previous: 19692, now:19740)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mash2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mash2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mash2 <> caves-1623/264/lower_balkon/mash2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 65 (previous: 19740, now:19805)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/hangman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:hangman, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/hangman <> caves-1623/264/lower_balkon/hangman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 145 (previous: 19805, now:19950)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangmansdaughter
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:hangmansdaughter, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/hangmansdaughter <> caves-1623/264/lower_balkon/hangmansdaughter
+[<Cave: 1623-264>]
+> > > > > > LEGS: 217 (previous: 19950, now:20167)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/prangman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/prangman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:prangman, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/prangman <> caves-1623/264/lower_balkon/prangman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 55 (previous: 20167, now:20222)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/snailtrail
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/snailtrail
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:snailtrail, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/snailtrail <> caves-1623/264/lower_balkon/snailtrail
+[<Cave: 1623-264>]
+> > > > > > LEGS: 206 (previous: 20222, now:20428)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/sluggish
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/sluggish
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:sluggish, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/sluggish <> caves-1623/264/lower_balkon/sluggish
+[<Cave: 1623-264>]
+> > > > > > LEGS: 173 (previous: 20428, now:20601)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mudslope
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mudslope, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mudslope <> caves-1623/264/lower_balkon/mudslope
+[<Cave: 1623-264>]
+> > > > > > LEGS: 241 (previous: 20601, now:20842)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/choked
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/choked
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:choked, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/choked <> caves-1623/264/lower_balkon/choked
+[<Cave: 1623-264>]
+> > > > > > LEGS: 152 (previous: 20842, now:20994)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mudslope2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mudslope2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mudslope2 <> caves-1623/264/lower_balkon/mudslope2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 255 (previous: 20994, now:21249)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mongolrally
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mongolrally
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mongolrally, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mongolrally <> caves-1623/264/lower_balkon/mongolrally
+[<Cave: 1623-264>]
+> > > > > > LEGS: 398 (previous: 21249, now:21647)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/littleboy
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboy
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:littleboy, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/littleboy <> caves-1623/264/lower_balkon/littleboy
+[<Cave: 1623-264>]
+> > > > > > LEGS: 1169 (previous: 21647, now:22816)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/floodland
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/floodland
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:floodland, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/floodland <> caves-1623/264/lower_balkon/floodland
+[<Cave: 1623-264>]
+> > > > > > LEGS: 93 (previous: 22816, now:22909)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/catlitter
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/catlitter
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:catlitter, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/catlitter <> caves-1623/264/lower_balkon/catlitter
+[<Cave: 1623-264>]
+> > > > > > LEGS: 7 (previous: 22909, now:22916)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/myopia
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:myopia, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/myopia <> caves-1623/264/lower_balkon/myopia
+[<Cave: 1623-264>]
+> > > > > > LEGS: 11 (previous: 22916, now:22927)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop <> caves-1623/264/lower_balkon/pitstop
+[<Cave: 1623-264>]
+> > > > > > LEGS: 56 (previous: 22927, now:22983)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/safencomfortable
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/safencomfortable
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:safencomfortable, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/safencomfortable <> caves-1623/264/lower_balkon/safencomfortable
+[<Cave: 1623-264>]
+> > > > > > LEGS: 43 (previous: 22983, now:23026)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/turnbacktime
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/turnbacktime
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:turnbacktime, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/turnbacktime <> caves-1623/264/lower_balkon/turnbacktime
+[<Cave: 1623-264>]
+> > > > > > LEGS: 21 (previous: 23026, now:23047)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop_2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop_2 <> caves-1623/264/lower_balkon/pitstop_2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 2 (previous: 23047, now:23049)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_3
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop_3, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop_3 <> caves-1623/264/lower_balkon/pitstop_3
+[<Cave: 1623-264>]
+> > > > > > LEGS: 7 (previous: 23049, now:23056)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/pitstop_4
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:pitstop_4, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/pitstop_4 <> caves-1623/264/lower_balkon/pitstop_4
+[<Cave: 1623-264>]
+> > > > > > LEGS: 9 (previous: 23056, now:23065)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/suctioncup
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/suctioncup
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:suctioncup, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/suctioncup <> caves-1623/264/lower_balkon/suctioncup
+[<Cave: 1623-264>]
+> > > > > > LEGS: 371 (previous: 23065, now:23436)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/onedirection
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/onedirection
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:onedirection, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/onedirection <> caves-1623/264/lower_balkon/onedirection
+[<Cave: 1623-264>]
+> > > > > > LEGS: 28 (previous: 23436, now:23464)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/scoopyloopy
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/scoopyloopy
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:scoopyloopy, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/scoopyloopy <> caves-1623/264/lower_balkon/scoopyloopy
+[<Cave: 1623-264>]
+> > > > > > LEGS: 12 (previous: 23464, now:23476)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/2cold2think
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/2cold2think
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:2cold2think, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/2cold2think <> caves-1623/264/lower_balkon/2cold2think
+[<Cave: 1623-264>]
+> > > > > > LEGS: 64 (previous: 23476, now:23540)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/mush
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mush
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:mush, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/mush <> caves-1623/264/lower_balkon/mush
+[<Cave: 1623-264>]
+> > > > > > LEGS: 465 (previous: 23540, now:24005)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/rubberman
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubberman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:rubberman, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/rubberman <> caves-1623/264/lower_balkon/rubberman
+[<Cave: 1623-264>]
+> > > > > > LEGS: 217 (previous: 24005, now:24222)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/rubbermanstream
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubbermanstream
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:rubbermanstream, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/rubbermanstream <> caves-1623/264/lower_balkon/rubbermanstream
+[<Cave: 1623-264>]
+> > > > > > LEGS: 86 (previous: 24222, now:24308)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/camploop
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/camploop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:camploop, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/camploop <> caves-1623/264/lower_balkon/camploop
+[<Cave: 1623-264>]
+> > > > > > LEGS: 35 (previous: 24308, now:24343)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/waterhole
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/waterhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:waterhole, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/waterhole <> caves-1623/264/lower_balkon/waterhole
+[<Cave: 1623-264>]
+> > > > > > LEGS: 18 (previous: 24343, now:24361)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboyboltclimbs
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:littleboyboltclimbs, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/littleboyboltclimbs <> caves-1623/264/lower_balkon/littleboyboltclimbs
+[<Cave: 1623-264>]
+> > > > > > LEGS: 4 (previous: 24361, now:24365)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:lbbeneaththeboulders, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lbbeneaththeboulders <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+[<Cave: 1623-264>]
+> > > > > > LEGS: 10 (previous: 24365, now:24375)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/ntdwyt
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ntdwyt
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:ntdwyt, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/ntdwyt <> caves-1623/264/lower_balkon/ntdwyt
+[<Cave: 1623-264>]
+> > > > > > LEGS: 6 (previous: 24375, now:24381)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/northernpowerhouse
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:northernpowerhouse, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/northernpowerhouse <> caves-1623/264/lower_balkon/northernpowerhouse
+[<Cave: 1623-264>]
+> > > > > > LEGS: 202 (previous: 24381, now:24583)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:youdontknowyourebeautiful, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/youdontknowyourebeautiful <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+[<Cave: 1623-264>]
+> > > > > > LEGS: 237 (previous: 24583, now:24820)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/microscopicthunder
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/microscopicthunder
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:microscopicthunder, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/microscopicthunder <> caves-1623/264/lower_balkon/microscopicthunder
+[<Cave: 1623-264>]
+> > > > > > LEGS: 62 (previous: 24820, now:24882)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ichfuhlenichts
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:ichfuhlenichts, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/ichfuhlenichts <> caves-1623/264/lower_balkon/ichfuhlenichts
+[<Cave: 1623-264>]
+> > > > > > LEGS: 118 (previous: 24882, now:25000)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/einfach
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/einfach
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:einfach, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/einfach <> caves-1623/264/lower_balkon/einfach
+[<Cave: 1623-264>]
+> > > > > > LEGS: 20 (previous: 25000, now:25020)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lipstickdipstick
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:lipstickdipstick, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lipstickdipstick <> caves-1623/264/lower_balkon/lipstickdipstick
+[<Cave: 1623-264>]
+> > > > > > LEGS: 19 (previous: 25020, now:25039)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/medusasmaze
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:medusasmaze, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/medusasmaze <> caves-1623/264/lower_balkon/medusasmaze
+[<Cave: 1623-264>]
+> > > > > > LEGS: 32 (previous: 25039, now:25071)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/medusasmaze2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:medusasmaze2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/medusasmaze2 <> caves-1623/264/lower_balkon/medusasmaze2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 33 (previous: 25071, now:25104)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/wheresthemilk
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/wheresthemilk
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:wheresthemilk, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/wheresthemilk <> caves-1623/264/lower_balkon/wheresthemilk
+[<Cave: 1623-264>]
+> > > > > > LEGS: 6 (previous: 25104, now:25110)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/drunkdrivers
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/drunkdrivers
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:drunkdrivers, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/drunkdrivers <> caves-1623/264/lower_balkon/drunkdrivers
+[<Cave: 1623-264>]
+> > > > > > LEGS: 3 (previous: 25110, now:25113)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/custardcavalry
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/custardcavalry
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:custardcavalry, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/custardcavalry <> caves-1623/264/lower_balkon/custardcavalry
+[<Cave: 1623-264>]
+> > > > > > LEGS: 2 (previous: 25113, now:25115)
+> > > > > - Include path found, including - caves-1623/264/lower_balkon/myopia2
+> > > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > > - Begin found for:myopia2, creating new SurvexBlock
+> > > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lower_balkon/myopia2 <> caves-1623/264/lower_balkon/myopia2
+[<Cave: 1623-264>]
+> > > > > > LEGS: 3 (previous: 25115, now:25118)
+> > > > > LEGS: 5435 (previous: 19683, now:25118)
+> > > > - Include path found, including - caves-1623/264/horizontalentrance
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/horizontalentrance
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:horizontalentrance, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/horizontalentrance <> caves-1623/264/horizontalentrance
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25118, now:25126)
+> > > > - Include path found, including - caves-1623/264/entrancepitch1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:entrancepitch1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/entrancepitch1 <> caves-1623/264/entrancepitch1
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25126, now:25129)
+> > > > - Include path found, including - caves-1623/264/entrancepitch2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:entrancepitch2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/entrancepitch2 <> caves-1623/264/entrancepitch2
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25129, now:25134)
+> > > > - Include path found, including - caves-1623/264/roomwithaview
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roomwithaview, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roomwithaview <> caves-1623/264/roomwithaview
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 25134, now:25144)
+> > > > - Include path found, including - caves-1623/264/roommop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roommop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roommop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roommop <> caves-1623/264/roommop
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25144, now:25147)
+> > > > - Include path found, including - caves-1623/264/roomwithaview2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roomwithaview2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roomwithaview2 <> caves-1623/264/roomwithaview2
+[<Cave: 1623-264>]
+> > > > > LEGS: 20 (previous: 25147, now:25167)
+> > > > - Include path found, including - caves-1623/264/smashcrashpassage
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/smashcrashpassage
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:smashcrashpassage, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/smashcrashpassage <> caves-1623/264/smashcrashpassage
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25167, now:25179)
+> > > > - Include path found, including - caves-1623/264/crashmop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/crashmop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:crashmop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/crashmop <> caves-1623/264/crashmop
+[<Cave: 1623-264>]
+> > > > > LEGS: 26 (previous: 25179, now:25205)
+> > > > - Include path found, including - caves-1623/264/liarsbakery
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/liarsbakery
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:liarsbakery, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/liarsbakery <> caves-1623/264/liarsbakery
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 25205, now:25220)
+> > > > - Include path found, including - caves-1623/264/pitpot
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitpot, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitpot <> caves-1623/264/pitpot
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25220, now:25222)
+> > > > - Include path found, including - caves-1623/264/lemonsnout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lemonsnout, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lemonsnout <> caves-1623/264/lemonsnout
+[<Cave: 1623-264>]
+> > > > > LEGS: 27 (previous: 25222, now:25249)
+> > > > - Include path found, including - caves-1623/264/leedsbypass
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:leedsbypass, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/leedsbypass <> caves-1623/264/leedsbypass
+[<Cave: 1623-264>]
+> > > > > LEGS: 37 (previous: 25249, now:25286)
+> > > > - Include path found, including - caves-1623/264/pitpot2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitpot2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitpot2 <> caves-1623/264/pitpot2
+[<Cave: 1623-264>]
+> > > > > LEGS: 13 (previous: 25286, now:25299)
+> > > > - Include path found, including - caves-1623/264/pitpot3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitpot3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitpot3 <> caves-1623/264/pitpot3
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25299, now:25304)
+> > > > - Include path found, including - caves-1623/264/amalgamation
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/amalgamation
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:amalgamation, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/amalgamation <> caves-1623/264/amalgamation
+[<Cave: 1623-264>]
+> > > > > LEGS: 48 (previous: 25304, now:25352)
+> > > > - Include path found, including - caves-1623/264/darkarts
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkarts
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkarts, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkarts <> caves-1623/264/darkarts
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25352, now:25363)
+> > > > - Include path found, including - caves-1623/264/darkartsII
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsII
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsii, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsII <> caves-1623/264/darkartsII
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 25363, now:25373)
+> > > > - Include path found, including - caves-1623/264/darkartsI
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsI
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsi, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsI <> caves-1623/264/darkartsI
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 25373, now:25388)
+> > > > - Include path found, including - caves-1623/264/leedsbypass2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:leedsbypass2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/leedsbypass2 <> caves-1623/264/leedsbypass2
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25388, now:25400)
+> > > > - Include path found, including - caves-1623/264/darkartsiii
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiii
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsiii, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsiii <> caves-1623/264/darkartsiii
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 25400, now:25405)
+> > > > - Include path found, including - caves-1623/264/scrottytubei
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubei
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:scrottytubei, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/scrottytubei <> caves-1623/264/scrottytubei
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25405, now:25408)
+> > > > - Include path found, including - caves-1623/264/scrottytubeii
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubeii
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:scrottytubeii, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/scrottytubeii <> caves-1623/264/scrottytubeii
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25408, now:25415)
+> > > > - Include path found, including - caves-1623/264/lemonsnoutrosyringpiece
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnoutrosyringpiece
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lemonsnoutrosyringpiece, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lemonsnoutrosyringpiece <> caves-1623/264/lemonsnoutrosyringpiece
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25415, now:25421)
+> > > > - Include path found, including - caves-1623/264/pointlesssniffing
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointlesssniffing
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pointlesssniffing, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pointlesssniffing <> caves-1623/264/pointlesssniffing
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25421, now:25423)
+> > > > - Include path found, including - caves-1623/264/deadbatpitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:deadbatpitch, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/deadbatpitch <> caves-1623/264/deadbatpitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25423, now:25430)
+> > > > - Include path found, including - caves-1623/264/deadbatpitchconn
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitchconn
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:deadbatpitchconn, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/deadbatpitchconn <> caves-1623/264/deadbatpitchconn
+[<Cave: 1623-264>]
+> > > > > LEGS: 1 (previous: 25430, now:25431)
+> > > > - Include path found, including - caves-1623/264/lemoncrapout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemoncrapout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lemoncrapout, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lemoncrapout <> caves-1623/264/lemoncrapout
+[<Cave: 1623-264>]
+> > > > > LEGS: 16 (previous: 25431, now:25447)
+> > > > - Include path found, including - caves-1623/264/farside
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/farside
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:farside, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/farside <> caves-1623/264/farside
+[<Cave: 1623-264>]
+> > > > > LEGS: 77 (previous: 25447, now:25524)
+> > > > - Include path found, including - caves-1623/264/turtlehead
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtlehead
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:turtlehead, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/turtlehead <> caves-1623/264/turtlehead
+[<Cave: 1623-264>]
+> > > > > LEGS: 48 (previous: 25524, now:25572)
+> > > > - Include path found, including - caves-1623/264/turtleheadco
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtleheadco
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:turtleheadco, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/turtleheadco <> caves-1623/264/turtleheadco
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25572, now:25578)
+> > > > - Include path found, including - caves-1623/264/leedsbypass3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:leedsbypass3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/leedsbypass3 <> caves-1623/264/leedsbypass3
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25578, now:25581)
+> > > > - Include path found, including - caves-1623/264/hiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplenty
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltiaplenty, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltiaplenty <> caves-1623/264/hiltiaplenty
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 25581, now:25585)
+> > > > - Include path found, including - caves-1623/264/spanner
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/spanner
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:spanner, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/spanner <> caves-1623/264/spanner
+[<Cave: 1623-264>]
+> > > > > LEGS: 14 (previous: 25585, now:25599)
+> > > > - Include path found, including - caves-1623/264/cathedralchasm
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedralchasm, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralchasm <> caves-1623/264/cathedralchasm
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25599, now:25610)
+> > > > - Include path found, including - caves-1623/264/cathedralLC1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedrallc1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralLC1 <> caves-1623/264/cathedralLC1
+[<Cave: 1623-264>]
+> > > > > LEGS: 1 (previous: 25610, now:25611)
+> > > > - Include path found, including - caves-1623/264/cathedralLC2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedrallc2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralLC2 <> caves-1623/264/cathedralLC2
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25611, now:25619)
+> > > > - Include path found, including - caves-1623/264/avalancheexperience
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/avalancheexperience
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:avalancheexperience, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/avalancheexperience <> caves-1623/264/avalancheexperience
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 25619, now:25638)
+> > > > - Include path found, including - caves-1623/264/pitch59b
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitch59b
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pitch59b, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pitch59b <> caves-1623/264/pitch59b
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25638, now:25655)
+> > > > - Include path found, including - caves-1623/264/noserock
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:noserock, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/noserock <> caves-1623/264/noserock
+[<Cave: 1623-264>]
+> > > > > LEGS: 39 (previous: 25655, now:25694)
+> > > > - Include path found, including - caves-1623/264/einundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/einundzwanzig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:einundzwanzig, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/einundzwanzig <> caves-1623/264/einundzwanzig
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 25694, now:25706)
+> > > > - Include path found, including - caves-1623/264/icecock
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecock, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecock <> caves-1623/264/icecock
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 25706, now:25717)
+> > > > - Include path found, including - caves-1623/264/noserock2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:noserock2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/noserock2 <> caves-1623/264/noserock2
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25717, now:25723)
+> > > > - Include path found, including - caves-1623/264/northhole
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:northhole, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/northhole <> caves-1623/264/northhole
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25723, now:25740)
+> > > > - Include path found, including - caves-1623/264/icecock2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecock2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecock2 <> caves-1623/264/icecock2
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25740, now:25747)
+> > > > - Include path found, including - caves-1623/264/gosserwager
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager <> caves-1623/264/gosserwager
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 25747, now:25755)
+> > > > - Include path found, including - caves-1623/264/gosserwager2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager2 <> caves-1623/264/gosserwager2
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25755, now:25761)
+> > > > - Include path found, including - caves-1623/264/frozennorth
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth <> caves-1623/264/frozennorth
+[<Cave: 1623-264>]
+> > > > > LEGS: 18 (previous: 25761, now:25779)
+> > > > - Include path found, including - caves-1623/264/frozennorth2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth2 <> caves-1623/264/frozennorth2
+[<Cave: 1623-264>]
+> > > > > LEGS: 25 (previous: 25779, now:25804)
+> > > > - Include path found, including - caves-1623/264/icecockLC1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecocklc1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecockLC1 <> caves-1623/264/icecockLC1
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 25804, now:25807)
+> > > > - Include path found, including - caves-1623/264/icecockLC2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecocklc2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecockLC2 <> caves-1623/264/icecockLC2
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25807, now:25809)
+> > > > - Include path found, including - caves-1623/264/bipedal
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedal
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedal, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedal <> caves-1623/264/bipedal
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 25809, now:25811)
+> > > > - Include path found, including - caves-1623/264/frozennorth3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth3 <> caves-1623/264/frozennorth3
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 25811, now:25817)
+> > > > - Include path found, including - caves-1623/264/rabbitwarrens
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrens
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:rabbitwarrens, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/rabbitwarrens <> caves-1623/264/rabbitwarrens
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 25817, now:25836)
+> > > > - Include path found, including - caves-1623/264/digdug
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/digdug
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:digdug, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/digdug <> caves-1623/264/digdug
+[<Cave: 1623-264>]
+> > > > > LEGS: 57 (previous: 25836, now:25893)
+> > > > - Include path found, including - caves-1623/264/beyonddigdug
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyonddigdug
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:beyonddigdug, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/beyonddigdug <> caves-1623/264/beyonddigdug
+[<Cave: 1623-264>]
+> > > > > LEGS: 16 (previous: 25893, now:25909)
+> > > > - Include path found, including - caves-1623/264/beyondthunderdome
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyondthunderdome
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:beyondthunderdome, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/beyondthunderdome <> caves-1623/264/beyondthunderdome
+[<Cave: 1623-264>]
+> > > > > LEGS: 17 (previous: 25909, now:25926)
+> > > > - Include path found, including - caves-1623/264/pubicsynthesis
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pubicsynthesis
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pubicsynthesis, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pubicsynthesis <> caves-1623/264/pubicsynthesis
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 25926, now:25933)
+> > > > - Include path found, including - caves-1623/264/hiltiaplentypitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentypitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltiaplentypitch, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltiaplentypitch <> caves-1623/264/hiltiaplentypitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 38 (previous: 25933, now:25971)
+> > > > - Include path found, including - caves-1623/264/hiltiaplentychamber
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentychamber
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltiaplentychamber, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltiaplentychamber <> caves-1623/264/hiltiaplentychamber
+[<Cave: 1623-264>]
+> > > > > LEGS: 44 (previous: 25971, now:26015)
+> > > > - Include path found, including - caves-1623/264/ulsagrotto
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/ulsagrotto
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:ulsagrotto, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/ulsagrotto <> caves-1623/264/ulsagrotto
+[<Cave: 1623-264>]
+> > > > > LEGS: 73 (previous: 26015, now:26088)
+> > > > - Include path found, including - caves-1623/264/sponge_chamber
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sponge_chamber, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/sponge_chamber <> caves-1623/264/sponge_chamber
+[<Cave: 1623-264>]
+> > > > > LEGS: 56 (previous: 26088, now:26144)
+> > > > - Include path found, including - caves-1623/264/sponge_chamber2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sponge_chamber2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/sponge_chamber2 <> caves-1623/264/sponge_chamber2
+[<Cave: 1623-264>]
+> > > > > LEGS: 31 (previous: 26144, now:26175)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage <> caves-1623/264/bipedalpassage
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26175, now:26205)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage2 <> caves-1623/264/bipedalpassage2
+[<Cave: 1623-264>]
+> > > > > LEGS: 15 (previous: 26205, now:26220)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage3 <> caves-1623/264/bipedalpassage3
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26220, now:26224)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage4, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage4 <> caves-1623/264/bipedalpassage4
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26224, now:26231)
+> > > > - Include path found, including - caves-1623/264/icecock3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:icecock3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/icecock3 <> caves-1623/264/icecock3
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26231, now:26235)
+> > > > - Include path found, including - caves-1623/264/northhole2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:northhole2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/northhole2 <> caves-1623/264/northhole2
+[<Cave: 1623-264>]
+> > > > > LEGS: 9 (previous: 26235, now:26244)
+> > > > - Include path found, including - caves-1623/264/frozennorth4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:frozennorth4, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/frozennorth4 <> caves-1623/264/frozennorth4
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26244, now:26251)
+> > > > - Include path found, including - caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:rabbitwarrenstoeinundzwanzig, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/rabbitwarrenstoeinundzwanzig <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 26251, now:26257)
+> > > > - Include path found, including - caves-1623/264/gosserwager3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager3 <> caves-1623/264/gosserwager3
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26257, now:26267)
+> > > > - Include path found, including - caves-1623/264/bipedalpassage5
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage5
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:bipedalpassage5, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/bipedalpassage5 <> caves-1623/264/bipedalpassage5
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26267, now:26271)
+> > > > - Include path found, including - caves-1623/264/gosserwager4
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager4
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:gosserwager4, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/gosserwager4 <> caves-1623/264/gosserwager4
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26271, now:26275)
+> > > > - Include path found, including - caves-1623/264/belowhiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:belowhiltiaplenty, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/belowhiltiaplenty <> caves-1623/264/belowhiltiaplenty
+[<Cave: 1623-264>]
+> > > > > LEGS: 38 (previous: 26275, now:26313)
+> > > > - Include path found, including - caves-1623/264/belowhiltiaplenty2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:belowhiltiaplenty2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/belowhiltiaplenty2 <> caves-1623/264/belowhiltiaplenty2
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 26313, now:26315)
+> > > > - Include path found, including - caves-1623/264/penguinfellatio
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/penguinfellatio
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:penguinfellatio, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/penguinfellatio <> caves-1623/264/penguinfellatio
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26315, now:26323)
+> > > > - Include path found, including - caves-1623/264/voyeur
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/voyeur
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:voyeur, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/voyeur <> caves-1623/264/voyeur
+[<Cave: 1623-264>]
+> > > > > LEGS: 7 (previous: 26323, now:26330)
+> > > > - Include path found, including - caves-1623/264/darkartsiv
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiv
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsiv, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsiv <> caves-1623/264/darkartsiv
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26330, now:26334)
+> > > > - Include path found, including - caves-1623/264/darkartsv
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsv
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsv, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsv <> caves-1623/264/darkartsv
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26334, now:26339)
+> > > > - Include path found, including - caves-1623/264/darkartsvi
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsvi
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:darkartsvi, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/darkartsvi <> caves-1623/264/darkartsvi
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26339, now:26344)
+> > > > - Include path found, including - caves-1623/264/tightyorkshireman
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/tightyorkshireman
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:tightyorkshireman, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/tightyorkshireman <> caves-1623/264/tightyorkshireman
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26344, now:26352)
+> > > > - Include path found, including - caves-1623/264/swingers
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/swingers
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:swingers, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/swingers <> caves-1623/264/swingers
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26352, now:26357)
+> > > > - Include path found, including - caves-1623/264/crushedplumbspitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/crushedplumbspitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:crushedplumbspitch, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/crushedplumbspitch <> caves-1623/264/crushedplumbspitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 5 (previous: 26357, now:26362)
+> > > > - Include path found, including - caves-1623/264/tinaturnersmerkin
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/tinaturnersmerkin
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:tinaturnersmerkin, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/tinaturnersmerkin <> caves-1623/264/tinaturnersmerkin
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 26362, now:26373)
+> > > > - Include path found, including - caves-1623/264/underexcitment
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/underexcitment
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:underexcitment, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/underexcitment <> caves-1623/264/underexcitment
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26373, now:26383)
+> > > > - Include path found, including - caves-1623/264/consolidation
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/consolidation
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:consolidation, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/consolidation <> caves-1623/264/consolidation
+[<Cave: 1623-264>]
+> > > > > LEGS: 59 (previous: 26383, now:26442)
+> > > > - Include path found, including - caves-1623/264/oneshotwonder
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/oneshotwonder
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:oneshotwonder, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/oneshotwonder <> caves-1623/264/oneshotwonder
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26442, now:26472)
+> > > > - Include path found, including - caves-1623/264/longdrop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:longdrop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/longdrop <> caves-1623/264/longdrop
+[<Cave: 1623-264>]
+> > > > > LEGS: 20 (previous: 26472, now:26492)
+> > > > - Include path found, including - caves-1623/264/northern_straight
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/northern_straight
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:northernstraight, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/northern_straight <> caves-1623/264/northern_straight
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26492, now:26522)
+> > > > - Include path found, including - caves-1623/264/snowhole
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/snowhole
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:snowhole, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/snowhole <> caves-1623/264/snowhole
+[<Cave: 1623-264>]
+> > > > > LEGS: 55 (previous: 26522, now:26577)
+> > > > - Include path found, including - caves-1623/264/roundabout
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/roundabout
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:roundabout, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/roundabout <> caves-1623/264/roundabout
+[<Cave: 1623-264>]
+> > > > > LEGS: 30 (previous: 26577, now:26607)
+> > > > - Include path found, including - caves-1623/264/caving101
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/caving101
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:caving101, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/caving101 <> caves-1623/264/caving101
+[<Cave: 1623-264>]
+> > > > > LEGS: 2 (previous: 26607, now:26609)
+> > > > - Include path found, including - caves-1623/264/doublescoop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:doublescoop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/doublescoop <> caves-1623/264/doublescoop
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26609, now:26619)
+> > > > - Include path found, including - caves-1623/264/doublescoop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:doublescoop2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/doublescoop2 <> caves-1623/264/doublescoop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 8 (previous: 26619, now:26627)
+> > > > - Include path found, including - caves-1623/264/fatmanscoop
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:fatmanscoop, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/fatmanscoop <> caves-1623/264/fatmanscoop
+[<Cave: 1623-264>]
+> > > > > LEGS: 10 (previous: 26627, now:26637)
+> > > > - Include path found, including - caves-1623/264/fatmanscoop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:fatmanscoop2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/fatmanscoop2 <> caves-1623/264/fatmanscoop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 3 (previous: 26637, now:26640)
+> > > > - Include path found, including - caves-1623/264/badattitude
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/badattitude
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:badattitude, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/badattitude <> caves-1623/264/badattitude
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 26640, now:26652)
+> > > > - Include path found, including - caves-1623/264/lets_be_appalling
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/lets_be_appalling
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:lets_be_appalling, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/lets_be_appalling <> caves-1623/264/lets_be_appalling
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 26652, now:26671)
+> > > > - Include path found, including - caves-1623/264/cant_stop_bat_country
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cant_stop_bat_country
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cant_stop_bat_country, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cant_stop_bat_country <> caves-1623/264/cant_stop_bat_country
+[<Cave: 1623-264>]
+> > > > > LEGS: 26 (previous: 26671, now:26697)
+> > > > - Include path found, including - caves-1623/264/watertorture
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/watertorture
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:watertorture, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/watertorture <> caves-1623/264/watertorture
+[<Cave: 1623-264>]
+> > > > > LEGS: 4 (previous: 26697, now:26701)
+> > > > - Include path found, including - caves-1623/264/keepsongiving
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/keepsongiving
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:keepsongiving, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/keepsongiving <> caves-1623/264/keepsongiving
+[<Cave: 1623-264>]
+> > > > > LEGS: 13 (previous: 26701, now:26714)
+> > > > - Include path found, including - caves-1623/264/hiltigalactica
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltigalactica
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hiltigalactica, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hiltigalactica <> caves-1623/264/hiltigalactica
+[<Cave: 1623-264>]
+> > > > > LEGS: 247 (previous: 26714, now:26961)
+> > > > - Include path found, including - caves-1623/264/cathedralchasm2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:cathedralchasm2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/cathedralchasm2 <> caves-1623/264/cathedralchasm2
+[<Cave: 1623-264>]
+> > > > > LEGS: 195 (previous: 26961, now:27156)
+> > > > - Include path found, including - caves-1623/264/longdrop2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:longdrop2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/longdrop2 <> caves-1623/264/longdrop2
+[<Cave: 1623-264>]
+> > > > > LEGS: 92 (previous: 27156, now:27248)
+> > > > - Include path found, including - caves-1623/264/sloppyseconds1
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds1
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sloppyseconds1, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/sloppyseconds1 <> caves-1623/264/sloppyseconds1
+[<Cave: 1623-264>]
+> > > > > LEGS: 40 (previous: 27248, now:27288)
+> > > > - Include path found, including - caves-1623/264/galactica
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/galactica
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:galactica, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/galactica <> caves-1623/264/galactica
+[<Cave: 1623-264>]
+> > > > > LEGS: 23 (previous: 27288, now:27311)
+> > > > - Include path found, including - caves-1623/264/sloppyseconds2
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds2
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:sloppyseconds2, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/sloppyseconds2 <> caves-1623/264/sloppyseconds2
+[<Cave: 1623-264>]
+> > > > > LEGS: 11 (previous: 27311, now:27322)
+> > > > - Include path found, including - caves-1623/264/nothingtosee
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:nothingtosee, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/nothingtosee <> caves-1623/264/nothingtosee
+[<Cave: 1623-264>]
+> > > > > LEGS: 22 (previous: 27322, now:27344)
+> > > > - Include path found, including - caves-1623/264/the_mendips
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_mendips
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:the_mendips, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/the_mendips <> caves-1623/264/the_mendips
+[<Cave: 1623-264>]
+> > > > > LEGS: 257 (previous: 27344, now:27601)
+> > > > - Include path found, including - caves-1623/264/mysterious_schlag
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/mysterious_schlag
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:mysterious_schlag, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/mysterious_schlag <> caves-1623/264/mysterious_schlag
+[<Cave: 1623-264>]
+> > > > > LEGS: 33 (previous: 27601, now:27634)
+> > > > - Include path found, including - caves-1623/264/pointless_dig
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointless_dig
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:pointless_dig, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/pointless_dig <> caves-1623/264/pointless_dig
+[<Cave: 1623-264>]
+> > > > > LEGS: 21 (previous: 27634, now:27655)
+> > > > - Include path found, including - caves-1623/264/secondwind
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondwind
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:secondwind, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/secondwind <> caves-1623/264/secondwind
+[<Cave: 1623-264>]
+> > > > > LEGS: 28 (previous: 27655, now:27683)
+> > > > - Include path found, including - caves-1623/264/secondhand
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondhand
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:secondhand, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/secondhand <> caves-1623/264/secondhand
+[<Cave: 1623-264>]
+> > > > > LEGS: 6 (previous: 27683, now:27689)
+> > > > - Include path found, including - caves-1623/264/dog_end_series
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/dog_end_series
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:dog_end_series, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/dog_end_series <> caves-1623/264/dog_end_series
+[<Cave: 1623-264>]
+> > > > > LEGS: 12 (previous: 27689, now:27701)
+> > > > - Include path found, including - caves-1623/264/nothing2see
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothing2see
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:nothing2see, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/nothing2see <> caves-1623/264/nothing2see
+[<Cave: 1623-264>]
+> > > > > LEGS: 18 (previous: 27701, now:27719)
+> > > > - Include path found, including - caves-1623/264/nothingtosee3
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee3
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:nothingtosee3, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/nothingtosee3 <> caves-1623/264/nothingtosee3
+[<Cave: 1623-264>]
+> > > > > LEGS: 19 (previous: 27719, now:27738)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_bones_pitch
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_bones_pitch
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hilti_nts_bones_pitch, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hilti_nts_bones_pitch <> caves-1623/264/hilti_nts_bones_pitch
+[<Cave: 1623-264>]
+> > > > > LEGS: 52 (previous: 27738, now:27790)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_near_bats
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_bats
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hilti_nts_near_bats, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hilti_nts_near_bats <> caves-1623/264/hilti_nts_near_bats
+[<Cave: 1623-264>]
+> > > > > LEGS: 44 (previous: 27790, now:27834)
+> > > > - Include path found, including - caves-1623/264/hilti_nts_near_start
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_start
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:hilti_nts_near_start, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/hilti_nts_near_start <> caves-1623/264/hilti_nts_near_start
+[<Cave: 1623-264>]
+> > > > > LEGS: 46 (previous: 27834, now:27880)
+> > > > - Include path found, including - caves-1623/264/the_backslash
+> > > > - Match in DB (i) for cave 1623-264.
+[<Cave: 1623-264>]
+> > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_backslash
+[<Cave: 1623-264>]
+[<Cave: 1623-264>]
+> > > > > - Begin found for:the_backslash, creating new SurvexBlock
+> > > > > > - MEM:49.9296875 Reading. parent:caves-1623/264/the_backslash <> caves-1623/264/the_backslash
+[<Cave: 1623-264>]
+> > > > > LEGS: 21 (previous: 27880, now:27901)
+> > > > LEGS: 8218 (previous: 19683, now:27901)
+> - Include path found, including - surface/1623/allsurface
+> - NO Match in DB (i) for a cave for surface/1623/allsurface
+> > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/allsurface
+> > - Include path found, including - surface/1623/allplateau
+> > - NO Match in DB (i) for a cave for surface/1623/allplateau
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/allplateau
+> > > - Include path found, including - surface/1623/p108
+> > > - NO Match in DB (i) for a cave for surface/1623/p108
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/p108
+> > > > - No match (b) for surface/1623/108surf
+> > > > - Begin found for:108surf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/p108 <> surface/1623/p108
+> > > > LEGS: 8 (previous: 27901, now:27909)
+> > > - Include path found, including - surface/1623/bogen
+> > > - NO Match in DB (i) for a cave for surface/1623/bogen
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/bogen
+> > > > - No match (b) for surface/1623/2006-06
+> > > > - Begin found for:2006-06, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/bogen <> surface/1623/bogen
+> > > > LEGS: 8 (previous: 27909, now:27917)
+> > > - Include path found, including - surface/1623/164surf
+> > > - NO Match in DB (i) for a cave for surface/1623/164surf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/164surf
+> > > > - No match (b) for surface/1623/164Surf
+> > > > - Begin found for:164surf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/164surf <> surface/1623/164surf
+> > > > LEGS: 18 (previous: 27917, now:27935)
+> > > - Include path found, including - surface/1623/172to171a
+> > > - NO Match in DB (i) for a cave for surface/1623/172to171a
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/172to171a
+> > > > - No match (b) for surface/1623/172to171a
+> > > > - Begin found for:172to171a, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/172to171a <> surface/1623/172to171a
+> > > > LEGS: 11 (previous: 27935, now:27946)
+> > > - Include path found, including - surface/1623/182area
+> > > - NO Match in DB (i) for a cave for surface/1623/182area
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/182area
+> > > > - No match (b) for surface/1623/182toTC
+> > > > - Begin found for:182totc, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/182area <> surface/1623/182area
+> > > > LEGS: 39 (previous: 27946, now:27985)
+> > > - Include path found, including - surface/1623/186totc
+> > > - NO Match in DB (i) for a cave for surface/1623/186totc
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/186totc
+> > > > - No match (b) for surface/1623/186toTC
+> > > > - Begin found for:186totc, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/186totc <> surface/1623/186totc
+> > > > LEGS: 21 (previous: 27985, now:28006)
+> > > - Include path found, including - surface/1623/b4surf
+> > > - NO Match in DB (i) for a cave for surface/1623/b4surf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/b4surf
+> > > > - No match (b) for surface/1623/b4surf
+> > > > - Begin found for:b4surf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/b4surf <> surface/1623/b4surf
+> > > > LEGS: 3 (previous: 28006, now:28009)
+> > > - Include path found, including - surface/1623/colto11
+> > > - NO Match in DB (i) for a cave for surface/1623/colto11
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/colto11
+> > > > - No match (b) for surface/1623/colto11
+> > > > - Begin found for:colto11, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/colto11 <> surface/1623/colto11
+> > > > LEGS: 10 (previous: 28009, now:28019)
+> > > - Include path found, including - surface/1623/2006-72_to_spit
+> > > - NO Match in DB (i) for a cave for surface/1623/2006-72_to_spit
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/2006-72_to_spit
+> > > > - No match (b) for surface/1623/2006-72_to_spit
+> > > > - Begin found for:2006-72_to_spit, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/2006-72_to_spit <> surface/1623/2006-72_to_spit
+> > > > LEGS: 11 (previous: 28019, now:28030)
+> > > - Include path found, including - surface/1623/colto97
+> > > - NO Match in DB (i) for a cave for surface/1623/colto97
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/colto97
+> > > > - No match (b) for surface/1623/145to145c
+> > > > - Begin found for:145to145c, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/colto97 <> surface/1623/colto97
+> > > > LEGS: 5 (previous: 28030, now:28035)
+> > > - Include path found, including - surface/1623/near06
+> > > - NO Match in DB (i) for a cave for surface/1623/near06
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/near06
+> > > > - No match (b) for surface/1623/near06
+> > > > - Begin found for:near06, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/near06 <> surface/1623/near06
+> > > > LEGS: 7 (previous: 28035, now:28042)
+> > > - Include path found, including - surface/1623/near06_2005
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2005
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/near06_2005
+> > > > - No match (b) for surface/1623/near06_2005
+> > > > - Begin found for:near06_2005, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/near06_2005 <> surface/1623/near06_2005
+> > > > LEGS: 7 (previous: 28042, now:28049)
+> > > - Include path found, including - surface/1623/99to2004-01
+> > > - NO Match in DB (i) for a cave for surface/1623/99to2004-01
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/99to2004-01
+> > > > - No match (b) for surface/1623/99to2004-01
+> > > > - Begin found for:99to2004-01, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/99to2004-01 <> surface/1623/99to2004-01
+> > > > LEGS: 3 (previous: 28049, now:28052)
+> > > - Include path found, including - surface/1623/near06_2006
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2006
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/near06_2006
+> > > > - No match (b) for surface/1623/99ob02_to_2005-93
+> > > > - Begin found for:99ob02_to_2005-93, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/near06_2006 <> surface/1623/near06_2006
+> > > > LEGS: 4 (previous: 28052, now:28056)
+> > > - Include path found, including - surface/1623/near06_2007
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2007
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/near06_2007
+> > > > - No match (b) for surface/1623/2007-70_to_271
+> > > > - Begin found for:2007-70_to_271, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/near06_2007 <> surface/1623/near06_2007
+> > > > LEGS: 3 (previous: 28056, now:28059)
+> > > - Include path found, including - surface/1623/104surf
+> > > - NO Match in DB (i) for a cave for surface/1623/104surf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/104surf
+> > > > - No match (b) for surface/1623/104surf
+> > > > - Begin found for:104surf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/104surf <> surface/1623/104surf
+> > > > LEGS: 3 (previous: 28059, now:28062)
+> > > - Include path found, including - surface/1623/nasetotc
+> > > - NO Match in DB (i) for a cave for surface/1623/nasetotc
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/nasetotc
+> > > > - No match (b) for surface/1623/nasetotc
+> > > > - Begin found for:nasetotc, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/nasetotc <> surface/1623/nasetotc
+> > > > LEGS: 13 (previous: 28062, now:28075)
+> > > - Include path found, including - surface/1623/neartc
+> > > - NO Match in DB (i) for a cave for surface/1623/neartc
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/neartc
+> > > > - No match (b) for surface/1623/TCto90
+> > > > - Begin found for:tcto90, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/neartc <> surface/1623/neartc
+> > > > ! Unparsed [*set]: 'decimal ./' surface/1623/neartc
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+> > > > LEGS: 13 (previous: 28075, now:28088)
+> > > - Include path found, including - surface/1623/tcto171
+> > > - NO Match in DB (i) for a cave for surface/1623/tcto171
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/tcto171
+> > > > - No match (b) for surface/1623/TCto171etc
+> > > > - Begin found for:tcto171etc, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/tcto171 <> surface/1623/tcto171
+> > > > LEGS: 29 (previous: 28088, now:28117)
+> > > - Include path found, including - surface/1623/tctocol
+> > > - NO Match in DB (i) for a cave for surface/1623/tctocol
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/tctocol
+> > > > - No match (b) for surface/1623/TCtoCol
+> > > > - Begin found for:tctocol, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/tctocol <> surface/1623/tctocol
+> > > > LEGS: 12 (previous: 28117, now:28129)
+> > > - Include path found, including - surface/1623/36tob4
+> > > - NO Match in DB (i) for a cave for surface/1623/36tob4
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/36tob4
+> > > > - No match (b) for surface/1623/36tob4
+> > > > - Begin found for:36tob4, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/36tob4 <> surface/1623/36tob4
+> > > > LEGS: 8 (previous: 28129, now:28137)
+> > > - Include path found, including - surface/1623/107-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/107-to-2012-70
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/107-to-2012-70
+> > > > - No match (b) for surface/1623/107to201270
+> > > > - Begin found for:107to201270, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/107-to-2012-70 <> surface/1623/107-to-2012-70
+> > > > LEGS: 5 (previous: 28137, now:28142)
+> > > - Include path found, including - surface/1623/157-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/157-to-2012-70
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/157-to-2012-70
+> > > > - No match (b) for surface/1623/157to201270
+> > > > - Begin found for:157to201270, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/157-to-2012-70 <> surface/1623/157-to-2012-70
+> > > > LEGS: 6 (previous: 28142, now:28148)
+> > - Include path found, including - surface/1623/allnrkh
+> > - NO Match in DB (i) for a cave for surface/1623/allnrkh
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/allnrkh
+> > > - Include path found, including - surface/1623/136to147
+> > > - NO Match in DB (i) for a cave for surface/1623/136to147
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/136to147
+> > > > - No match (b) for surface/1623/136to147
+> > > > - Begin found for:136to147, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/136to147 <> surface/1623/136to147
+> > > > LEGS: 15 (previous: 28148, now:28163)
+> > > - Include path found, including - surface/1623/147vor
+> > > - NO Match in DB (i) for a cave for surface/1623/147vor
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/147vor
+> > > > - No match (b) for surface/1623/147vor
+> > > > - Begin found for:147vor, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/147vor <> surface/1623/147vor
+> > > > LEGS: 22 (previous: 28163, now:28185)
+> > > - Include path found, including - surface/1623/162to163
+> > > - NO Match in DB (i) for a cave for surface/1623/162to163
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/162to163
+> > > > - No match (b) for surface/1623/surfnr161
+> > > > - Begin found for:surfnr161, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/162to163 <> surface/1623/162to163
+> > > > LEGS: 25 (previous: 28185, now:28210)
+> > > - Include path found, including - surface/1623/180-161c
+> > > - NO Match in DB (i) for a cave for surface/1623/180-161c
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/180-161c
+> > > > - No match (b) for surface/1623/180to161c
+> > > > - Begin found for:180to161c, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/180-161c <> surface/1623/180-161c
+> > > > LEGS: 10 (previous: 28210, now:28220)
+> > > - Include path found, including - surface/1623/161etof
+> > > - NO Match in DB (i) for a cave for surface/1623/161etof
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/161etof
+> > > > - No match (b) for surface/1623/161etof
+> > > > - Begin found for:161etof, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/161etof <> surface/1623/161etof
+> > > > LEGS: 6 (previous: 28220, now:28226)
+> > > - Include path found, including - surface/1623/161ftod
+> > > - NO Match in DB (i) for a cave for surface/1623/161ftod
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/161ftod
+> > > > - No match (b) for surface/1623/161ftod
+> > > > - Begin found for:161ftod, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/161ftod <> surface/1623/161ftod
+> > > > LEGS: 25 (previous: 28226, now:28251)
+> > > - Include path found, including - surface/1623/161etog
+> > > - NO Match in DB (i) for a cave for surface/1623/161etog
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/161etog
+> > > > - No match (b) for surface/1623/161etog
+> > > > - Begin found for:161etog, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/161etog <> surface/1623/161etog
+> > > > LEGS: 30 (previous: 28251, now:28281)
+> > > - Include path found, including - surface/1623/kansurf
+> > > - NO Match in DB (i) for a cave for surface/1623/kansurf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/kansurf
+> > > > - No match (b) for surface/1623/KanSurf
+> > > > - Begin found for:kansurf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/kansurf <> surface/1623/kansurf
+> > > > LEGS: 14 (previous: 28281, now:28295)
+> > > - Include path found, including - surface/1623/p136
+> > > - NO Match in DB (i) for a cave for surface/1623/p136
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/p136
+> > > > - No match (b) for surface/1623/136surf
+> > > > - Begin found for:136surf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/p136 <> surface/1623/p136
+> > > > LEGS: 15 (previous: 28295, now:28310)
+> > > - Include path found, including - surface/1623/p156
+> > > - NO Match in DB (i) for a cave for surface/1623/p156
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/p156
+> > > > - No match (b) for surface/1623/01to156
+> > > > - Begin found for:01to156, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/p156 <> surface/1623/p156
+> > > > LEGS: 4 (previous: 28310, now:28314)
+> > > - Include path found, including - surface/1623/surf161
+> > > - NO Match in DB (i) for a cave for surface/1623/surf161
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/surf161
+> > > > - No match (b) for surface/1623/Surf161
+> > > > - Begin found for:surf161, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/surf161 <> surface/1623/surf161
+> > > > LEGS: 28 (previous: 28314, now:28342)
+> > > - Include path found, including - surface/1623/vd1-161d
+> > > - NO Match in DB (i) for a cave for surface/1623/vd1-161d
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/vd1-161d
+> > > > - No match (b) for surface/1623/vd1to161d
+> > > > - Begin found for:vd1to161d, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/vd1-161d <> surface/1623/vd1-161d
+> > > > LEGS: 38 (previous: 28342, now:28380)
+> > > - No match (b) for surface/1623/162bodge
+> > > - Begin found for:162bodge, creating new SurvexBlock
+> > > > - MEM:49.9296875 Reading. parent:surface/1623/allnrkh <> surface/1623/allnrkh
+> > > LEGS: 0 (previous: 28380, now:28380)
+> > - Include path found, including - surface/1623/allhinter
+> > - NO Match in DB (i) for a cave for surface/1623/allhinter
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/allhinter
+> > > - Include path found, including - surface/1623/steinsrf
+> > > - NO Match in DB (i) for a cave for surface/1623/steinsrf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/steinsrf
+> > > > - No match (b) for surface/1623/steinsrf
+> > > > - Begin found for:steinsrf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/steinsrf <> surface/1623/steinsrf
+> > > > LEGS: 21 (previous: 28380, now:28401)
+> > > - Include path found, including - surface/1623/204atoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204atoc
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/204atoc
+> > > > - No match (b) for surface/1623/204atoc
+> > > > - Begin found for:204atoc, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/204atoc <> surface/1623/204atoc
+> > > > LEGS: 17 (previous: 28401, now:28418)
+> > > - Include path found, including - surface/1623/204d
+> > > - NO Match in DB (i) for a cave for surface/1623/204d
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/204d
+> > > > - No match (b) for surface/1623/204d
+> > > > - Begin found for:204d, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/204d <> surface/1623/204d
+> > > > LEGS: 13 (previous: 28418, now:28431)
+> > > - Include path found, including - surface/1623/204etoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204etoc
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/204etoc
+> > > > - No match (b) for surface/1623/204etoc
+> > > > - Begin found for:204etoc, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/204etoc <> surface/1623/204etoc
+> > > > LEGS: 6 (previous: 28431, now:28437)
+> > > - Include path found, including - surface/1623/204ato239
+> > > - NO Match in DB (i) for a cave for surface/1623/204ato239
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/204ato239
+> > > > - No match (b) for surface/1623/204ato239
+> > > > - Begin found for:204ato239, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/204ato239 <> surface/1623/204ato239
+> > > > LEGS: 10 (previous: 28437, now:28447)
+> > > - No match (b) for surface/1623/204cbodge
+> > > - Begin found for:204cbodge, creating new SurvexBlock
+> > > > - MEM:49.9296875 Reading. parent:surface/1623/allhinter <> surface/1623/allhinter
+> > > LEGS: 0 (previous: 28447, now:28447)
+> > - Include path found, including - surface/1623/allnr41
+> > - NO Match in DB (i) for a cave for surface/1623/allnr41
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/allnr41
+> > > - Include path found, including - surface/1623/p78
+> > > - NO Match in DB (i) for a cave for surface/1623/p78
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/p78
+> > > > - No match (b) for surface/1623/schwabsurf
+> > > > - Begin found for:schwabsurf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/p78 <> surface/1623/p78
+> > > > ! Unparsed [*set]: 'blank () ,' surface/1623/p78
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+! Length not added
+> > > > LEGS: 52 (previous: 28447, now:28499)
+> > > - Include path found, including - surface/1623/78to78d
+> > > - NO Match in DB (i) for a cave for surface/1623/78to78d
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/78to78d
+> > > > - No match (b) for surface/1623/E4
+> > > > - Begin found for:e4, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/78to78d <> surface/1623/78to78d
+> > > > LEGS: 23 (previous: 28499, now:28522)
+> > > - Include path found, including - surface/1623/domsurf
+> > > - NO Match in DB (i) for a cave for surface/1623/domsurf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/domsurf
+> > > > - No match (b) for surface/1623/dominosurf
+> > > > - Begin found for:dominosurf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/domsurf <> surface/1623/domsurf
+> > > > LEGS: 28 (previous: 28522, now:28550)
+> > > - Include path found, including - surface/1623/sonnausn
+> > > - NO Match in DB (i) for a cave for surface/1623/sonnausn
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/sonnausn
+> > > > - No match (b) for surface/1623/sonnausn
+> > > > - Begin found for:sonnausn, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/sonnausn <> surface/1623/sonnausn
+> > > > LEGS: 14 (previous: 28550, now:28564)
+> > > - Include path found, including - surface/1623/41toBunt
+> > > - NO Match in DB (i) for a cave for surface/1623/41toBunt
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/Hillside
+> > > > - Begin found for:hillside, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/82
+> > > > - Begin found for:82, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > LEGS: 33 (previous: 28564, now:28597)
+> > > - Include path found, including - surface/1623/lookfut
+> > > - NO Match in DB (i) for a cave for surface/1623/lookfut
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/lookfut
+> > > > - No match (b) for surface/1623/LookFutile
+> > > > - Begin found for:lookfutile, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/lookfut <> surface/1623/lookfut
+> > > > LEGS: 24 (previous: 28597, now:28621)
+> > > - Include path found, including - surface/1623/nipple
+> > > - NO Match in DB (i) for a cave for surface/1623/nipple
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/nipple
+> > > > - Begin found for:nipple, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/fix
+> > > > - Begin found for:fix, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > LEGS: 1 (previous: 28693, now:28694)
+> > > - Include path found, including - surface/1623/p155
+> > > - NO Match in DB (i) for a cave for surface/1623/p155
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/Nipto155
+> > > > - Begin found for:nipto155, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > LEGS: 23 (previous: 28694, now:28717)
+> > > - Include path found, including - surface/1623/L8to158
+> > > - NO Match in DB (i) for a cave for surface/1623/L8to158
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/L8to158
+> > > > - No match (b) for surface/1623/L8to158
+> > > > - Begin found for:l8to158, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/L8to158 <> surface/1623/L8to158
+> > > > LEGS: 17 (previous: 28717, now:28734)
+> > > - Include path found, including - surface/1623/stoger
+> > > - NO Match in DB (i) for a cave for surface/1623/stoger
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/Stogerweg
+> > > > - Begin found for:stogerweg, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > LEGS: 38 (previous: 28734, now:28772)
+> > > - Include path found, including - surface/1623/228ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/228ausn
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/228ausn
+> > > > - No match (b) for surface/1623/228ausn
+> > > > - Begin found for:228ausn, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/228ausn <> surface/1623/228ausn
+> > > > LEGS: 7 (previous: 28772, now:28779)
+> > > - Include path found, including - surface/1623/31ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/31ausn
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/31ausn
+> > > > - No match (b) for surface/1623/31ausn
+> > > > - Begin found for:31ausn, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/31ausn <> surface/1623/31ausn
+> > > > LEGS: 3 (previous: 28779, now:28782)
+> > - Include path found, including - surface/1623/allnr40
+> > - NO Match in DB (i) for a cave for surface/1623/allnr40
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/allnr40
+> > > - Include path found, including - surface/1623/weisausn
+> > > - NO Match in DB (i) for a cave for surface/1623/weisausn
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/weisausn
+> > > > - No match (b) for surface/1623/weisausn
+> > > > - Begin found for:weisausn, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/weisausn <> surface/1623/weisausn
+> > > > LEGS: 3 (previous: 28782, now:28785)
+> > > - Include path found, including - surface/1623/2002-W-02surf
+> > > - NO Match in DB (i) for a cave for surface/1623/2002-W-02surf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/2002-W-02surf
+> > > > - No match (b) for surface/1623/2002-w-02surf
+> > > > - Begin found for:2002-w-02surf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/2002-W-02surf <> surface/1623/2002-W-02surf
+> > > > LEGS: 2 (previous: 28785, now:28787)
+> > > - Include path found, including - surface/1623/eissurf
+> > > - NO Match in DB (i) for a cave for surface/1623/eissurf
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/eissurf
+> > > > - No match (b) for surface/1623/EisSurf
+> > > > - Begin found for:eissurf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/eissurf <> surface/1623/eissurf
+> > > > LEGS: 13 (previous: 28787, now:28800)
+> > > - Include path found, including - surface/1623/40ftoe
+> > > - NO Match in DB (i) for a cave for surface/1623/40ftoe
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/40ftoe
+> > > > - No match (b) for surface/1623/gruensurf
+> > > > - Begin found for:gruensurf, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/40ftoe <> surface/1623/40ftoe
+> > > > LEGS: 7 (previous: 28800, now:28807)
+> > > - Include path found, including - surface/1623/40to88
+> > > - NO Match in DB (i) for a cave for surface/1623/40to88
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/40to88
+> > > > - No match (b) for surface/1623/40to88
+> > > > - Begin found for:40to88, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/40to88 <> surface/1623/40to88
+> > > > LEGS: 15 (previous: 28807, now:28822)
+> > > - Include path found, including - surface/1623/e6ausen
+> > > - NO Match in DB (i) for a cave for surface/1623/e6ausen
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/e6ausen
+> > > > - No match (b) for surface/1623/e6ausen
+> > > > - Begin found for:e6ausen, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/e6ausen <> surface/1623/e6ausen
+> > > > LEGS: 10 (previous: 28822, now:28832)
+> > > - Include path found, including - surface/1623/vfhmdata
+> > > - NO Match in DB (i) for a cave for surface/1623/vfhmdata
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/vfhmdata
+> > > > - No match (b) for surface/1623/VfHMdata
+> > > > - Begin found for:vfhmdata, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/vfhmdata <> surface/1623/vfhmdata
+> > > > LEGS: 105 (previous: 28832, now:28937)
+> > > - Include path found, including - surface/1623/40ents
+> > > - NO Match in DB (i) for a cave for surface/1623/40ents
+> > > > - MEM:49.9296875 Reading. parent:kataster/1623 <> surface/1623/40ents
+> > > > - No match (b) for surface/1623/40entlink
+> > > > - Begin found for:40entlink, creating new SurvexBlock
+> > > > > - MEM:49.9296875 Reading. parent:surface/1623/40ents <> surface/1623/40ents
+> > > > LEGS: 12 (previous: 28937, now:28949)
+> - Include path found, including - fixedpts/gps/tracks/alltracks
+> - NO Match in DB (i) for a cave for fixedpts/gps/tracks/alltracks
+> > - MEM:49.9296875 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/alltracks
+> > - Include path found, including - fixedpts/gps/tracks/carpark-204
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-204
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-204
+> > > - No match (b) for fixedpts/gps/tracks/carpark-204
+> > > - Begin found for:carpark-204, creating new SurvexBlock
+> > > > - MEM:49.9296875 Reading. parent:fixedpts/gps/tracks/carpark-204 <> fixedpts/gps/tracks/carpark-204
+> > > LEGS: 0 (previous: 28949, now:28949)
+> > - Include path found, including - fixedpts/gps/tracks/carpark-40
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-40
+> > > - MEM:49.9296875 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-40
+> > > - No match (b) for fixedpts/gps/tracks/carpark-40
+> > > - Begin found for:carpark-40, creating new SurvexBlock
+> > > > - MEM:49.9296875 Reading. parent:fixedpts/gps/tracks/carpark-40 <> fixedpts/gps/tracks/carpark-40
+> > > LEGS: 0 (previous: 28949, now:28949)
+> LEGS: 28949 (previous: 0, now:28949)
+ - Include path found, including - gpx/2017/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2017/svx/all_gpx
+> - MEM:49.9296875 Reading. parent:1623 <> gpx/2017/svx/all_gpx
+> - Include path found, including - gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> - NO Match in DB (i) for a cave for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - MEM:49.9296875 Reading. parent:1623 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - Begin found for:car-park-to-stone-bridge_psargent-2017-08-06, creating new SurvexBlock
+> > > - MEM:49.9296875 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:49.9296875 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:49.9296875 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > LEGS: 70 (previous: 28949, now:29019)
+ - Include path found, including - gpx/2017/additional_info
+ - NO Match in DB (i) for a cave for gpx/2017/additional_info
+> - MEM:49.9296875 Reading. parent:1623 <> gpx/2017/additional_info
+ - Include path found, including - gpx/2018/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2018/svx/all_gpx
+> - MEM:49.9296875 Reading. parent:1623 <> gpx/2018/svx/all_gpx
+> - Include path found, including - gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - MEM:49.9296875 Reading. parent:1623 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - Begin found for:balkon-to-organhoehle_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:49.9296875 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:49.9296875 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:49.9296875 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > LEGS: 253 (previous: 29019, now:29272)
+> - Include path found, including - gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - MEM:49.9296875 Reading. parent:1623 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - Begin found for:fischgesicht-to-painted-track_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:49.93359375 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:49.93359375 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:49.93359375 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > LEGS: 297 (previous: 29272, now:29569)
+> - Include path found, including - gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - MEM:50.0234375 Reading. parent:1623 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - Begin found for:gschwandalm-to-car-park_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:50.09765625 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.09765625 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.09765625 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > LEGS: 721 (previous: 29569, now:30290)
+> - Include path found, including - gpx/2018/svx/painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - MEM:50.32421875 Reading. parent:1623 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - Begin found for:painted-track_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:50.32421875 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.32421875 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.32421875 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > LEGS: 696 (previous: 30290, now:30986)
+> - Include path found, including - gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - MEM:50.54296875 Reading. parent:1623 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - Begin found for:prospecting-kleiner-wildkogel_jtoft-2018-07-11, creating new SurvexBlock
+> > > - MEM:50.6171875 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:50.6171875 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:50.6171875 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > LEGS: 934 (previous: 30986, now:31920)
+> - Include path found, including - gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - MEM:50.9140625 Reading. parent:1623 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - Begin found for:prospecting-near-organhoehle_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:51.01953125 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:51.01953125 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:51.01953125 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > LEGS: 1144 (previous: 31920, now:33064)
+> - Include path found, including - gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - MEM:51.37109375 Reading. parent:1623 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - Begin found for:prospecting-nw-of-fischgesicht_mshinwell-2018-07-11, creating new SurvexBlock
+> > > - MEM:51.67578125 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:51.67578125 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:51.67578125 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > LEGS: 1858 (previous: 33064, now:34922)
+> - Include path found, including - gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - MEM:52.26171875 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - Begin found for:stone-bridge-to-balkon_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:52.26171875 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.26171875 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.26171875 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > LEGS: 187 (previous: 34922, now:35109)
+> - Include path found, including - gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - MEM:52.2734375 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - Begin found for:stone-bridge-to-fischgesicht_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > LEGS: 262 (previous: 35109, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_aday-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - MEM:52.2734375 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - Begin found for:waypoints_aday-2018-07-11, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-11 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - MEM:52.2734375 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - Begin found for:waypoints_aday-2018-07-12, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-12 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_jtoft-2018-07-14
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - MEM:52.2734375 Reading. parent:1623 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - No match (b) for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - Begin found for:waypoints_jtoft-2018-07-14, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/waypoints_jtoft-2018-07-14 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - MEM:52.2734375 Reading. parent:1623 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - Begin found for:waypoints_mshinwell-2018-07-11, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/waypoints_mshinwell-2018-07-11 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > LEGS: 0 (previous: 35371, now:35371)
+> - Include path found, including - gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> - NO Match in DB (i) for a cave for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - MEM:52.2734375 Reading. parent:1623 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - Begin found for:west-of-plateau_cdensham-2018-07-15, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > > - MEM:52.2734375 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > LEGS: 1402 (previous: 35371, now:36773)
+ - Include path found, including - kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+ - NO Match in DB (i) for a cave for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - MEM:52.49609375 Reading. parent:1623 <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - No match (b) for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - Begin found for:kataster-boundaries, creating new SurvexBlock
+> > - MEM:52.5234375 Reading. parent:kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> LEGS: 0 (previous: 36773, now:36773)
diff --git a/svxblks.log b/svxblks.log
new file mode 100644
index 0000000..f897f09
--- /dev/null
+++ b/svxblks.log
@@ -0,0 +1,10971 @@
+ - MEM:39.965 Reading. parent:1623 <> 1623
+ - INCLUDE-go path found, including - kataster/1623
+ - NO Match in DB (i) for a cave for kataster/1623
+> - MEM:39.965 Reading. parent:1623 <> kataster/1623
+> - No match (b) for kataster/1623
+> - Begin found for:1623, creating new SurvexBlock
+> - BLOCK-enter nested *begin/*end block: '1623'
+> > - MEM:39.965 Reading. parent:kataster/1623 <> kataster/1623
+> - INCLUDE-go path found, including - fixedpts/allfixedpts
+> - NO Match in DB (i) for a cave for fixedpts/allfixedpts
+> > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/allfixedpts
+> > - INCLUDE-go path found, including - fixedpts/gps/allgps
+> > - NO Match in DB (i) for a cave for fixedpts/gps/allgps
+> > > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/gps/allgps
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps96
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps96
+> > > > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/gps/gps96
+> > > > - No match (b) for fixedpts/gps/GPS96
+> > > > - Begin found for:gps96, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps96'
+> > > > > - MEM:39.965 Reading. parent:fixedpts/gps/gps96 <> fixedpts/gps/gps96
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps96
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps98
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps98
+> > > > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/gps/gps98
+> > > > - No match (b) for fixedpts/gps/GPS98
+> > > > - Begin found for:gps98, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps98'
+> > > > > - MEM:39.965 Reading. parent:fixedpts/gps/gps98 <> fixedpts/gps/gps98
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps98
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps00
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps00
+> > > > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/gps/gps00
+> > > > - No match (b) for fixedpts/gps/gps00
+> > > > - Begin found for:gps00, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps00'
+> > > > > - MEM:39.965 Reading. parent:fixedpts/gps/gps00 <> fixedpts/gps/gps00
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps00
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps01
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps01
+> > > > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/gps/gps01
+> > > > - No match (b) for fixedpts/gps/gps01
+> > > > - Begin found for:gps01, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps01'
+> > > > > - MEM:39.965 Reading. parent:fixedpts/gps/gps01 <> fixedpts/gps/gps01
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps01
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps02
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02
+> > > > - MEM:39.965 Reading. parent:kataster/1623 <> fixedpts/gps/gps02
+> > > > - No match (b) for fixedpts/gps/gps02
+> > > > - Begin found for:gps02, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps02'
+> > > > > - MEM:39.965 Reading. parent:fixedpts/gps/gps02 <> fixedpts/gps/gps02
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps02
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps02olly
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps02olly
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps02olly
+> > > > - No match (b) for fixedpts/gps/gps02olly
+> > > > - Begin found for:gps02olly, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps02olly'
+> > > > > - MEM:40.016 Reading. parent:fixedpts/gps/gps02olly <> fixedpts/gps/gps02olly
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps02olly
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps03
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps03
+> > > > - No match (b) for fixedpts/gps/gps03
+> > > > - Begin found for:gps03, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps03'
+> > > > > - MEM:40.016 Reading. parent:fixedpts/gps/gps03 <> fixedpts/gps/gps03
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps03
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps03_bis
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps03_bis
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps03_bis
+> > > > - No match (b) for fixedpts/gps/gps03_bis
+> > > > - Begin found for:gps03_bis, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps03_bis'
+> > > > > - MEM:40.016 Reading. parent:fixedpts/gps/gps03_bis <> fixedpts/gps/gps03_bis
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps03_bis
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps04
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps04
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps04
+> > > > - No match (b) for fixedpts/gps/gps04
+> > > > - Begin found for:gps04, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps04'
+> > > > > - MEM:40.016 Reading. parent:fixedpts/gps/gps04 <> fixedpts/gps/gps04
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps04
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps05dave
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05dave
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps05dave
+> > > - INCLUDE-return from include - fixedpts/gps/gps05dave
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps05
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps05
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps05
+> > > - INCLUDE-return from include - fixedpts/gps/gps05
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps06
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps06
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps06
+> > > > - No match (b) for fixedpts/gps/gps06
+> > > > - Begin found for:gps06, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps06'
+> > > > > - MEM:40.016 Reading. parent:fixedpts/gps/gps06 <> fixedpts/gps/gps06
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps06
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps07
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps07
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps07
+> > > > - No match (b) for fixedpts/gps/gps07
+> > > > - Begin found for:gps07, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gps07'
+> > > > > - MEM:40.016 Reading. parent:fixedpts/gps/gps07 <> fixedpts/gps/gps07
+> > > > - LEGS: 0 (previous: 0, now:0)
+> > > - INCLUDE-return from include - fixedpts/gps/gps07
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps09
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps09
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps09
+> > > - INCLUDE-return from include - fixedpts/gps/gps09
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps10
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps10
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps10
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > - INCLUDE-return from include - fixedpts/gps/gps10
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps11
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps11
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps11
+> > > - INCLUDE-return from include - fixedpts/gps/gps11
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps12
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps12
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps12
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > - INCLUDE-return from include - fixedpts/gps/gps12
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps14
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps14
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps14
+> > > - INCLUDE-return from include - fixedpts/gps/gps14
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps15
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps15
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps15
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > - INCLUDE-return from include - fixedpts/gps/gps15
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps16
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps16
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps16
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > - INCLUDE-return from include - fixedpts/gps/gps16
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps17
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps17
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps17
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > - INCLUDE-return from include - fixedpts/gps/gps17
+> > > - INCLUDE-go path found, including - fixedpts/gps/gps18
+> > > - NO Match in DB (i) for a cave for fixedpts/gps/gps18
+> > > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/gps/gps18
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > - INCLUDE-return from include - fixedpts/gps/gps18
+> > - INCLUDE-return from include - fixedpts/gps/allgps
+> > - INCLUDE-go path found, including - fixedpts/nils2000
+> > - NO Match in DB (i) for a cave for fixedpts/nils2000
+> > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/nils2000
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > - INCLUDE-return from include - fixedpts/nils2000
+> > - INCLUDE-go path found, including - fixedpts/laser
+> > - NO Match in DB (i) for a cave for fixedpts/laser
+> > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/laser
+> > > - No match (b) for fixedpts/Laser
+> > > - Begin found for:laser, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'laser'
+> > > > - MEM:40.016 Reading. parent:fixedpts/laser <> fixedpts/laser
+> > > - LEGS: 0 (previous: 0, now:0)
+> > - INCLUDE-return from include - fixedpts/laser
+> > - INCLUDE-go path found, including - fixedpts/fb-map
+> > - NO Match in DB (i) for a cave for fixedpts/fb-map
+> > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/fb-map
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > - INCLUDE-return from include - fixedpts/fb-map
+> > - INCLUDE-go path found, including - fixedpts/misc
+> > - NO Match in DB (i) for a cave for fixedpts/misc
+> > > - MEM:40.016 Reading. parent:kataster/1623 <> fixedpts/misc
+> > - INCLUDE-return from include - fixedpts/misc
+> > - LEGS: 0 (previous: 0, now:0)
+> - INCLUDE-return from include - fixedpts/allfixedpts
+> - INCLUDE-go path found, including - caves-1623/caves
+> - NO Match in DB (i) for a cave for caves-1623/caves
+> > - MEM:40.016 Reading. parent:kataster/1623 <> caves-1623/caves
+> > - INCLUDE-go path found, including - caves-1623/links
+> > - NO Match in DB (i) for a cave for caves-1623/links
+> > > - MEM:40.016 Reading. parent:kataster/1623 <> caves-1623/links
+> > - INCLUDE-return from include - caves-1623/links
+> > - INCLUDE-go path found, including - caves-1623/18/18
+> > - Match in DB (i) for cave 1623-18.
+> > > - MEM:40.258 Reading. parent:kataster/1623 <> caves-1623/18/18
+> > > - Begin found for:18, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '18'
+> > > > - MEM:40.262 Reading. parent:caves-1623/18/18 <> caves-1623/18/18
+> > > - LEGS: 33 (previous: 0, now:33)
+> > - INCLUDE-return from include - caves-1623/18/18
+> > - INCLUDE-go path found, including - caves-1623/31/31
+> > - Match in DB (i) for cave 1623-31.
+> > > - MEM:40.277 Reading. parent:kataster/1623 <> caves-1623/31/31
+> > > - Begin found for:31, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '31'
+> > > > - MEM:40.281 Reading. parent:caves-1623/31/31 <> caves-1623/31/31
+> > > - INCLUDE-go path found, including - caves-1623/31/elchalt
+> > > - Match in DB (i) for cave 1623-31.
+> > > > - MEM:40.293 Reading. parent:caves-1623/31/31 <> caves-1623/31/elchalt
+> > > > - Begin found for:elchalt, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'elchalt'
+> > > > > - MEM:40.301 Reading. parent:caves-1623/31/elchalt <> caves-1623/31/elchalt
+> > > > - LEGS: 30 (previous: 33, now:63)
+> > > - INCLUDE-return from include - caves-1623/31/elchalt
+> > > - LEGS: 30 (previous: 33, now:63)
+> > - INCLUDE-return from include - caves-1623/31/31
+> > - INCLUDE-go path found, including - caves-1623/76/76
+> > - Match in DB (i) for cave 1623-76.
+> > > - MEM:40.309 Reading. parent:kataster/1623 <> caves-1623/76/76
+> > > - Begin found for:76, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '76'
+> > > > - MEM:40.316 Reading. parent:caves-1623/76/76 <> caves-1623/76/76
+> > > - INCLUDE-go path found, including - caves-1623/76/entrance
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.324 Reading. parent:caves-1623/76/76 <> caves-1623/76/entrance
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'entrance'
+> > > > > - MEM:40.336 Reading. parent:caves-1623/76/entrance <> caves-1623/76/entrance
+> > > > - LEGS: 7 (previous: 63, now:70)
+> > > - INCLUDE-return from include - caves-1623/76/entrance
+> > > - INCLUDE-go path found, including - caves-1623/76/bitter
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.363 Reading. parent:caves-1623/76/76 <> caves-1623/76/bitter
+> > > > - Begin found for:bitter, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bitter'
+> > > > > - MEM:40.371 Reading. parent:caves-1623/76/bitter <> caves-1623/76/bitter
+> > > > - LEGS: 9 (previous: 70, now:79)
+> > > - INCLUDE-return from include - caves-1623/76/bitter
+> > > - INCLUDE-go path found, including - caves-1623/76/bent
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.375 Reading. parent:caves-1623/76/76 <> caves-1623/76/bent
+> > > > - Begin found for:bent, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bent'
+> > > > > - MEM:40.383 Reading. parent:caves-1623/76/bent <> caves-1623/76/bent
+> > > > - LEGS: 7 (previous: 79, now:86)
+> > > - INCLUDE-return from include - caves-1623/76/bent
+> > > - INCLUDE-go path found, including - caves-1623/76/brave
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.383 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave
+> > > > - Begin found for:brave, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave'
+> > > > > - MEM:40.391 Reading. parent:caves-1623/76/brave <> caves-1623/76/brave
+> > > > - LEGS: 35 (previous: 86, now:121)
+> > > - INCLUDE-return from include - caves-1623/76/brave
+> > > - INCLUDE-go path found, including - caves-1623/76/lovers
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.395 Reading. parent:caves-1623/76/76 <> caves-1623/76/lovers
+> > > > - Begin found for:lovers, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'lovers'
+> > > > > - MEM:40.418 Reading. parent:caves-1623/76/lovers <> caves-1623/76/lovers
+> > > > - LEGS: 9 (previous: 121, now:130)
+> > > - INCLUDE-return from include - caves-1623/76/lovers
+> > > - INCLUDE-go path found, including - caves-1623/76/saved
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.418 Reading. parent:caves-1623/76/76 <> caves-1623/76/saved
+> > > > - Begin found for:saved, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'saved'
+> > > > > - MEM:40.418 Reading. parent:caves-1623/76/saved <> caves-1623/76/saved
+> > > > - LEGS: 21 (previous: 130, now:151)
+> > > - INCLUDE-return from include - caves-1623/76/saved
+> > > - INCLUDE-go path found, including - caves-1623/76/brave2
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.418 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave2
+> > > > - Begin found for:brave2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave2'
+> > > > > - MEM:40.418 Reading. parent:caves-1623/76/brave2 <> caves-1623/76/brave2
+> > > > - LEGS: 19 (previous: 151, now:170)
+> > > - INCLUDE-return from include - caves-1623/76/brave2
+> > > - INCLUDE-go path found, including - caves-1623/76/brave3
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.418 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave3
+> > > > - Begin found for:brave3, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave3'
+> > > > > - MEM:40.418 Reading. parent:caves-1623/76/brave3 <> caves-1623/76/brave3
+> > > > - LEGS: 6 (previous: 170, now:176)
+> > > - INCLUDE-return from include - caves-1623/76/brave3
+> > > - INCLUDE-go path found, including - caves-1623/76/brave4
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.422 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave4
+> > > > - Begin found for:brave4, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave4'
+> > > > > - MEM:40.430 Reading. parent:caves-1623/76/brave4 <> caves-1623/76/brave4
+> > > > - LEGS: 13 (previous: 176, now:189)
+> > > - INCLUDE-return from include - caves-1623/76/brave4
+> > > - INCLUDE-go path found, including - caves-1623/76/brave5
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.430 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave5
+> > > > - Begin found for:brave5, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave5'
+> > > > > - MEM:40.438 Reading. parent:caves-1623/76/brave5 <> caves-1623/76/brave5
+> > > > - LEGS: 8 (previous: 189, now:197)
+> > > - INCLUDE-return from include - caves-1623/76/brave5
+> > > - INCLUDE-go path found, including - caves-1623/76/brave6
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.441 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave6
+> > > > - Begin found for:brave6, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave6'
+> > > > > - MEM:40.445 Reading. parent:caves-1623/76/brave6 <> caves-1623/76/brave6
+> > > > - LEGS: 4 (previous: 197, now:201)
+> > > - INCLUDE-return from include - caves-1623/76/brave6
+> > > - INCLUDE-go path found, including - caves-1623/76/brave7
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.449 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave7
+> > > > - Begin found for:brave7, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave7'
+> > > > > - MEM:40.457 Reading. parent:caves-1623/76/brave7 <> caves-1623/76/brave7
+> > > > - LEGS: 10 (previous: 201, now:211)
+> > > - INCLUDE-return from include - caves-1623/76/brave7
+> > > - INCLUDE-go path found, including - caves-1623/76/brave8
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.457 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave8
+> > > > - Begin found for:brave8, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave8'
+> > > > > - MEM:40.465 Reading. parent:caves-1623/76/brave8 <> caves-1623/76/brave8
+> > > > - LEGS: 6 (previous: 211, now:217)
+> > > - INCLUDE-return from include - caves-1623/76/brave8
+> > > - INCLUDE-go path found, including - caves-1623/76/keg
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.469 Reading. parent:caves-1623/76/76 <> caves-1623/76/keg
+> > > > - Begin found for:keg, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'keg'
+> > > > > - MEM:40.473 Reading. parent:caves-1623/76/keg <> caves-1623/76/keg
+> > > > - LEGS: 18 (previous: 217, now:235)
+> > > - INCLUDE-return from include - caves-1623/76/keg
+> > > - INCLUDE-go path found, including - caves-1623/76/tap
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.473 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap
+> > > > - Begin found for:tap, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'tap'
+> > > > > - MEM:40.480 Reading. parent:caves-1623/76/tap <> caves-1623/76/tap
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - LEGS: 21 (previous: 235, now:256)
+> > > - INCLUDE-return from include - caves-1623/76/tap
+> > > - INCLUDE-go path found, including - caves-1623/76/rift
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.480 Reading. parent:caves-1623/76/76 <> caves-1623/76/rift
+> > > > - Begin found for:rift, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'rift'
+> > > > > - MEM:40.488 Reading. parent:caves-1623/76/rift <> caves-1623/76/rift
+> > > > - LEGS: 15 (previous: 256, now:271)
+> > > - INCLUDE-return from include - caves-1623/76/rift
+> > > - INCLUDE-go path found, including - caves-1623/76/noways
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.492 Reading. parent:caves-1623/76/76 <> caves-1623/76/noways
+> > > > - Begin found for:noways, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'noways'
+> > > > > - MEM:40.496 Reading. parent:caves-1623/76/noways <> caves-1623/76/noways
+> > > > - LEGS: 15 (previous: 271, now:286)
+> > > - INCLUDE-return from include - caves-1623/76/noways
+> > > - INCLUDE-go path found, including - caves-1623/76/pitch
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.500 Reading. parent:caves-1623/76/76 <> caves-1623/76/pitch
+> > > > - Begin found for:pitch, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pitch'
+> > > > > - MEM:40.504 Reading. parent:caves-1623/76/pitch <> caves-1623/76/pitch
+> > > > - LEGS: 12 (previous: 286, now:298)
+> > > - INCLUDE-return from include - caves-1623/76/pitch
+> > > - INCLUDE-go path found, including - caves-1623/76/boiling
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.508 Reading. parent:caves-1623/76/76 <> caves-1623/76/boiling
+> > > > - Begin found for:boiling, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'boiling'
+> > > > > - MEM:40.512 Reading. parent:caves-1623/76/boiling <> caves-1623/76/boiling
+> > > > - LEGS: 15 (previous: 298, now:313)
+> > > - INCLUDE-return from include - caves-1623/76/boiling
+> > > - INCLUDE-go path found, including - caves-1623/76/99
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.516 Reading. parent:caves-1623/76/76 <> caves-1623/76/99
+> > > > - Begin found for:99, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '99'
+> > > > > - MEM:40.523 Reading. parent:caves-1623/76/99 <> caves-1623/76/99
+> > > > - LEGS: 6 (previous: 313, now:319)
+> > > - INCLUDE-return from include - caves-1623/76/99
+> > > - INCLUDE-go path found, including - caves-1623/76/tap2
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.555 Reading. parent:caves-1623/76/76 <> caves-1623/76/tap2
+> > > > - Begin found for:tap2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'tap2'
+> > > > > - MEM:40.582 Reading. parent:caves-1623/76/tap2 <> caves-1623/76/tap2
+> > > > - LEGS: 6 (previous: 319, now:325)
+> > > - INCLUDE-return from include - caves-1623/76/tap2
+> > > - INCLUDE-go path found, including - caves-1623/76/taprift
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.582 Reading. parent:caves-1623/76/76 <> caves-1623/76/taprift
+> > > > - Begin found for:taprift, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'taprift'
+> > > > > - MEM:40.582 Reading. parent:caves-1623/76/taprift <> caves-1623/76/taprift
+> > > > - LEGS: 10 (previous: 325, now:335)
+> > > - INCLUDE-return from include - caves-1623/76/taprift
+> > > - INCLUDE-go path found, including - caves-1623/76/pleasant
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.582 Reading. parent:caves-1623/76/76 <> caves-1623/76/pleasant
+> > > > - Begin found for:pleasant, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pleasant'
+> > > > > - MEM:40.582 Reading. parent:caves-1623/76/pleasant <> caves-1623/76/pleasant
+> > > > - LEGS: 11 (previous: 335, now:346)
+> > > - INCLUDE-return from include - caves-1623/76/pleasant
+> > > - INCLUDE-go path found, including - caves-1623/76/batman
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.582 Reading. parent:caves-1623/76/76 <> caves-1623/76/batman
+> > > > - Begin found for:batman, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'batman'
+> > > > > - MEM:40.586 Reading. parent:caves-1623/76/batman <> caves-1623/76/batman
+> > > > - LEGS: 4 (previous: 346, now:350)
+> > > - INCLUDE-return from include - caves-1623/76/batman
+> > > - INCLUDE-go path found, including - caves-1623/76/pancake
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.590 Reading. parent:caves-1623/76/76 <> caves-1623/76/pancake
+> > > > - Begin found for:pancake, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pancake'
+> > > > > - MEM:40.594 Reading. parent:caves-1623/76/pancake <> caves-1623/76/pancake
+> > > > - LEGS: 10 (previous: 350, now:360)
+> > > - INCLUDE-return from include - caves-1623/76/pancake
+> > > - INCLUDE-go path found, including - caves-1623/76/loopy
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.598 Reading. parent:caves-1623/76/76 <> caves-1623/76/loopy
+> > > > - Begin found for:loopy, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'loopy'
+> > > > > - MEM:40.605 Reading. parent:caves-1623/76/loopy <> caves-1623/76/loopy
+> > > > - LEGS: 35 (previous: 360, now:395)
+> > > - INCLUDE-return from include - caves-1623/76/loopy
+> > > - INCLUDE-go path found, including - caves-1623/76/spent
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.609 Reading. parent:caves-1623/76/76 <> caves-1623/76/spent
+> > > > - Begin found for:spent, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'spent'
+> > > > > - MEM:40.613 Reading. parent:caves-1623/76/spent <> caves-1623/76/spent
+> > > > - LEGS: 10 (previous: 395, now:405)
+> > > - INCLUDE-return from include - caves-1623/76/spent
+> > > - INCLUDE-go path found, including - caves-1623/76/strange
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.617 Reading. parent:caves-1623/76/76 <> caves-1623/76/strange
+> > > > - Begin found for:strange, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'strange'
+> > > > > - MEM:40.621 Reading. parent:caves-1623/76/strange <> caves-1623/76/strange
+> > > > - LEGS: 24 (previous: 405, now:429)
+> > > - INCLUDE-return from include - caves-1623/76/strange
+> > > - INCLUDE-go path found, including - caves-1623/76/stranger
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.637 Reading. parent:caves-1623/76/76 <> caves-1623/76/stranger
+> > > > - Begin found for:stranger, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'stranger'
+> > > > > - MEM:40.648 Reading. parent:caves-1623/76/stranger <> caves-1623/76/stranger
+> > > > - LEGS: 6 (previous: 429, now:435)
+> > > - INCLUDE-return from include - caves-1623/76/stranger
+> > > - INCLUDE-go path found, including - caves-1623/76/waste
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.648 Reading. parent:caves-1623/76/76 <> caves-1623/76/waste
+> > > > - Begin found for:waste, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'waste'
+> > > > > - MEM:40.656 Reading. parent:caves-1623/76/waste <> caves-1623/76/waste
+> > > > - LEGS: 9 (previous: 435, now:444)
+> > > - INCLUDE-return from include - caves-1623/76/waste
+> > > - INCLUDE-go path found, including - caves-1623/76/hotgkpitch
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.668 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgkpitch
+> > > > - Begin found for:hotgkpitch, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'hotgkpitch'
+> > > > > - MEM:40.676 Reading. parent:caves-1623/76/hotgkpitch <> caves-1623/76/hotgkpitch
+> > > > - LEGS: 8 (previous: 444, now:452)
+> > > - INCLUDE-return from include - caves-1623/76/hotgkpitch
+> > > - INCLUDE-go path found, including - caves-1623/76/hotgk
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.680 Reading. parent:caves-1623/76/76 <> caves-1623/76/hotgk
+> > > > - Begin found for:hotgk, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'hotgk'
+> > > > > - MEM:40.688 Reading. parent:caves-1623/76/hotgk <> caves-1623/76/hotgk
+> > > > - LEGS: 21 (previous: 452, now:473)
+> > > - INCLUDE-return from include - caves-1623/76/hotgk
+> > > - INCLUDE-go path found, including - caves-1623/76/fiesta
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.691 Reading. parent:caves-1623/76/76 <> caves-1623/76/fiesta
+> > > > - Begin found for:fiesta, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'fiesta'
+> > > > > - MEM:40.695 Reading. parent:caves-1623/76/fiesta <> caves-1623/76/fiesta
+> > > > - LEGS: 31 (previous: 473, now:504)
+> > > - INCLUDE-return from include - caves-1623/76/fiesta
+> > > - INCLUDE-go path found, including - caves-1623/76/holes
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.699 Reading. parent:caves-1623/76/76 <> caves-1623/76/holes
+> > > > - Begin found for:holes, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'holes'
+> > > > > - MEM:40.703 Reading. parent:caves-1623/76/holes <> caves-1623/76/holes
+> > > > - LEGS: 8 (previous: 504, now:512)
+> > > - INCLUDE-return from include - caves-1623/76/holes
+> > > - INCLUDE-go path found, including - caves-1623/76/boil2
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.746 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil2
+> > > > - Begin found for:boil2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'boil2'
+> > > > > - MEM:40.758 Reading. parent:caves-1623/76/boil2 <> caves-1623/76/boil2
+> > > > - LEGS: 3 (previous: 512, now:515)
+> > > - INCLUDE-return from include - caves-1623/76/boil2
+> > > - INCLUDE-go path found, including - caves-1623/76/boil3
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.766 Reading. parent:caves-1623/76/76 <> caves-1623/76/boil3
+> > > > - Begin found for:boil3, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'boil3'
+> > > > > - MEM:40.781 Reading. parent:caves-1623/76/boil3 <> caves-1623/76/boil3
+> > > > - LEGS: 4 (previous: 515, now:519)
+> > > - INCLUDE-return from include - caves-1623/76/boil3
+> > > - INCLUDE-go path found, including - caves-1623/76/choss
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.789 Reading. parent:caves-1623/76/76 <> caves-1623/76/choss
+> > > > - Begin found for:choss, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'choss'
+> > > > > - MEM:40.828 Reading. parent:caves-1623/76/choss <> caves-1623/76/choss
+> > > > - LEGS: 5 (previous: 519, now:524)
+> > > - INCLUDE-return from include - caves-1623/76/choss
+> > > - INCLUDE-go path found, including - caves-1623/76/brave9
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.836 Reading. parent:caves-1623/76/76 <> caves-1623/76/brave9
+> > > > - Begin found for:brave9, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brave9'
+> > > > > - MEM:40.852 Reading. parent:caves-1623/76/brave9 <> caves-1623/76/brave9
+> > > > - LEGS: 12 (previous: 524, now:536)
+> > > - INCLUDE-return from include - caves-1623/76/brave9
+> > > - INCLUDE-go path found, including - caves-1623/76/electric_upper
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.863 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_upper
+> > > > - Begin found for:electric_upper, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'electric_upper'
+> > > > > - MEM:40.871 Reading. parent:caves-1623/76/electric_upper <> caves-1623/76/electric_upper
+> > > > - LEGS: 35 (previous: 536, now:571)
+> > > - INCLUDE-return from include - caves-1623/76/electric_upper
+> > > - INCLUDE-go path found, including - caves-1623/76/electric_lower
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.879 Reading. parent:caves-1623/76/76 <> caves-1623/76/electric_lower
+> > > > - Begin found for:electric_lower, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'electric_lower'
+> > > > > - MEM:40.902 Reading. parent:caves-1623/76/electric_lower <> caves-1623/76/electric_lower
+> > > > - LEGS: 249 (previous: 571, now:820)
+> > > - INCLUDE-return from include - caves-1623/76/electric_lower
+> > > - INCLUDE-go path found, including - caves-1623/76/atomic
+> > > - Match in DB (i) for cave 1623-76.
+> > > > - MEM:40.906 Reading. parent:caves-1623/76/76 <> caves-1623/76/atomic
+> > > > - Begin found for:atomic, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'atomic'
+> > > > > - MEM:40.914 Reading. parent:caves-1623/76/atomic <> caves-1623/76/atomic
+> > > > - LEGS: 65 (previous: 820, now:885)
+> > > - INCLUDE-return from include - caves-1623/76/atomic
+> > > - LEGS: 822 (previous: 63, now:885)
+> > - INCLUDE-return from include - caves-1623/76/76
+> > - INCLUDE-go path found, including - caves-1623/81/81
+> > - Match in DB (i) for cave 1623-81.
+> > > - MEM:40.918 Reading. parent:kataster/1623 <> caves-1623/81/81
+> > > - Begin found for:81, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '81'
+> > > > - MEM:40.918 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+> > > - Begin found for:oldcave, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'oldcave'
+> > > > - MEM:40.926 Reading. parent:caves-1623/81/81 <> caves-1623/81/81
+> > > - LEGS: 10 (previous: 885, now:895)
+> > - INCLUDE-return from include - caves-1623/81/81
+> > - INCLUDE-go path found, including - caves-1623/90/90
+> > - Match in DB (i) for cave 1623-90.
+> > > - MEM:40.930 Reading. parent:kataster/1623 <> caves-1623/90/90
+> > > - Begin found for:90, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '90'
+> > > > - MEM:40.934 Reading. parent:caves-1623/90/90 <> caves-1623/90/90
+> > > - LEGS: 1 (previous: 895, now:896)
+> > - INCLUDE-return from include - caves-1623/90/90
+> > - INCLUDE-go path found, including - caves-1623/91/91
+> > - Match in DB (i) for cave 1623-91.
+> > > - MEM:40.938 Reading. parent:kataster/1623 <> caves-1623/91/91
+> > > - Begin found for:91, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '91'
+> > > > - MEM:40.941 Reading. parent:caves-1623/91/91 <> caves-1623/91/91
+> > > - LEGS: 1 (previous: 896, now:897)
+> > - INCLUDE-return from include - caves-1623/91/91
+> > - INCLUDE-go path found, including - caves-1623/96/96
+> > - Match in DB (i) for cave 1623-96.
+> > > - MEM:40.965 Reading. parent:kataster/1623 <> caves-1623/96/96
+> > > - Begin found for:96, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '96'
+> > > > - MEM:40.973 Reading. parent:caves-1623/96/96 <> caves-1623/96/96
+> > > - LEGS: 8 (previous: 897, now:905)
+> > - INCLUDE-return from include - caves-1623/96/96
+> > - INCLUDE-go path found, including - caves-1623/97/97
+> > - Match in DB (i) for cave 1623-97.
+> > > - MEM:41.000 Reading. parent:kataster/1623 <> caves-1623/97/97
+> > > - Begin found for:97, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '97'
+> > > > - MEM:41.020 Reading. parent:caves-1623/97/97 <> caves-1623/97/97
+> > > - LEGS: 47 (previous: 905, now:952)
+> > - INCLUDE-return from include - caves-1623/97/97
+> > - INCLUDE-go path found, including - caves-1623/101/101
+> > - Match in DB (i) for cave 1623-101.
+> > > - MEM:41.031 Reading. parent:kataster/1623 <> caves-1623/101/101
+> > > - Begin found for:101, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '101'
+> > > > - MEM:41.047 Reading. parent:caves-1623/101/101 <> caves-1623/101/101
+> > > - LEGS: 142 (previous: 952, now:1094)
+> > - INCLUDE-return from include - caves-1623/101/101
+> > - INCLUDE-go path found, including - caves-1623/103/103
+> > - Match in DB (i) for cave 1623-103.
+> > > - MEM:41.055 Reading. parent:kataster/1623 <> caves-1623/103/103
+> > > - Begin found for:103, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '103'
+> > > > - MEM:41.059 Reading. parent:caves-1623/103/103 <> caves-1623/103/103
+> > > - LEGS: 1 (previous: 1094, now:1095)
+> > - INCLUDE-return from include - caves-1623/103/103
+> > - INCLUDE-go path found, including - caves-1623/105/105
+> > - Match in DB (i) for cave 1623-105.
+> > > - MEM:41.066 Reading. parent:kataster/1623 <> caves-1623/105/105
+> > > - Begin found for:105, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '105'
+> > > > - MEM:41.074 Reading. parent:caves-1623/105/105 <> caves-1623/105/105
+> > > - LEGS: 2 (previous: 1095, now:1097)
+> > - INCLUDE-return from include - caves-1623/105/105
+> > - INCLUDE-go path found, including - caves-1623/108/108
+> > - Match in DB (i) for cave 1623-108.
+> > > - MEM:41.078 Reading. parent:kataster/1623 <> caves-1623/108/108
+> > > - Begin found for:108, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '108'
+> > > > - MEM:41.082 Reading. parent:caves-1623/108/108 <> caves-1623/108/108
+> > > - LEGS: 1 (previous: 1097, now:1098)
+> > - INCLUDE-return from include - caves-1623/108/108
+> > - INCLUDE-go path found, including - caves-1623/113/113
+> > - Match in DB (i) for cave 1623-113.
+> > > - MEM:41.129 Reading. parent:kataster/1623 <> caves-1623/113/113
+> > > - Begin found for:113, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '113'
+> > > > - MEM:41.145 Reading. parent:caves-1623/113/113 <> caves-1623/113/113
+> > > - INCLUDE-go path found, including - caves-1623/113/haupt
+> > > - Match in DB (i) for cave 1623-113.
+> > > > - MEM:41.168 Reading. parent:caves-1623/113/113 <> caves-1623/113/haupt
+> > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'haupt'
+> > > > > - MEM:41.203 Reading. parent:caves-1623/113/haupt <> caves-1623/113/haupt
+> > > > - LEGS: 98 (previous: 1098, now:1196)
+> > > - INCLUDE-return from include - caves-1623/113/haupt
+> > > - INCLUDE-go path found, including - caves-1623/113/oper
+> > > - Match in DB (i) for cave 1623-113.
+> > > > - MEM:41.227 Reading. parent:caves-1623/113/113 <> caves-1623/113/oper
+> > > > - Begin found for:oper, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'oper'
+> > > > > - MEM:41.238 Reading. parent:caves-1623/113/oper <> caves-1623/113/oper
+> > > > - LEGS: 21 (previous: 1196, now:1217)
+> > > - INCLUDE-return from include - caves-1623/113/oper
+> > > - INCLUDE-go path found, including - caves-1623/113/sumpf
+> > > - Match in DB (i) for cave 1623-113.
+> > > > - MEM:41.246 Reading. parent:caves-1623/113/113 <> caves-1623/113/sumpf
+> > > > - Begin found for:sumpf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'sumpf'
+> > > > > - MEM:41.258 Reading. parent:caves-1623/113/sumpf <> caves-1623/113/sumpf
+> > > > - LEGS: 38 (previous: 1217, now:1255)
+> > > - INCLUDE-return from include - caves-1623/113/sumpf
+> > > - LEGS: 157 (previous: 1098, now:1255)
+> > - INCLUDE-return from include - caves-1623/113/113
+> > - INCLUDE-go path found, including - caves-1623/116/116
+> > - Match in DB (i) for cave 1623-116.
+> > > - MEM:41.270 Reading. parent:kataster/1623 <> caves-1623/116/116
+> > > - Begin found for:116, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '116'
+> > > > - MEM:41.277 Reading. parent:caves-1623/116/116 <> caves-1623/116/116
+> > > - LEGS: 41 (previous: 1255, now:1296)
+> > - INCLUDE-return from include - caves-1623/116/116
+> > - INCLUDE-go path found, including - caves-1623/131/131
+> > - Match in DB (i) for cave 1623-131.
+> > > - MEM:41.285 Reading. parent:kataster/1623 <> caves-1623/131/131
+> > > - Begin found for:131, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '131'
+> > > > - MEM:41.316 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+> > > - Begin found for:part1, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'part1'
+> > > > - MEM:41.324 Reading. parent:caves-1623/131/131 <> caves-1623/131/131
+> > > - LEGS: 32 (previous: 1296, now:1328)
+> > - INCLUDE-return from include - caves-1623/131/131
+> > - INCLUDE-go path found, including - caves-1623/135/135
+> > - Match in DB (i) for cave 1623-135.
+> > > - MEM:41.328 Reading. parent:kataster/1623 <> caves-1623/135/135
+> > > - Begin found for:135, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '135'
+> > > > - MEM:41.328 Reading. parent:caves-1623/135/135 <> caves-1623/135/135
+> > > - LEGS: 2 (previous: 1328, now:1330)
+> > - INCLUDE-return from include - caves-1623/135/135
+> > - INCLUDE-go path found, including - caves-1623/138/138
+> > - Match in DB (i) for cave 1623-138.
+> > > - MEM:41.328 Reading. parent:kataster/1623 <> caves-1623/138/138
+> > > - Begin found for:138, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '138'
+> > > > - MEM:41.328 Reading. parent:caves-1623/138/138 <> caves-1623/138/138
+> > > - LEGS: 2 (previous: 1330, now:1332)
+> > - INCLUDE-return from include - caves-1623/138/138
+> > - INCLUDE-go path found, including - caves-1623/139/139
+> > - Match in DB (i) for cave 1623-139.
+> > > - MEM:41.344 Reading. parent:kataster/1623 <> caves-1623/139/139
+> > > - Begin found for:139, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '139'
+> > > > - MEM:41.348 Reading. parent:caves-1623/139/139 <> caves-1623/139/139
+> > > - LEGS: 2 (previous: 1332, now:1334)
+> > - INCLUDE-return from include - caves-1623/139/139
+> > - INCLUDE-go path found, including - caves-1623/140/140
+> > - Match in DB (i) for cave 1623-140.
+> > > - MEM:41.355 Reading. parent:kataster/1623 <> caves-1623/140/140
+> > > - Begin found for:140, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '140'
+> > > > - MEM:41.359 Reading. parent:caves-1623/140/140 <> caves-1623/140/140
+> > > - LEGS: 1 (previous: 1334, now:1335)
+> > - INCLUDE-return from include - caves-1623/140/140
+> > - INCLUDE-go path found, including - caves-1623/145/145
+> > - Match in DB (i) for cave 1623-145.
+> > > - MEM:41.508 Reading. parent:kataster/1623 <> caves-1623/145/145
+> > > - Begin found for:145, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '145'
+> > > > - MEM:41.523 Reading. parent:caves-1623/145/145 <> caves-1623/145/145
+> > > - INCLUDE-go path found, including - caves-1623/145/resurvey2005/145-2005
+> > > - Match in DB (i) for cave 1623-145.
+> > > > - MEM:41.543 Reading. parent:caves-1623/145/145 <> caves-1623/145/resurvey2005/145-2005
+> > > > - Begin found for:145-2005, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '145-2005'
+> > > > > - MEM:41.574 Reading. parent:caves-1623/145/resurvey2005/145-2005 <> caves-1623/145/resurvey2005/145-2005
+> > > > - LEGS: 100 (previous: 1335, now:1435)
+> > > - INCLUDE-return from include - caves-1623/145/resurvey2005/145-2005
+> > > - INCLUDE-go path found, including - caves-1623/145/145cucc/part3
+> > > - Match in DB (i) for cave 1623-145.
+> > > > - MEM:41.590 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3
+> > > > - Begin found for:part3, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'part3'
+> > > > > - MEM:41.609 Reading. parent:caves-1623/145/145cucc/part3 <> caves-1623/145/145cucc/part3
+> > > > - LEGS: 29 (previous: 1435, now:1464)
+> > > - INCLUDE-return from include - caves-1623/145/145cucc/part3
+> > > - INCLUDE-go path found, including - caves-1623/145/145cucc/part3to4
+> > > - Match in DB (i) for cave 1623-145.
+> > > > - MEM:41.617 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part3to4
+> > > > - Begin found for:part3to4, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'part3to4'
+> > > > > - MEM:41.633 Reading. parent:caves-1623/145/145cucc/part3to4 <> caves-1623/145/145cucc/part3to4
+> > > > - LEGS: 1 (previous: 1464, now:1465)
+> > > - INCLUDE-return from include - caves-1623/145/145cucc/part3to4
+> > > - INCLUDE-go path found, including - caves-1623/145/145cucc/part4
+> > > - Match in DB (i) for cave 1623-145.
+> > > > - MEM:41.645 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part4
+> > > > - Begin found for:part4, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'part4'
+> > > > > - MEM:41.664 Reading. parent:caves-1623/145/145cucc/part4 <> caves-1623/145/145cucc/part4
+> > > > - LEGS: 49 (previous: 1465, now:1514)
+> > > - INCLUDE-return from include - caves-1623/145/145cucc/part4
+> > > - INCLUDE-go path found, including - caves-1623/145/145cucc/part5
+> > > - Match in DB (i) for cave 1623-145.
+> > > > - MEM:41.668 Reading. parent:caves-1623/145/145 <> caves-1623/145/145cucc/part5
+> > > > - Begin found for:part5, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'part5'
+> > > > > - MEM:41.676 Reading. parent:caves-1623/145/145cucc/part5 <> caves-1623/145/145cucc/part5
+> > > > - LEGS: 9 (previous: 1514, now:1523)
+> > > - INCLUDE-return from include - caves-1623/145/145cucc/part5
+> > > - LEGS: 188 (previous: 1335, now:1523)
+> > - INCLUDE-return from include - caves-1623/145/145
+> > - INCLUDE-go path found, including - caves-1623/147/147
+> > - Match in DB (i) for cave 1623-147.
+> > > - MEM:41.691 Reading. parent:kataster/1623 <> caves-1623/147/147
+> > > - Begin found for:sflink, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'sflink'
+> > > > - MEM:41.691 Reading. parent:caves-1623/147/147 <> caves-1623/147/147
+> > > - LEGS: 1 (previous: 1523, now:1524)
+> > - INCLUDE-return from include - caves-1623/147/147
+> > - INCLUDE-go path found, including - caves-1623/148/148-2007
+> > - Match in DB (i) for cave 1623-148.
+> > > - MEM:41.766 Reading. parent:kataster/1623 <> caves-1623/148/148-2007
+> > > - Begin found for:148, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '148'
+> > > > - MEM:41.785 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+> > > - Begin found for:ent, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'ent'
+> > > > - MEM:41.793 Reading. parent:caves-1623/148/148-2007 <> caves-1623/148/148-2007
+> > > - LEGS: 12 (previous: 1524, now:1536)
+> > - INCLUDE-return from include - caves-1623/148/148-2007
+> > - INCLUDE-go path found, including - caves-1623/152/152
+> > - Match in DB (i) for cave 1623-152.
+> > > - MEM:41.816 Reading. parent:kataster/1623 <> caves-1623/152/152
+> > > - Begin found for:152, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '152'
+> > > > - MEM:41.816 Reading. parent:caves-1623/152/152 <> caves-1623/152/152
+> > > - INCLUDE-go path found, including - caves-1623/152/bananamain
+> > > - Match in DB (i) for cave 1623-152.
+> > > > - MEM:41.828 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananamain
+> > > > - Begin found for:bananamain, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bananamain'
+> > > > > - MEM:41.836 Reading. parent:caves-1623/152/bananamain <> caves-1623/152/bananamain
+> > > > - LEGS: 43 (previous: 1536, now:1579)
+> > > - INCLUDE-return from include - caves-1623/152/bananamain
+> > > - INCLUDE-go path found, including - caves-1623/152/bananacon
+> > > - Match in DB (i) for cave 1623-152.
+> > > > - MEM:41.840 Reading. parent:caves-1623/152/152 <> caves-1623/152/bananacon
+> > > > - Begin found for:bananacon, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bananacon'
+> > > > > - MEM:41.848 Reading. parent:caves-1623/152/bananacon <> caves-1623/152/bananacon
+> > > > - LEGS: 13 (previous: 1579, now:1592)
+> > > - INCLUDE-return from include - caves-1623/152/bananacon
+> > > - LEGS: 56 (previous: 1536, now:1592)
+> > - INCLUDE-return from include - caves-1623/152/152
+> > - INCLUDE-go path found, including - caves-1623/157/157
+> > - Match in DB (i) for cave 1623-157.
+> > > - MEM:41.859 Reading. parent:kataster/1623 <> caves-1623/157/157
+> > > - Begin found for:157, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '157'
+> > > > - MEM:41.859 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - Begin found for:pt2, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'pt2'
+> > > > - MEM:41.867 Reading. parent:caves-1623/157/157 <> caves-1623/157/157
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 4 (previous: 1605, now:1609)
+> > - INCLUDE-return from include - caves-1623/157/157
+> > - INCLUDE-go path found, including - caves-1623/162/162
+> > - Match in DB (i) for cave 1623-162.
+> > > - MEM:41.895 Reading. parent:kataster/1623 <> caves-1623/162/162
+> > > - Begin found for:162, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '162'
+> > > > - MEM:41.906 Reading. parent:caves-1623/162/162 <> caves-1623/162/162
+> > > - LEGS: 20 (previous: 1609, now:1629)
+> > - INCLUDE-return from include - caves-1623/162/162
+> > - INCLUDE-go path found, including - caves-1623/163/163
+> > - Match in DB (i) for cave 1623-163.
+> > > - MEM:42.016 Reading. parent:kataster/1623 <> caves-1623/163/163
+> > > - Begin found for:163, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '163'
+> > > > - MEM:42.027 Reading. parent:caves-1623/163/163 <> caves-1623/163/163
+> > > - LEGS: 5 (previous: 1629, now:1634)
+> > - INCLUDE-return from include - caves-1623/163/163
+> > - INCLUDE-go path found, including - caves-1623/171/171
+> > - Match in DB (i) for cave 1623-171.
+> > > - MEM:42.035 Reading. parent:kataster/1623 <> caves-1623/171/171
+> > > - Begin found for:171, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '171'
+> > > > - MEM:42.062 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+> > > - Begin found for:main, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'main'
+> > > > - MEM:42.070 Reading. parent:caves-1623/171/171 <> caves-1623/171/171
+> > > - LEGS: 209 (previous: 1634, now:1843)
+> > - INCLUDE-return from include - caves-1623/171/171
+> > - INCLUDE-go path found, including - caves-1623/172/172
+> > - Match in DB (i) for cave 1623-172.
+> > > - MEM:42.078 Reading. parent:kataster/1623 <> caves-1623/172/172
+> > > - Begin found for:172, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '172'
+> > > > - MEM:42.082 Reading. parent:caves-1623/172/172 <> caves-1623/172/172
+> > > - LEGS: 2 (previous: 1843, now:1845)
+> > - INCLUDE-return from include - caves-1623/172/172
+> > - INCLUDE-go path found, including - caves-1623/174/174
+> > - Match in DB (i) for cave 1623-174.
+> > > - MEM:42.180 Reading. parent:kataster/1623 <> caves-1623/174/174
+> > > - Begin found for:174, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '174'
+> > > > - MEM:42.184 Reading. parent:caves-1623/174/174 <> caves-1623/174/174
+> > > - LEGS: 1 (previous: 1845, now:1846)
+> > - INCLUDE-return from include - caves-1623/174/174
+> > - INCLUDE-go path found, including - caves-1623/175/175
+> > - Match in DB (i) for cave 1623-175.
+> > > - MEM:42.199 Reading. parent:kataster/1623 <> caves-1623/175/175
+> > > - Begin found for:175, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '175'
+> > > > - MEM:42.211 Reading. parent:caves-1623/175/175 <> caves-1623/175/175
+> > > - LEGS: 1 (previous: 1846, now:1847)
+> > - INCLUDE-return from include - caves-1623/175/175
+> > - INCLUDE-go path found, including - caves-1623/176/176
+> > - Match in DB (i) for cave 1623-176.
+> > > - MEM:42.223 Reading. parent:kataster/1623 <> caves-1623/176/176
+> > > - Begin found for:176, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '176'
+> > > > - MEM:42.238 Reading. parent:caves-1623/176/176 <> caves-1623/176/176
+> > > - LEGS: 1 (previous: 1847, now:1848)
+> > - INCLUDE-return from include - caves-1623/176/176
+> > - INCLUDE-go path found, including - caves-1623/182/182
+> > - Match in DB (i) for cave 1623-182.
+> > > - MEM:42.293 Reading. parent:kataster/1623 <> caves-1623/182/182
+> > > - Begin found for:182, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '182'
+> > > > - MEM:42.309 Reading. parent:caves-1623/182/182 <> caves-1623/182/182
+> > > - INCLUDE-go path found, including - caves-1623/182/entrance
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.328 Reading. parent:caves-1623/182/182 <> caves-1623/182/entrance
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'entrance'
+> > > > > - MEM:42.355 Reading. parent:caves-1623/182/entrance <> caves-1623/182/entrance
+> > > > - LEGS: 31 (previous: 1848, now:1879)
+> > > - INCLUDE-return from include - caves-1623/182/entrance
+> > > - INCLUDE-go path found, including - caves-1623/182/yorkrip
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.359 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorkrip
+> > > > - Begin found for:yorkrip, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'yorkrip'
+> > > > > - MEM:42.391 Reading. parent:caves-1623/182/yorkrip <> caves-1623/182/yorkrip
+> > > > - LEGS: 31 (previous: 1879, now:1910)
+> > > - INCLUDE-return from include - caves-1623/182/yorkrip
+> > > - INCLUDE-go path found, including - caves-1623/182/dottodot
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.398 Reading. parent:caves-1623/182/182 <> caves-1623/182/dottodot
+> > > > - Begin found for:dottodot, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'dottodot'
+> > > > > - MEM:42.402 Reading. parent:caves-1623/182/dottodot <> caves-1623/182/dottodot
+> > > > - LEGS: 26 (previous: 1910, now:1936)
+> > > - INCLUDE-return from include - caves-1623/182/dottodot
+> > > - INCLUDE-go path found, including - caves-1623/182/quark
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.418 Reading. parent:caves-1623/182/182 <> caves-1623/182/quark
+> > > > - Begin found for:quark, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'quark'
+> > > > > - MEM:42.434 Reading. parent:caves-1623/182/quark <> caves-1623/182/quark
+> > > > - LEGS: 23 (previous: 1936, now:1959)
+> > > - INCLUDE-return from include - caves-1623/182/quark
+> > > - INCLUDE-go path found, including - caves-1623/182/amnesia
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.516 Reading. parent:caves-1623/182/182 <> caves-1623/182/amnesia
+> > > > - Begin found for:amnesia, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'amnesia'
+> > > > > - MEM:42.527 Reading. parent:caves-1623/182/amnesia <> caves-1623/182/amnesia
+> > > > - LEGS: 24 (previous: 1959, now:1983)
+> > > - INCLUDE-return from include - caves-1623/182/amnesia
+> > > - INCLUDE-go path found, including - caves-1623/182/piezo
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.543 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo
+> > > > - Begin found for:piezo, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'piezo'
+> > > > > - MEM:42.551 Reading. parent:caves-1623/182/piezo <> caves-1623/182/piezo
+> > > > - LEGS: 10 (previous: 1983, now:1993)
+> > > - INCLUDE-return from include - caves-1623/182/piezo
+> > > - INCLUDE-go path found, including - caves-1623/182/strike2
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.562 Reading. parent:caves-1623/182/182 <> caves-1623/182/strike2
+> > > > - Begin found for:strike2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'strike2'
+> > > > > - MEM:42.574 Reading. parent:caves-1623/182/strike2 <> caves-1623/182/strike2
+> > > > - LEGS: 4 (previous: 1993, now:1997)
+> > > - INCLUDE-return from include - caves-1623/182/strike2
+> > > - INCLUDE-go path found, including - caves-1623/182/piezo2
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.594 Reading. parent:caves-1623/182/182 <> caves-1623/182/piezo2
+> > > > - Begin found for:piezo2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'piezo2'
+> > > > > - MEM:42.598 Reading. parent:caves-1623/182/piezo2 <> caves-1623/182/piezo2
+> > > > - LEGS: 10 (previous: 1997, now:2007)
+> > > - INCLUDE-return from include - caves-1623/182/piezo2
+> > > - INCLUDE-go path found, including - caves-1623/182/ent2
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.605 Reading. parent:caves-1623/182/182 <> caves-1623/182/ent2
+> > > > - Begin found for:ent2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'ent2'
+> > > > > - MEM:42.629 Reading. parent:caves-1623/182/ent2 <> caves-1623/182/ent2
+> > > > - LEGS: 9 (previous: 2007, now:2016)
+> > > - INCLUDE-return from include - caves-1623/182/ent2
+> > > - INCLUDE-go path found, including - caves-1623/182/yorktop
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.730 Reading. parent:caves-1623/182/182 <> caves-1623/182/yorktop
+> > > > - Begin found for:yorktop, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'yorktop'
+> > > > > - MEM:42.734 Reading. parent:caves-1623/182/yorktop <> caves-1623/182/yorktop
+> > > > - LEGS: 26 (previous: 2016, now:2042)
+> > > - INCLUDE-return from include - caves-1623/182/yorktop
+> > > - INCLUDE-go path found, including - caves-1623/182/sump
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.738 Reading. parent:caves-1623/182/182 <> caves-1623/182/sump
+> > > > - Begin found for:sump, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'sump'
+> > > > > - MEM:42.758 Reading. parent:caves-1623/182/sump <> caves-1623/182/sump
+> > > > - LEGS: 8 (previous: 2042, now:2050)
+> > > - INCLUDE-return from include - caves-1623/182/sump
+> > > - INCLUDE-go path found, including - caves-1623/182/overshel
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.770 Reading. parent:caves-1623/182/182 <> caves-1623/182/overshel
+> > > > - Begin found for:ott, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'ott'
+> > > > > - MEM:42.781 Reading. parent:caves-1623/182/overshel <> caves-1623/182/overshel
+> > > > - LEGS: 16 (previous: 2050, now:2066)
+> > > - INCLUDE-return from include - caves-1623/182/overshel
+> > > - INCLUDE-go path found, including - caves-1623/182/claustro
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.809 Reading. parent:caves-1623/182/182 <> caves-1623/182/claustro
+> > > > - Begin found for:claustrolink, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'claustrolink'
+> > > > > - MEM:42.812 Reading. parent:caves-1623/182/claustro <> caves-1623/182/claustro
+> > > > - LEGS: 1 (previous: 2066, now:2067)
+> > > - INCLUDE-return from include - caves-1623/182/claustro
+> > > - INCLUDE-go path found, including - caves-1623/182/brutefor
+> > > - Match in DB (i) for cave 1623-182.
+> > > > - MEM:42.824 Reading. parent:caves-1623/182/182 <> caves-1623/182/brutefor
+> > > > - Begin found for:brute, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'brute'
+> > > > > - MEM:42.840 Reading. parent:caves-1623/182/brutefor <> caves-1623/182/brutefor
+> > > > - LEGS: 16 (previous: 2067, now:2083)
+> > > - INCLUDE-return from include - caves-1623/182/brutefor
+> > > - LEGS: 235 (previous: 1848, now:2083)
+> > - INCLUDE-return from include - caves-1623/182/182
+> > - INCLUDE-go path found, including - caves-1623/183/183
+> > - Match in DB (i) for cave 1623-183.
+> > > - MEM:42.855 Reading. parent:kataster/1623 <> caves-1623/183/183
+> > > - Begin found for:183, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '183'
+> > > > - MEM:42.859 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+> > > - Begin found for:upper, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'upper'
+> > > > - MEM:42.871 Reading. parent:caves-1623/183/183 <> caves-1623/183/183
+> > > - LEGS: 21 (previous: 2083, now:2104)
+> > - INCLUDE-return from include - caves-1623/183/183
+> > - INCLUDE-go path found, including - caves-1623/185/185
+> > - Match in DB (i) for cave 1623-185.
+> > > - MEM:42.879 Reading. parent:kataster/1623 <> caves-1623/185/185
+> > > - Begin found for:185, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '185'
+> > > > - MEM:42.883 Reading. parent:caves-1623/185/185 <> caves-1623/185/185
+> > > - LEGS: 20 (previous: 2104, now:2124)
+> > - INCLUDE-return from include - caves-1623/185/185
+> > - INCLUDE-go path found, including - caves-1623/193/193
+> > - Match in DB (i) for cave 1623-193.
+> > > - MEM:42.887 Reading. parent:kataster/1623 <> caves-1623/193/193
+> > > - Begin found for:193, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '193'
+> > > > - MEM:42.895 Reading. parent:caves-1623/193/193 <> caves-1623/193/193
+> > > - LEGS: 5 (previous: 2124, now:2129)
+> > - INCLUDE-return from include - caves-1623/193/193
+> > - INCLUDE-go path found, including - caves-1623/195/195
+> > - Match in DB (i) for cave 1623-195.
+> > > - MEM:42.918 Reading. parent:kataster/1623 <> caves-1623/195/195
+> > > - Begin found for:195, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '195'
+> > > > - MEM:42.926 Reading. parent:caves-1623/195/195 <> caves-1623/195/195
+> > > - LEGS: 4 (previous: 2129, now:2133)
+> > - INCLUDE-return from include - caves-1623/195/195
+> > - INCLUDE-go path found, including - caves-1623/196/196
+> > - Match in DB (i) for cave 1623-196.
+> > > - MEM:42.938 Reading. parent:kataster/1623 <> caves-1623/196/196
+> > > - Begin found for:196, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '196'
+> > > > - MEM:42.941 Reading. parent:caves-1623/196/196 <> caves-1623/196/196
+> > > - LEGS: 3 (previous: 2133, now:2136)
+> > - INCLUDE-return from include - caves-1623/196/196
+> > - INCLUDE-go path found, including - caves-1623/199/199
+> > - Match in DB (i) for cave 1623-199.
+> > > - MEM:42.957 Reading. parent:kataster/1623 <> caves-1623/199/199
+> > > - Begin found for:199, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '199'
+> > > > - MEM:42.957 Reading. parent:caves-1623/199/199 <> caves-1623/199/199
+> > > - LEGS: 5 (previous: 2136, now:2141)
+> > - INCLUDE-return from include - caves-1623/199/199
+> > - INCLUDE-go path found, including - caves-1623/200/200
+> > - Match in DB (i) for cave 1623-200.
+> > > - MEM:42.973 Reading. parent:kataster/1623 <> caves-1623/200/200
+> > > - Begin found for:200, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '200'
+> > > > - MEM:42.980 Reading. parent:caves-1623/200/200 <> caves-1623/200/200
+> > > - LEGS: 4 (previous: 2141, now:2145)
+> > - INCLUDE-return from include - caves-1623/200/200
+> > - INCLUDE-go path found, including - caves-1623/201/201
+> > - Match in DB (i) for cave 1623-201.
+> > > - MEM:42.984 Reading. parent:kataster/1623 <> caves-1623/201/201
+> > > - Begin found for:201, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '201'
+> > > > - MEM:42.992 Reading. parent:caves-1623/201/201 <> caves-1623/201/201
+> > > - LEGS: 2 (previous: 2145, now:2147)
+> > - INCLUDE-return from include - caves-1623/201/201
+> > - INCLUDE-go path found, including - caves-1623/202/202
+> > - Match in DB (i) for cave 1623-202.
+> > > - MEM:43.004 Reading. parent:kataster/1623 <> caves-1623/202/202
+> > > - Begin found for:202, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '202'
+> > > > - MEM:43.012 Reading. parent:caves-1623/202/202 <> caves-1623/202/202
+> > > - LEGS: 14 (previous: 2147, now:2161)
+> > - INCLUDE-return from include - caves-1623/202/202
+> > - INCLUDE-go path found, including - caves-1623/203/203
+> > - Match in DB (i) for cave 1623-203.
+> > > - MEM:43.020 Reading. parent:kataster/1623 <> caves-1623/203/203
+> > > - Begin found for:203, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '203'
+> > > > - MEM:43.027 Reading. parent:caves-1623/203/203 <> caves-1623/203/203
+> > > - LEGS: 7 (previous: 2161, now:2168)
+> > - INCLUDE-return from include - caves-1623/203/203
+> > - INCLUDE-go path found, including - caves-1623/205/205
+> > - Match in DB (i) for cave 1623-205.
+> > > - MEM:43.027 Reading. parent:kataster/1623 <> caves-1623/205/205
+> > > - Begin found for:205, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '205'
+> > > > - MEM:43.027 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+> > > - Begin found for:1, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > - MEM:43.043 Reading. parent:caves-1623/205/205 <> caves-1623/205/205
+> > > - LEGS: 13 (previous: 2168, now:2181)
+> > - INCLUDE-return from include - caves-1623/205/205
+> > - INCLUDE-go path found, including - caves-1623/206/206
+> > - Match in DB (i) for cave 1623-206.
+> > > - MEM:43.047 Reading. parent:kataster/1623 <> caves-1623/206/206
+> > > - Begin found for:206, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '206'
+> > > > - MEM:43.047 Reading. parent:caves-1623/206/206 <> caves-1623/206/206
+> > > - LEGS: 4 (previous: 2181, now:2185)
+> > - INCLUDE-return from include - caves-1623/206/206
+> > - INCLUDE-go path found, including - caves-1623/207/207
+> > - Match in DB (i) for cave 1623-207.
+> > > - MEM:43.059 Reading. parent:kataster/1623 <> caves-1623/207/207
+> > > - Begin found for:207, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '207'
+> > > > - MEM:43.070 Reading. parent:caves-1623/207/207 <> caves-1623/207/207
+> > > - LEGS: 3 (previous: 2185, now:2188)
+> > - INCLUDE-return from include - caves-1623/207/207
+> > - INCLUDE-go path found, including - caves-1623/208/208
+> > - Match in DB (i) for cave 1623-208.
+> > > - MEM:43.078 Reading. parent:kataster/1623 <> caves-1623/208/208
+> > > - Begin found for:208, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '208'
+> > > > - MEM:43.086 Reading. parent:caves-1623/208/208 <> caves-1623/208/208
+> > > - LEGS: 3 (previous: 2188, now:2191)
+> > - INCLUDE-return from include - caves-1623/208/208
+> > - INCLUDE-go path found, including - caves-1623/209/209
+> > - Match in DB (i) for cave 1623-209.
+> > > - MEM:43.113 Reading. parent:kataster/1623 <> caves-1623/209/209
+> > > - Begin found for:209, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '209'
+> > > > - MEM:43.121 Reading. parent:caves-1623/209/209 <> caves-1623/209/209
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 1 (previous: 2191, now:2192)
+> > - INCLUDE-return from include - caves-1623/209/209
+> > - INCLUDE-go path found, including - caves-1623/215/215
+> > - Match in DB (i) for cave 1623-215.
+> > > - MEM:43.137 Reading. parent:kataster/1623 <> caves-1623/215/215
+> > > - Begin found for:215, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '215'
+> > > > - MEM:43.148 Reading. parent:caves-1623/215/215 <> caves-1623/215/215
+> > > - LEGS: 5 (previous: 2192, now:2197)
+> > - INCLUDE-return from include - caves-1623/215/215
+> > - INCLUDE-go path found, including - caves-1623/220/220
+> > - Match in DB (i) for cave 1623-220.
+> > > - MEM:43.164 Reading. parent:kataster/1623 <> caves-1623/220/220
+> > > - Begin found for:220, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '220'
+> > > > - MEM:43.176 Reading. parent:caves-1623/220/220 <> caves-1623/220/220
+> > > - LEGS: 1 (previous: 2197, now:2198)
+> > - INCLUDE-return from include - caves-1623/220/220
+> > - INCLUDE-go path found, including - caves-1623/225/225
+> > - Match in DB (i) for cave 1623-225.
+> > > - MEM:43.191 Reading. parent:kataster/1623 <> caves-1623/225/225
+> > > - Begin found for:225, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '225'
+> > > > - MEM:43.199 Reading. parent:caves-1623/225/225 <> caves-1623/225/225
+> > > - LEGS: 1 (previous: 2198, now:2199)
+> > - INCLUDE-return from include - caves-1623/225/225
+> > - INCLUDE-go path found, including - caves-1623/228/228
+> > - Match in DB (i) for cave 1623-228.
+> > > - MEM:43.215 Reading. parent:kataster/1623 <> caves-1623/228/228
+> > > - Begin found for:228, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '228'
+> > > > - MEM:43.223 Reading. parent:caves-1623/228/228 <> caves-1623/228/228
+> > > - LEGS: 5 (previous: 2199, now:2204)
+> > - INCLUDE-return from include - caves-1623/228/228
+> > - INCLUDE-go path found, including - caves-1623/229/229
+> > - Match in DB (i) for cave 1623-229.
+> > > - MEM:43.238 Reading. parent:kataster/1623 <> caves-1623/229/229
+> > > - Begin found for:229, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '229'
+> > > > - MEM:43.246 Reading. parent:caves-1623/229/229 <> caves-1623/229/229
+> > > - LEGS: 7 (previous: 2204, now:2211)
+> > - INCLUDE-return from include - caves-1623/229/229
+> > - INCLUDE-go path found, including - caves-1623/231/231
+> > - Match in DB (i) for cave 1623-231.
+> > > - MEM:43.262 Reading. parent:kataster/1623 <> caves-1623/231/231
+> > > - Begin found for:231, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '231'
+> > > > - MEM:43.277 Reading. parent:caves-1623/231/231 <> caves-1623/231/231
+> > > - INCLUDE-go path found, including - caves-1623/231/traun
+> > > - Match in DB (i) for cave 1623-231.
+> > > > - MEM:43.285 Reading. parent:caves-1623/231/231 <> caves-1623/231/traun
+> > > > - Begin found for:traun, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'traun'
+> > > > > - MEM:43.332 Reading. parent:caves-1623/231/traun <> caves-1623/231/traun
+> > > > - LEGS: 21 (previous: 2211, now:2232)
+> > > - INCLUDE-return from include - caves-1623/231/traun
+> > > - LEGS: 21 (previous: 2211, now:2232)
+> > - INCLUDE-return from include - caves-1623/231/231
+> > - INCLUDE-go path found, including - caves-1623/232/232
+> > - Match in DB (i) for cave 1623-232.
+> > > - MEM:43.332 Reading. parent:kataster/1623 <> caves-1623/232/232
+> > > - Begin found for:232, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '232'
+> > > > - MEM:43.332 Reading. parent:caves-1623/232/232 <> caves-1623/232/232
+> > > - INCLUDE-go path found, including - caves-1623/232/griess
+> > > - Match in DB (i) for cave 1623-232.
+> > > > - MEM:43.336 Reading. parent:caves-1623/232/232 <> caves-1623/232/griess
+> > > > - Begin found for:griess, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'griess'
+> > > > > - MEM:43.344 Reading. parent:caves-1623/232/griess <> caves-1623/232/griess
+> > > > - LEGS: 48 (previous: 2232, now:2280)
+> > > - INCLUDE-return from include - caves-1623/232/griess
+> > > - INCLUDE-go path found, including - caves-1623/232/pille
+> > > - Match in DB (i) for cave 1623-232.
+> > > > - MEM:43.363 Reading. parent:caves-1623/232/232 <> caves-1623/232/pille
+> > > > - Begin found for:pille, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pille'
+> > > > > - MEM:43.363 Reading. parent:caves-1623/232/pille <> caves-1623/232/pille
+> > > > - LEGS: 35 (previous: 2280, now:2315)
+> > > - INCLUDE-return from include - caves-1623/232/pille
+> > > - LEGS: 83 (previous: 2232, now:2315)
+> > - INCLUDE-return from include - caves-1623/232/232
+> > - INCLUDE-go path found, including - caves-1623/233/233
+> > - Match in DB (i) for cave 1623-233.
+> > > - MEM:43.371 Reading. parent:kataster/1623 <> caves-1623/233/233
+> > > - Begin found for:233, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '233'
+> > > > - MEM:43.379 Reading. parent:caves-1623/233/233 <> caves-1623/233/233
+> > > - LEGS: 11 (previous: 2315, now:2326)
+> > - INCLUDE-return from include - caves-1623/233/233
+> > - INCLUDE-go path found, including - caves-1623/234/234
+> > - Match in DB (i) for cave 1623-234.
+> > > - MEM:43.383 Reading. parent:kataster/1623 <> caves-1623/234/234
+> > > - Begin found for:234, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '234'
+> > > > - MEM:43.387 Reading. parent:caves-1623/234/234 <> caves-1623/234/234
+> > > - INCLUDE-go path found, including - caves-1623/234/lefthand
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.402 Reading. parent:caves-1623/234/234 <> caves-1623/234/lefthand
+> > > > - Begin found for:lefthand, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'lefthand'
+> > > > > - MEM:43.418 Reading. parent:caves-1623/234/lefthand <> caves-1623/234/lefthand
+> > > > - LEGS: 17 (previous: 2326, now:2343)
+> > > - INCLUDE-return from include - caves-1623/234/lefthand
+> > > - INCLUDE-go path found, including - caves-1623/234/trunk
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.500 Reading. parent:caves-1623/234/234 <> caves-1623/234/trunk
+> > > > - Begin found for:trunk, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'trunk'
+> > > > > - MEM:43.516 Reading. parent:caves-1623/234/trunk <> caves-1623/234/trunk
+> > > > - LEGS: 10 (previous: 2343, now:2353)
+> > > - INCLUDE-return from include - caves-1623/234/trunk
+> > > - INCLUDE-go path found, including - caves-1623/234/flatulence
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.531 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence
+> > > > - Begin found for:flatulence, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'flatulence'
+> > > > > - MEM:43.551 Reading. parent:caves-1623/234/flatulence <> caves-1623/234/flatulence
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - LEGS: 58 (previous: 2353, now:2411)
+> > > - INCLUDE-return from include - caves-1623/234/flatulence
+> > > - INCLUDE-go path found, including - caves-1623/234/flatulence2
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.570 Reading. parent:caves-1623/234/234 <> caves-1623/234/flatulence2
+> > > > - Begin found for:flatulence2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'flatulence2'
+> > > > > - MEM:43.582 Reading. parent:caves-1623/234/flatulence2 <> caves-1623/234/flatulence2
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - LEGS: 27 (previous: 2411, now:2438)
+> > > - INCLUDE-return from include - caves-1623/234/flatulence2
+> > > - INCLUDE-go path found, including - caves-1623/234/sourtaste
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.598 Reading. parent:caves-1623/234/234 <> caves-1623/234/sourtaste
+> > > > - Begin found for:sourtaste, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'sourtaste'
+> > > > > - MEM:43.605 Reading. parent:caves-1623/234/sourtaste <> caves-1623/234/sourtaste
+> > > > - LEGS: 8 (previous: 2438, now:2446)
+> > > - INCLUDE-return from include - caves-1623/234/sourtaste
+> > > - INCLUDE-go path found, including - caves-1623/234/pie
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.617 Reading. parent:caves-1623/234/234 <> caves-1623/234/pie
+> > > > - Begin found for:pie, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pie'
+> > > > > - MEM:43.633 Reading. parent:caves-1623/234/pie <> caves-1623/234/pie
+> > > > - LEGS: 13 (previous: 2446, now:2459)
+> > > - INCLUDE-return from include - caves-1623/234/pie
+> > > - INCLUDE-go path found, including - caves-1623/234/underhand
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.648 Reading. parent:caves-1623/234/234 <> caves-1623/234/underhand
+> > > > - Begin found for:underhand, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'underhand'
+> > > > > - MEM:43.656 Reading. parent:caves-1623/234/underhand <> caves-1623/234/underhand
+> > > > - LEGS: 7 (previous: 2459, now:2466)
+> > > - INCLUDE-return from include - caves-1623/234/underhand
+> > > - INCLUDE-go path found, including - caves-1623/234/flashgun
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.676 Reading. parent:caves-1623/234/234 <> caves-1623/234/flashgun
+> > > > - Begin found for:flashgun, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'flashgun'
+> > > > > - MEM:43.688 Reading. parent:caves-1623/234/flashgun <> caves-1623/234/flashgun
+> > > > - LEGS: 4 (previous: 2466, now:2470)
+> > > - INCLUDE-return from include - caves-1623/234/flashgun
+> > > - INCLUDE-go path found, including - caves-1623/234/piersquared
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.699 Reading. parent:caves-1623/234/234 <> caves-1623/234/piersquared
+> > > > - Begin found for:piersquared, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'piersquared'
+> > > > > - MEM:43.719 Reading. parent:caves-1623/234/piersquared <> caves-1623/234/piersquared
+> > > > - LEGS: 37 (previous: 2470, now:2507)
+> > > - INCLUDE-return from include - caves-1623/234/piersquared
+> > > - INCLUDE-go path found, including - caves-1623/234/weeweeland
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.734 Reading. parent:caves-1623/234/234 <> caves-1623/234/weeweeland
+> > > > - Begin found for:weeweeland, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'weeweeland'
+> > > > > - MEM:43.746 Reading. parent:caves-1623/234/weeweeland <> caves-1623/234/weeweeland
+> > > > - LEGS: 12 (previous: 2507, now:2519)
+> > > - INCLUDE-return from include - caves-1623/234/weeweeland
+> > > - INCLUDE-go path found, including - caves-1623/234/wowoland
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.777 Reading. parent:caves-1623/234/234 <> caves-1623/234/wowoland
+> > > > - Begin found for:wowoland, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'wowoland'
+> > > > > - MEM:43.777 Reading. parent:caves-1623/234/wowoland <> caves-1623/234/wowoland
+> > > > - LEGS: 7 (previous: 2519, now:2526)
+> > > - INCLUDE-return from include - caves-1623/234/wowoland
+> > > - INCLUDE-go path found, including - caves-1623/234/monster
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.793 Reading. parent:caves-1623/234/234 <> caves-1623/234/monster
+> > > > - Begin found for:monster, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'monster'
+> > > > > - MEM:43.797 Reading. parent:caves-1623/234/monster <> caves-1623/234/monster
+> > > > - LEGS: 5 (previous: 2526, now:2531)
+> > > - INCLUDE-return from include - caves-1623/234/monster
+> > > - INCLUDE-go path found, including - caves-1623/234/spitswallow
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.805 Reading. parent:caves-1623/234/234 <> caves-1623/234/spitswallow
+> > > > - Begin found for:spitswallow, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'spitswallow'
+> > > > > - MEM:43.812 Reading. parent:caves-1623/234/spitswallow <> caves-1623/234/spitswallow
+> > > > - LEGS: 10 (previous: 2531, now:2541)
+> > > - INCLUDE-return from include - caves-1623/234/spitswallow
+> > > - INCLUDE-go path found, including - caves-1623/234/monstermunch
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.824 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch
+> > > > - Begin found for:monstermunch, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'monstermunch'
+> > > > > - MEM:43.824 Reading. parent:caves-1623/234/monstermunch <> caves-1623/234/monstermunch
+> > > > - LEGS: 11 (previous: 2541, now:2552)
+> > > - INCLUDE-return from include - caves-1623/234/monstermunch
+> > > - INCLUDE-go path found, including - caves-1623/234/qm05-05c
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.840 Reading. parent:caves-1623/234/234 <> caves-1623/234/qm05-05c
+> > > > - Begin found for:qm05-05c, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'qm05-05c'
+> > > > > - MEM:43.840 Reading. parent:caves-1623/234/qm05-05c <> caves-1623/234/qm05-05c
+> > > > - LEGS: 2 (previous: 2552, now:2554)
+> > > - INCLUDE-return from include - caves-1623/234/qm05-05c
+> > > - INCLUDE-go path found, including - caves-1623/234/rubella
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.852 Reading. parent:caves-1623/234/234 <> caves-1623/234/rubella
+> > > > - Begin found for:rubella, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'rubella'
+> > > > > - MEM:43.863 Reading. parent:caves-1623/234/rubella <> caves-1623/234/rubella
+> > > > - LEGS: 10 (previous: 2554, now:2564)
+> > > - INCLUDE-return from include - caves-1623/234/rubella
+> > > - INCLUDE-go path found, including - caves-1623/234/monstermunch2
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.934 Reading. parent:caves-1623/234/234 <> caves-1623/234/monstermunch2
+> > > > - Begin found for:monstermunch2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'monstermunch2'
+> > > > > - MEM:43.953 Reading. parent:caves-1623/234/monstermunch2 <> caves-1623/234/monstermunch2
+> > > > - LEGS: 5 (previous: 2564, now:2569)
+> > > - INCLUDE-return from include - caves-1623/234/monstermunch2
+> > > - INCLUDE-go path found, including - caves-1623/234/limopit
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.961 Reading. parent:caves-1623/234/234 <> caves-1623/234/limopit
+> > > > - Begin found for:limopit, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'limopit'
+> > > > > - MEM:43.977 Reading. parent:caves-1623/234/limopit <> caves-1623/234/limopit
+> > > > - LEGS: 6 (previous: 2569, now:2575)
+> > > - INCLUDE-return from include - caves-1623/234/limopit
+> > > - INCLUDE-go path found, including - caves-1623/234/passage
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:43.988 Reading. parent:caves-1623/234/234 <> caves-1623/234/passage
+> > > > - Begin found for:passage, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'passage'
+> > > > > - MEM:44.000 Reading. parent:caves-1623/234/passage <> caves-1623/234/passage
+> > > > - LEGS: 13 (previous: 2575, now:2588)
+> > > - INCLUDE-return from include - caves-1623/234/passage
+> > > - INCLUDE-go path found, including - caves-1623/234/lastchancesaloon
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:44.012 Reading. parent:caves-1623/234/234 <> caves-1623/234/lastchancesaloon
+> > > > - Begin found for:lastchancesaloon, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'lastchancesaloon'
+> > > > > - MEM:44.027 Reading. parent:caves-1623/234/lastchancesaloon <> caves-1623/234/lastchancesaloon
+> > > > - LEGS: 29 (previous: 2588, now:2617)
+> > > - INCLUDE-return from include - caves-1623/234/lastchancesaloon
+> > > - INCLUDE-go path found, including - caves-1623/234/slapperpinkpot
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:44.047 Reading. parent:caves-1623/234/234 <> caves-1623/234/slapperpinkpot
+> > > > - Begin found for:slapperpinkpot, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'slapperpinkpot'
+> > > > > - MEM:44.051 Reading. parent:caves-1623/234/slapperpinkpot <> caves-1623/234/slapperpinkpot
+> > > > - LEGS: 11 (previous: 2617, now:2628)
+> > > - INCLUDE-return from include - caves-1623/234/slapperpinkpot
+> > > - INCLUDE-go path found, including - caves-1623/234/youshouldhaveneverletmebegin
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:44.207 Reading. parent:caves-1623/234/234 <> caves-1623/234/youshouldhaveneverletmebegin
+> > > > - Begin found for:youshouldhaveneverletmebegin, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'youshouldhaveneverletmebegin'
+> > > > > - MEM:44.230 Reading. parent:caves-1623/234/youshouldhaveneverletmebegin <> caves-1623/234/youshouldhaveneverletmebegin
+> > > > - LEGS: 14 (previous: 2628, now:2642)
+> > > - INCLUDE-return from include - caves-1623/234/youshouldhaveneverletmebegin
+> > > - INCLUDE-go path found, including - caves-1623/234/mercurialsuppository
+> > > - Match in DB (i) for cave 1623-234.
+> > > > - MEM:44.242 Reading. parent:caves-1623/234/234 <> caves-1623/234/mercurialsuppository
+> > > > - Begin found for:mercurialsuppository, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'mercurialsuppository'
+> > > > > - MEM:44.254 Reading. parent:caves-1623/234/mercurialsuppository <> caves-1623/234/mercurialsuppository
+> > > > - LEGS: 9 (previous: 2642, now:2651)
+> > > - INCLUDE-return from include - caves-1623/234/mercurialsuppository
+> > > - LEGS: 325 (previous: 2326, now:2651)
+> > - INCLUDE-return from include - caves-1623/234/234
+> > - INCLUDE-go path found, including - caves-1623/238/238
+> > - Match in DB (i) for cave 1623-238.
+> > > - MEM:44.262 Reading. parent:kataster/1623 <> caves-1623/238/238
+> > > - Begin found for:238, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '238'
+> > > > - MEM:44.266 Reading. parent:caves-1623/238/238 <> caves-1623/238/238
+> > > - LEGS: 11 (previous: 2651, now:2662)
+> > - INCLUDE-return from include - caves-1623/238/238
+> > - INCLUDE-go path found, including - caves-1623/239/239
+> > - Match in DB (i) for cave 1623-239.
+> > > - MEM:44.281 Reading. parent:kataster/1623 <> caves-1623/239/239
+> > > - Begin found for:239, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '239'
+> > > > - MEM:44.328 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+> > > - Begin found for:rocknroll1, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'rocknroll1'
+> > > > - MEM:44.336 Reading. parent:caves-1623/239/239 <> caves-1623/239/239
+> > > - LEGS: 32 (previous: 2662, now:2694)
+> > - INCLUDE-return from include - caves-1623/239/239
+> > - INCLUDE-go path found, including - caves-1623/240/240
+> > - Match in DB (i) for cave 1623-240.
+> > > - MEM:44.406 Reading. parent:kataster/1623 <> caves-1623/240/240
+> > > - Begin found for:240, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '240'
+> > > > - MEM:44.406 Reading. parent:caves-1623/240/240 <> caves-1623/240/240
+> > > - LEGS: 7 (previous: 2694, now:2701)
+> > - INCLUDE-return from include - caves-1623/240/240
+> > - INCLUDE-go path found, including - caves-1623/241/241
+> > - Match in DB (i) for cave 1623-241.
+> > > - MEM:44.418 Reading. parent:kataster/1623 <> caves-1623/241/241
+> > > - Begin found for:241, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '241'
+> > > > - MEM:44.426 Reading. parent:caves-1623/241/241 <> caves-1623/241/241
+> > > - LEGS: 8 (previous: 2701, now:2709)
+> > - INCLUDE-return from include - caves-1623/241/241
+> > - INCLUDE-go path found, including - caves-1623/242/242
+> > - Match in DB (i) for cave 1623-242.
+> > > - MEM:44.441 Reading. parent:kataster/1623 <> caves-1623/242/242
+> > > - Begin found for:242, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '242'
+> > > > - MEM:44.445 Reading. parent:caves-1623/242/242 <> caves-1623/242/242
+> > > - LEGS: 6 (previous: 2709, now:2715)
+> > - INCLUDE-return from include - caves-1623/242/242
+> > - INCLUDE-go path found, including - caves-1623/243/243
+> > - Match in DB (i) for cave 1623-243.
+> > > - MEM:44.457 Reading. parent:kataster/1623 <> caves-1623/243/243
+> > > - Begin found for:243, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '243'
+> > > > - MEM:44.469 Reading. parent:caves-1623/243/243 <> caves-1623/243/243
+> > > - LEGS: 14 (previous: 2715, now:2729)
+> > - INCLUDE-return from include - caves-1623/243/243
+> > - INCLUDE-go path found, including - caves-1623/244/244
+> > - Match in DB (i) for cave 1623-244.
+> > > - MEM:44.488 Reading. parent:kataster/1623 <> caves-1623/244/244
+> > > - Begin found for:244, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '244'
+> > > > - MEM:44.512 Reading. parent:caves-1623/244/244 <> caves-1623/244/244
+> > > - INCLUDE-go path found, including - caves-1623/244/skinny
+> > > - Match in DB (i) for cave 1623-244.
+> > > > - MEM:44.523 Reading. parent:caves-1623/244/244 <> caves-1623/244/skinny
+> > > > - Begin found for:skinny, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'skinny'
+> > > > > - MEM:44.547 Reading. parent:caves-1623/244/skinny <> caves-1623/244/skinny
+> > > > - LEGS: 25 (previous: 2729, now:2754)
+> > > - INCLUDE-return from include - caves-1623/244/skinny
+> > > - INCLUDE-go path found, including - caves-1623/244/gravity
+> > > - Match in DB (i) for cave 1623-244.
+> > > > - MEM:44.562 Reading. parent:caves-1623/244/244 <> caves-1623/244/gravity
+> > > > - Begin found for:gravity, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gravity'
+> > > > > - MEM:44.566 Reading. parent:caves-1623/244/gravity <> caves-1623/244/gravity
+> > > > - LEGS: 7 (previous: 2754, now:2761)
+> > > - INCLUDE-return from include - caves-1623/244/gravity
+> > > - LEGS: 32 (previous: 2729, now:2761)
+> > - INCLUDE-return from include - caves-1623/244/244
+> > - INCLUDE-go path found, including - caves-1623/245/245
+> > - Match in DB (i) for cave 1623-245.
+> > > - MEM:44.590 Reading. parent:kataster/1623 <> caves-1623/245/245
+> > > - Begin found for:245, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '245'
+> > > > - MEM:44.598 Reading. parent:caves-1623/245/245 <> caves-1623/245/245
+> > > - LEGS: 24 (previous: 2761, now:2785)
+> > - INCLUDE-return from include - caves-1623/245/245
+> > - INCLUDE-go path found, including - caves-1623/246/246
+> > - Match in DB (i) for cave 1623-246.
+> > > - MEM:44.609 Reading. parent:kataster/1623 <> caves-1623/246/246
+> > > - Begin found for:246, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '246'
+> > > > - MEM:44.613 Reading. parent:caves-1623/246/246 <> caves-1623/246/246
+> > > - LEGS: 7 (previous: 2785, now:2792)
+> > - INCLUDE-return from include - caves-1623/246/246
+> > - INCLUDE-go path found, including - caves-1623/247/247
+> > - Match in DB (i) for cave 1623-247.
+> > > - MEM:44.633 Reading. parent:kataster/1623 <> caves-1623/247/247
+> > > - Begin found for:247, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '247'
+> > > > - MEM:44.637 Reading. parent:caves-1623/247/247 <> caves-1623/247/247
+> > > - LEGS: 2 (previous: 2792, now:2794)
+> > - INCLUDE-return from include - caves-1623/247/247
+> > - INCLUDE-go path found, including - caves-1623/248/248
+> > - Match in DB (i) for cave 1623-248.
+> > > - MEM:44.641 Reading. parent:kataster/1623 <> caves-1623/248/248
+> > > - Begin found for:248, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '248'
+> > > > - MEM:44.660 Reading. parent:caves-1623/248/248 <> caves-1623/248/248
+> > > - INCLUDE-go path found, including - caves-1623/248/248-1
+> > > - Match in DB (i) for cave 1623-248.
+> > > > - MEM:44.664 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-1
+> > > > - Begin found for:248-1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '248-1'
+> > > > > - MEM:44.684 Reading. parent:caves-1623/248/248-1 <> caves-1623/248/248-1
+> > > > - LEGS: 7 (previous: 2794, now:2801)
+> > > - INCLUDE-return from include - caves-1623/248/248-1
+> > > - INCLUDE-go path found, including - caves-1623/248/248-2
+> > > - Match in DB (i) for cave 1623-248.
+> > > > - MEM:44.699 Reading. parent:caves-1623/248/248 <> caves-1623/248/248-2
+> > > > - Begin found for:248-2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '248-2'
+> > > > > - MEM:44.711 Reading. parent:caves-1623/248/248-2 <> caves-1623/248/248-2
+> > > > - LEGS: 6 (previous: 2801, now:2807)
+> > > - INCLUDE-return from include - caves-1623/248/248-2
+> > > - LEGS: 13 (previous: 2794, now:2807)
+> > - INCLUDE-return from include - caves-1623/248/248
+> > - INCLUDE-go path found, including - caves-1623/249/249
+> > - Match in DB (i) for cave 1623-249.
+> > > - MEM:44.723 Reading. parent:kataster/1623 <> caves-1623/249/249
+> > > - Begin found for:249, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '249'
+> > > > - MEM:44.727 Reading. parent:caves-1623/249/249 <> caves-1623/249/249
+> > > - LEGS: 7 (previous: 2807, now:2814)
+> > - INCLUDE-return from include - caves-1623/249/249
+> > - INCLUDE-go path found, including - caves-1623/250/250
+> > - Match in DB (i) for cave 1623-250.
+> > > - MEM:44.730 Reading. parent:kataster/1623 <> caves-1623/250/250
+> > > - Begin found for:250, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '250'
+> > > > - MEM:44.734 Reading. parent:caves-1623/250/250 <> caves-1623/250/250
+> > > - LEGS: 1 (previous: 2814, now:2815)
+> > - INCLUDE-return from include - caves-1623/250/250
+> > - INCLUDE-go path found, including - caves-1623/251/251
+> > - Match in DB (i) for cave 1623-251.
+> > > - MEM:44.766 Reading. parent:kataster/1623 <> caves-1623/251/251
+> > > - Begin found for:251, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '251'
+> > > > - MEM:44.785 Reading. parent:caves-1623/251/251 <> caves-1623/251/251
+> > > - LEGS: 22 (previous: 2815, now:2837)
+> > - INCLUDE-return from include - caves-1623/251/251
+> > - INCLUDE-go path found, including - caves-1623/252/252
+> > - Match in DB (i) for cave 1623-252.
+> > > - MEM:44.816 Reading. parent:kataster/1623 <> caves-1623/252/252
+> > > - Begin found for:252, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '252'
+> > > > - MEM:44.820 Reading. parent:caves-1623/252/252 <> caves-1623/252/252
+> > > - LEGS: 30 (previous: 2837, now:2867)
+> > - INCLUDE-return from include - caves-1623/252/252
+> > - INCLUDE-go path found, including - caves-1623/254/254
+> > - Match in DB (i) for cave 1623-254.
+> > > - MEM:44.836 Reading. parent:kataster/1623 <> caves-1623/254/254
+> > > - Begin found for:254, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '254'
+> > > > - MEM:44.848 Reading. parent:caves-1623/254/254 <> caves-1623/254/254
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 19 (previous: 2867, now:2886)
+> > - INCLUDE-return from include - caves-1623/254/254
+> > - INCLUDE-go path found, including - caves-1623/261/261
+> > - Match in DB (i) for cave 1623-261.
+> > > - MEM:44.859 Reading. parent:kataster/1623 <> caves-1623/261/261
+> > > - Begin found for:261, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '261'
+> > > > - MEM:44.863 Reading. parent:caves-1623/261/261 <> caves-1623/261/261
+> > > - LEGS: 6 (previous: 2886, now:2892)
+> > - INCLUDE-return from include - caves-1623/261/261
+> > - INCLUDE-go path found, including - caves-1623/262/262
+> > - Match in DB (i) for cave 1623-262.
+> > > - MEM:44.879 Reading. parent:kataster/1623 <> caves-1623/262/262
+> > > - Begin found for:262, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '262'
+> > > > - MEM:44.887 Reading. parent:caves-1623/262/262 <> caves-1623/262/262
+> > > - LEGS: 7 (previous: 2892, now:2899)
+> > - INCLUDE-return from include - caves-1623/262/262
+> > - INCLUDE-go path found, including - caves-1623/263/263
+> > - Match in DB (i) for cave 1623-263.
+> > > - MEM:44.891 Reading. parent:kataster/1623 <> caves-1623/263/263
+> > > - Begin found for:263, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '263'
+> > > > - MEM:44.898 Reading. parent:caves-1623/263/263 <> caves-1623/263/263
+> > > - LEGS: 2 (previous: 2899, now:2901)
+> > - INCLUDE-return from include - caves-1623/263/263
+> > - INCLUDE-go path found, including - caves-1623/267/267
+> > - Match in DB (i) for cave 1623-267.
+> > > - MEM:44.953 Reading. parent:kataster/1623 <> caves-1623/267/267
+> > > - Begin found for:267, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '267'
+> > > > - MEM:44.961 Reading. parent:caves-1623/267/267 <> caves-1623/267/267
+> > > - LEGS: 34 (previous: 2901, now:2935)
+> > - INCLUDE-return from include - caves-1623/267/267
+> > - INCLUDE-go path found, including - caves-1623/271/271
+> > - Match in DB (i) for cave 1623-271.
+> > > - MEM:44.980 Reading. parent:kataster/1623 <> caves-1623/271/271
+> > > - Begin found for:271, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '271'
+> > > > - MEM:44.988 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+> > > - Begin found for:1, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > - MEM:45.000 Reading. parent:caves-1623/271/271 <> caves-1623/271/271
+> > > - LEGS: 11 (previous: 2935, now:2946)
+> > - INCLUDE-return from include - caves-1623/271/271
+> > - INCLUDE-go path found, including - caves-1623/273/273
+> > - Match in DB (i) for cave 1623-273.
+> > > - MEM:45.008 Reading. parent:kataster/1623 <> caves-1623/273/273
+> > > - Begin found for:273, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '273'
+> > > > - MEM:45.012 Reading. parent:caves-1623/273/273 <> caves-1623/273/273
+> > > - LEGS: 5 (previous: 2946, now:2951)
+> > - INCLUDE-return from include - caves-1623/273/273
+> > - INCLUDE-go path found, including - caves-1623/B4/B4
+> > - NO Match in DB (i) for a cave for caves-1623/B4/B4
+> > > - MEM:45.133 Reading. parent:kataster/1623 <> caves-1623/B4/B4
+> > > - No match (b) for caves-1623/B4/b4
+> > > - Begin found for:b4, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'b4'
+> > > > - MEM:45.137 Reading. parent:caves-1623/B4/B4 <> caves-1623/B4/B4
+> > > ! Wallet *REF '2006#36' - NOT found in DB search 'caves-1623/B4/B4'
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 2 (previous: 2951, now:2953)
+> > - INCLUDE-return from include - caves-1623/B4/B4
+> > - INCLUDE-go path found, including - caves-1623/96wk11/96wk11
+> > - NO Match in DB (i) for a cave for caves-1623/96wk11/96wk11
+> > > - MEM:45.160 Reading. parent:kataster/1623 <> caves-1623/96wk11/96wk11
+> > > - No match (b) for caves-1623/96wk11/wk11
+> > > - Begin found for:wk11, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'wk11'
+> > > > - MEM:45.172 Reading. parent:caves-1623/96wk11/96wk11 <> caves-1623/96wk11/96wk11
+> > > - LEGS: 7 (previous: 2953, now:2960)
+> > - INCLUDE-return from include - caves-1623/96wk11/96wk11
+> > - INCLUDE-go path found, including - caves-1623/99ob02/99ob02
+> > - NO Match in DB (i) for a cave for caves-1623/99ob02/99ob02
+> > > - MEM:45.195 Reading. parent:kataster/1623 <> caves-1623/99ob02/99ob02
+> > > - No match (b) for caves-1623/99ob02/99ob02
+> > > - Begin found for:99ob02, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '99ob02'
+> > > > - MEM:45.195 Reading. parent:caves-1623/99ob02/99ob02 <> caves-1623/99ob02/99ob02
+> > > - LEGS: 3 (previous: 2960, now:2963)
+> > - INCLUDE-return from include - caves-1623/99ob02/99ob02
+> > - INCLUDE-go path found, including - caves-1623/2001-02/2001-02
+> > - NO Match in DB (i) for a cave for caves-1623/2001-02/2001-02
+> > > - MEM:45.207 Reading. parent:kataster/1623 <> caves-1623/2001-02/2001-02
+> > > - No match (b) for caves-1623/2001-02/2001-02
+> > > - Begin found for:2001-02, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2001-02'
+> > > > - MEM:45.207 Reading. parent:caves-1623/2001-02/2001-02 <> caves-1623/2001-02/2001-02
+> > > - LEGS: 6 (previous: 2963, now:2969)
+> > - INCLUDE-return from include - caves-1623/2001-02/2001-02
+> > - INCLUDE-go path found, including - caves-1623/2001-03/2001-03
+> > - NO Match in DB (i) for a cave for caves-1623/2001-03/2001-03
+> > > - MEM:45.340 Reading. parent:kataster/1623 <> caves-1623/2001-03/2001-03
+> > > - No match (b) for caves-1623/2001-03/2001-03
+> > > - Begin found for:2001-03, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2001-03'
+> > > > - MEM:45.344 Reading. parent:caves-1623/2001-03/2001-03 <> caves-1623/2001-03/2001-03
+> > > - LEGS: 7 (previous: 2969, now:2976)
+> > - INCLUDE-return from include - caves-1623/2001-03/2001-03
+> > - INCLUDE-go path found, including - caves-1623/2002-ad-03/2002-ad-03
+> > - Match in DB (i) for cave 1623-2002-ad-03.
+> > > - MEM:45.359 Reading. parent:kataster/1623 <> caves-1623/2002-ad-03/2002-ad-03
+> > > - Begin found for:2002-ad-03, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-ad-03'
+> > > > - MEM:45.375 Reading. parent:caves-1623/2002-ad-03/2002-ad-03 <> caves-1623/2002-ad-03/2002-ad-03
+> > > - LEGS: 16 (previous: 2976, now:2992)
+> > - INCLUDE-return from include - caves-1623/2002-ad-03/2002-ad-03
+> > - INCLUDE-go path found, including - caves-1623/2002-ad-04/2002-ad-04
+> > - Match in DB (i) for cave 1623-2002-ad-04.
+> > > - MEM:45.391 Reading. parent:kataster/1623 <> caves-1623/2002-ad-04/2002-ad-04
+> > > - Begin found for:2002-ad-04, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-ad-04'
+> > > > - MEM:45.422 Reading. parent:caves-1623/2002-ad-04/2002-ad-04 <> caves-1623/2002-ad-04/2002-ad-04
+> > > - LEGS: 15 (previous: 2992, now:3007)
+> > - INCLUDE-return from include - caves-1623/2002-ad-04/2002-ad-04
+> > - INCLUDE-go path found, including - caves-1623/2002-w-02/2002-w-02
+> > - Match in DB (i) for cave 1623-2002-w-02.
+> > > - MEM:45.434 Reading. parent:kataster/1623 <> caves-1623/2002-w-02/2002-w-02
+> > > - Begin found for:2002-w-02, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-w-02'
+> > > > - MEM:45.434 Reading. parent:caves-1623/2002-w-02/2002-w-02 <> caves-1623/2002-w-02/2002-w-02
+> > > - LEGS: 6 (previous: 3007, now:3013)
+> > - INCLUDE-return from include - caves-1623/2002-w-02/2002-w-02
+> > - INCLUDE-go path found, including - caves-1623/2002-05/2002-05
+> > - NO Match in DB (i) for a cave for caves-1623/2002-05/2002-05
+> > > - MEM:45.441 Reading. parent:kataster/1623 <> caves-1623/2002-05/2002-05
+> > > - No match (b) for caves-1623/2002-05/2002-05
+> > > - Begin found for:2002-05, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-05'
+> > > > - MEM:45.449 Reading. parent:caves-1623/2002-05/2002-05 <> caves-1623/2002-05/2002-05
+> > > - LEGS: 4 (previous: 3013, now:3017)
+> > - INCLUDE-return from include - caves-1623/2002-05/2002-05
+> > - INCLUDE-go path found, including - caves-1623/2002-06/2002-06
+> > - NO Match in DB (i) for a cave for caves-1623/2002-06/2002-06
+> > > - MEM:45.457 Reading. parent:kataster/1623 <> caves-1623/2002-06/2002-06
+> > > - No match (b) for caves-1623/2002-06/2002-06
+> > > - Begin found for:2002-06, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-06'
+> > > > - MEM:45.457 Reading. parent:caves-1623/2002-06/2002-06 <> caves-1623/2002-06/2002-06
+> > > - LEGS: 2 (previous: 3017, now:3019)
+> > - INCLUDE-return from include - caves-1623/2002-06/2002-06
+> > - INCLUDE-go path found, including - caves-1623/2002-07/2002-07
+> > - NO Match in DB (i) for a cave for caves-1623/2002-07/2002-07
+> > > - MEM:45.465 Reading. parent:kataster/1623 <> caves-1623/2002-07/2002-07
+> > > - No match (b) for caves-1623/2002-07/2002-07
+> > > - Begin found for:2002-07, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-07'
+> > > > - MEM:45.469 Reading. parent:caves-1623/2002-07/2002-07 <> caves-1623/2002-07/2002-07
+> > > - LEGS: 3 (previous: 3019, now:3022)
+> > - INCLUDE-return from include - caves-1623/2002-07/2002-07
+> > - INCLUDE-go path found, including - caves-1623/2002-08/2002-08
+> > - NO Match in DB (i) for a cave for caves-1623/2002-08/2002-08
+> > > - MEM:45.480 Reading. parent:kataster/1623 <> caves-1623/2002-08/2002-08
+> > > - No match (b) for caves-1623/2002-08/2002-08
+> > > - Begin found for:2002-08, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2002-08'
+> > > > - MEM:45.484 Reading. parent:caves-1623/2002-08/2002-08 <> caves-1623/2002-08/2002-08
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 7 (previous: 3022, now:3029)
+> > - INCLUDE-return from include - caves-1623/2002-08/2002-08
+> > - INCLUDE-go path found, including - caves-1623/quarriesd/quarriesd
+> > - NO Match in DB (i) for a cave for caves-1623/quarriesd/quarriesd
+> > > - MEM:45.496 Reading. parent:kataster/1623 <> caves-1623/quarriesd/quarriesd
+> > > - No match (b) for caves-1623/quarriesd/quarriesd
+> > > - Begin found for:quarriesd, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'quarriesd'
+> > > > - MEM:45.496 Reading. parent:caves-1623/quarriesd/quarriesd <> caves-1623/quarriesd/quarriesd
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 3 (previous: 3029, now:3032)
+> > - INCLUDE-return from include - caves-1623/quarriesd/quarriesd
+> > - INCLUDE-go path found, including - caves-1623/2003-01/2003-01
+> > - NO Match in DB (i) for a cave for caves-1623/2003-01/2003-01
+> > > - MEM:45.508 Reading. parent:kataster/1623 <> caves-1623/2003-01/2003-01
+> > > - No match (b) for caves-1623/2003-01/2003-01
+> > > - Begin found for:2003-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2003-01'
+> > > > - MEM:45.512 Reading. parent:caves-1623/2003-01/2003-01 <> caves-1623/2003-01/2003-01
+> > > - LEGS: 3 (previous: 3032, now:3035)
+> > - INCLUDE-return from include - caves-1623/2003-01/2003-01
+> > - INCLUDE-go path found, including - caves-1623/2004-01/2004-01
+> > - NO Match in DB (i) for a cave for caves-1623/2004-01/2004-01
+> > > - MEM:45.523 Reading. parent:kataster/1623 <> caves-1623/2004-01/2004-01
+> > > - No match (b) for caves-1623/2004-01/2004-01
+> > > - Begin found for:2004-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-01'
+> > > > - MEM:45.523 Reading. parent:caves-1623/2004-01/2004-01 <> caves-1623/2004-01/2004-01
+> > > - LEGS: 3 (previous: 3035, now:3038)
+> > - INCLUDE-return from include - caves-1623/2004-01/2004-01
+> > - INCLUDE-go path found, including - caves-1623/2004-03/2004-03
+> > - NO Match in DB (i) for a cave for caves-1623/2004-03/2004-03
+> > > - MEM:45.543 Reading. parent:kataster/1623 <> caves-1623/2004-03/2004-03
+> > > - No match (b) for caves-1623/2004-03/2004-03
+> > > - Begin found for:2004-03, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-03'
+> > > > - MEM:45.543 Reading. parent:caves-1623/2004-03/2004-03 <> caves-1623/2004-03/2004-03
+> > > - LEGS: 6 (previous: 3038, now:3044)
+> > - INCLUDE-return from include - caves-1623/2004-03/2004-03
+> > - INCLUDE-go path found, including - caves-1623/2004-08/2004-08
+> > - NO Match in DB (i) for a cave for caves-1623/2004-08/2004-08
+> > > - MEM:45.559 Reading. parent:kataster/1623 <> caves-1623/2004-08/2004-08
+> > > - No match (b) for caves-1623/2004-08/2004-08
+> > > - Begin found for:2004-08, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-08'
+> > > > - MEM:45.559 Reading. parent:caves-1623/2004-08/2004-08 <> caves-1623/2004-08/2004-08
+> > > - LEGS: 14 (previous: 3044, now:3058)
+> > - INCLUDE-return from include - caves-1623/2004-08/2004-08
+> > - INCLUDE-go path found, including - caves-1623/2004-10/2004-10
+> > - NO Match in DB (i) for a cave for caves-1623/2004-10/2004-10
+> > > - MEM:45.566 Reading. parent:kataster/1623 <> caves-1623/2004-10/2004-10
+> > > - No match (b) for caves-1623/2004-10/2004-10
+> > > - Begin found for:2004-10, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-10'
+> > > > - MEM:45.578 Reading. parent:caves-1623/2004-10/2004-10 <> caves-1623/2004-10/2004-10
+> > > - LEGS: 8 (previous: 3058, now:3066)
+> > - INCLUDE-return from include - caves-1623/2004-10/2004-10
+> > - INCLUDE-go path found, including - caves-1623/2004-14/2004-14
+> > - NO Match in DB (i) for a cave for caves-1623/2004-14/2004-14
+> > > - MEM:45.660 Reading. parent:kataster/1623 <> caves-1623/2004-14/2004-14
+> > > - No match (b) for caves-1623/2004-14/2004-14
+> > > - Begin found for:2004-14, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-14'
+> > > > - MEM:45.664 Reading. parent:caves-1623/2004-14/2004-14 <> caves-1623/2004-14/2004-14
+> > > - LEGS: 2 (previous: 3066, now:3068)
+> > - INCLUDE-return from include - caves-1623/2004-14/2004-14
+> > - INCLUDE-go path found, including - caves-1623/2004-15/2004-15
+> > - NO Match in DB (i) for a cave for caves-1623/2004-15/2004-15
+> > > - MEM:45.676 Reading. parent:kataster/1623 <> caves-1623/2004-15/2004-15
+> > > - No match (b) for caves-1623/2004-15/2004-15
+> > > - Begin found for:2004-15, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-15'
+> > > > - MEM:45.680 Reading. parent:caves-1623/2004-15/2004-15 <> caves-1623/2004-15/2004-15
+> > > - LEGS: 7 (previous: 3068, now:3075)
+> > - INCLUDE-return from include - caves-1623/2004-15/2004-15
+> > - INCLUDE-go path found, including - caves-1623/2004-18/2004-18
+> > - NO Match in DB (i) for a cave for caves-1623/2004-18/2004-18
+> > > - MEM:45.715 Reading. parent:kataster/1623 <> caves-1623/2004-18/2004-18
+> > > - No match (b) for caves-1623/2004-18/2004-18
+> > > - Begin found for:2004-18, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-18'
+> > > > - MEM:45.715 Reading. parent:caves-1623/2004-18/2004-18 <> caves-1623/2004-18/2004-18
+> > > - LEGS: 20 (previous: 3075, now:3095)
+> > - INCLUDE-return from include - caves-1623/2004-18/2004-18
+> > - INCLUDE-go path found, including - caves-1623/2004-20/2004-20
+> > - NO Match in DB (i) for a cave for caves-1623/2004-20/2004-20
+> > > - MEM:45.836 Reading. parent:kataster/1623 <> caves-1623/2004-20/2004-20
+> > > - No match (b) for caves-1623/2004-20/2004-20
+> > > - Begin found for:2004-20, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2004-20'
+> > > > - MEM:45.836 Reading. parent:caves-1623/2004-20/2004-20 <> caves-1623/2004-20/2004-20
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - BLOCK-return from nested *begin/*end block: ''
+> > > - LEGS: 6 (previous: 3095, now:3101)
+> > - INCLUDE-return from include - caves-1623/2004-20/2004-20
+> > - INCLUDE-go path found, including - caves-1623/2005-01/2005-01
+> > - NO Match in DB (i) for a cave for caves-1623/2005-01/2005-01
+> > > - MEM:45.852 Reading. parent:kataster/1623 <> caves-1623/2005-01/2005-01
+> > > - No match (b) for caves-1623/2005-01/2005-01
+> > > - Begin found for:2005-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-01'
+> > > > - MEM:45.852 Reading. parent:caves-1623/2005-01/2005-01 <> caves-1623/2005-01/2005-01
+> > > - LEGS: 10 (previous: 3101, now:3111)
+> > - INCLUDE-return from include - caves-1623/2005-01/2005-01
+> > - INCLUDE-go path found, including - caves-1623/2005-07/2005-07
+> > - NO Match in DB (i) for a cave for caves-1623/2005-07/2005-07
+> > > - MEM:45.859 Reading. parent:kataster/1623 <> caves-1623/2005-07/2005-07
+> > > - No match (b) for caves-1623/2005-07/2005-07
+> > > - Begin found for:2005-07, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-07'
+> > > > - MEM:45.863 Reading. parent:caves-1623/2005-07/2005-07 <> caves-1623/2005-07/2005-07
+> > > - LEGS: 4 (previous: 3111, now:3115)
+> > - INCLUDE-return from include - caves-1623/2005-07/2005-07
+> > - INCLUDE-go path found, including - caves-1623/2005-92/2005-92
+> > - NO Match in DB (i) for a cave for caves-1623/2005-92/2005-92
+> > > - MEM:45.871 Reading. parent:kataster/1623 <> caves-1623/2005-92/2005-92
+> > > - No match (b) for caves-1623/2005-92/2005-92
+> > > - Begin found for:2005-92, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-92'
+> > > > - MEM:45.875 Reading. parent:caves-1623/2005-92/2005-92 <> caves-1623/2005-92/2005-92
+> > > - LEGS: 4 (previous: 3115, now:3119)
+> > - INCLUDE-return from include - caves-1623/2005-92/2005-92
+> > - INCLUDE-go path found, including - caves-1623/2005-93/2005-93
+> > - NO Match in DB (i) for a cave for caves-1623/2005-93/2005-93
+> > > - MEM:45.898 Reading. parent:kataster/1623 <> caves-1623/2005-93/2005-93
+> > > - No match (b) for caves-1623/2005-93/2005-93
+> > > - Begin found for:2005-93, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-93'
+> > > > - MEM:45.902 Reading. parent:caves-1623/2005-93/2005-93 <> caves-1623/2005-93/2005-93
+> > > - LEGS: 2 (previous: 3119, now:3121)
+> > - INCLUDE-return from include - caves-1623/2005-93/2005-93
+> > - INCLUDE-go path found, including - caves-1623/2005-94/2005-94
+> > - NO Match in DB (i) for a cave for caves-1623/2005-94/2005-94
+> > > - MEM:45.906 Reading. parent:kataster/1623 <> caves-1623/2005-94/2005-94
+> > > - No match (b) for caves-1623/2005-94/2005-94
+> > > - Begin found for:2005-94, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-94'
+> > > > - MEM:45.914 Reading. parent:caves-1623/2005-94/2005-94 <> caves-1623/2005-94/2005-94
+> > > - LEGS: 2 (previous: 3121, now:3123)
+> > - INCLUDE-return from include - caves-1623/2005-94/2005-94
+> > - INCLUDE-go path found, including - caves-1623/2005-95/2005-95
+> > - NO Match in DB (i) for a cave for caves-1623/2005-95/2005-95
+> > > - MEM:45.922 Reading. parent:kataster/1623 <> caves-1623/2005-95/2005-95
+> > > - No match (b) for caves-1623/2005-95/2005-95
+> > > - Begin found for:2005-95, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-95'
+> > > > - MEM:45.926 Reading. parent:caves-1623/2005-95/2005-95 <> caves-1623/2005-95/2005-95
+> > > - LEGS: 4 (previous: 3123, now:3127)
+> > - INCLUDE-return from include - caves-1623/2005-95/2005-95
+> > - INCLUDE-go path found, including - caves-1623/2005-96/2005-96
+> > - NO Match in DB (i) for a cave for caves-1623/2005-96/2005-96
+> > > - MEM:45.941 Reading. parent:kataster/1623 <> caves-1623/2005-96/2005-96
+> > > - No match (b) for caves-1623/2005-96/2005-96
+> > > - Begin found for:2005-96, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-96'
+> > > > - MEM:45.941 Reading. parent:caves-1623/2005-96/2005-96 <> caves-1623/2005-96/2005-96
+> > > - LEGS: 2 (previous: 3127, now:3129)
+> > - INCLUDE-return from include - caves-1623/2005-96/2005-96
+> > - INCLUDE-go path found, including - caves-1623/2005-99/2005-99
+> > - NO Match in DB (i) for a cave for caves-1623/2005-99/2005-99
+> > > - MEM:45.949 Reading. parent:kataster/1623 <> caves-1623/2005-99/2005-99
+> > > - No match (b) for caves-1623/2005-99/2005-99
+> > > - Begin found for:2005-99, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2005-99'
+> > > > - MEM:45.957 Reading. parent:caves-1623/2005-99/2005-99 <> caves-1623/2005-99/2005-99
+> > > - LEGS: 5 (previous: 3129, now:3134)
+> > - INCLUDE-return from include - caves-1623/2005-99/2005-99
+> > - INCLUDE-go path found, including - caves-1623/2006-08/2006-08
+> > - NO Match in DB (i) for a cave for caves-1623/2006-08/2006-08
+> > > - MEM:45.961 Reading. parent:kataster/1623 <> caves-1623/2006-08/2006-08
+> > > - No match (b) for caves-1623/2006-08/2006-08
+> > > - Begin found for:2006-08, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2006-08'
+> > > > - MEM:45.961 Reading. parent:caves-1623/2006-08/2006-08 <> caves-1623/2006-08/2006-08
+> > > - LEGS: 2 (previous: 3134, now:3136)
+> > - INCLUDE-return from include - caves-1623/2006-08/2006-08
+> > - INCLUDE-go path found, including - caves-1623/2006-09/2006-09
+> > - NO Match in DB (i) for a cave for caves-1623/2006-09/2006-09
+> > > - MEM:45.973 Reading. parent:kataster/1623 <> caves-1623/2006-09/2006-09
+> > > - No match (b) for caves-1623/2006-09/2006-09
+> > > - Begin found for:2006-09, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2006-09'
+> > > > - MEM:45.977 Reading. parent:caves-1623/2006-09/2006-09 <> caves-1623/2006-09/2006-09
+> > > - LEGS: 2 (previous: 3136, now:3138)
+> > - INCLUDE-return from include - caves-1623/2006-09/2006-09
+> > - INCLUDE-go path found, including - caves-1623/2006-70/2006-70
+> > - NO Match in DB (i) for a cave for caves-1623/2006-70/2006-70
+> > > - MEM:45.988 Reading. parent:kataster/1623 <> caves-1623/2006-70/2006-70
+> > > - No match (b) for caves-1623/2006-70/2006-70
+> > > - Begin found for:2006-70, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2006-70'
+> > > > - MEM:45.992 Reading. parent:caves-1623/2006-70/2006-70 <> caves-1623/2006-70/2006-70
+> > > - LEGS: 2 (previous: 3138, now:3140)
+> > - INCLUDE-return from include - caves-1623/2006-70/2006-70
+> > - INCLUDE-go path found, including - caves-1623/2006-71/2006-71
+> > - NO Match in DB (i) for a cave for caves-1623/2006-71/2006-71
+> > > - MEM:46.031 Reading. parent:kataster/1623 <> caves-1623/2006-71/2006-71
+> > > - No match (b) for caves-1623/2006-71/2006-71
+> > > - Begin found for:2006-71, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2006-71'
+> > > > - MEM:46.031 Reading. parent:caves-1623/2006-71/2006-71 <> caves-1623/2006-71/2006-71
+> > > - LEGS: 1 (previous: 3140, now:3141)
+> > - INCLUDE-return from include - caves-1623/2006-71/2006-71
+> > - INCLUDE-go path found, including - caves-1623/2006-72/2006-72
+> > - NO Match in DB (i) for a cave for caves-1623/2006-72/2006-72
+> > > - MEM:46.035 Reading. parent:kataster/1623 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/2006-72
+> > > - Begin found for:2006-72, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2006-72'
+> > > > - MEM:46.039 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > - No match (b) for caves-1623/2006-72/pt1
+> > > - Begin found for:pt1, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > - MEM:46.043 Reading. parent:caves-1623/2006-72/2006-72 <> caves-1623/2006-72/2006-72
+> > > - LEGS: 2 (previous: 3141, now:3143)
+> > - INCLUDE-return from include - caves-1623/2006-72/2006-72
+> > - INCLUDE-go path found, including - caves-1623/2006-73/2006-73
+> > - NO Match in DB (i) for a cave for caves-1623/2006-73/2006-73
+> > > - MEM:46.066 Reading. parent:kataster/1623 <> caves-1623/2006-73/2006-73
+> > > - No match (b) for caves-1623/2006-73/2006-73
+> > > - Begin found for:2006-73, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2006-73'
+> > > > - MEM:46.066 Reading. parent:caves-1623/2006-73/2006-73 <> caves-1623/2006-73/2006-73
+> > > - LEGS: 10 (previous: 3143, now:3153)
+> > - INCLUDE-return from include - caves-1623/2006-73/2006-73
+> > - INCLUDE-go path found, including - caves-1623/2007-04/2007-04
+> > - NO Match in DB (i) for a cave for caves-1623/2007-04/2007-04
+> > > - MEM:46.074 Reading. parent:kataster/1623 <> caves-1623/2007-04/2007-04
+> > > - No match (b) for caves-1623/2007-04/2007-04
+> > > - Begin found for:2007-04, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-04'
+> > > > - MEM:46.078 Reading. parent:caves-1623/2007-04/2007-04 <> caves-1623/2007-04/2007-04
+> > > - LEGS: 13 (previous: 3153, now:3166)
+> > - INCLUDE-return from include - caves-1623/2007-04/2007-04
+> > - INCLUDE-go path found, including - caves-1623/2007-05/2007-05
+> > - NO Match in DB (i) for a cave for caves-1623/2007-05/2007-05
+> > > - MEM:46.094 Reading. parent:kataster/1623 <> caves-1623/2007-05/2007-05
+> > > - No match (b) for caves-1623/2007-05/2007-05
+> > > - Begin found for:2007-05, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-05'
+> > > > - MEM:46.094 Reading. parent:caves-1623/2007-05/2007-05 <> caves-1623/2007-05/2007-05
+> > > - LEGS: 3 (previous: 3166, now:3169)
+> > - INCLUDE-return from include - caves-1623/2007-05/2007-05
+> > - INCLUDE-go path found, including - caves-1623/2007-06/2007-06
+> > - NO Match in DB (i) for a cave for caves-1623/2007-06/2007-06
+> > > - MEM:46.113 Reading. parent:kataster/1623 <> caves-1623/2007-06/2007-06
+> > > - No match (b) for caves-1623/2007-06/2007-06
+> > > - Begin found for:2007-06, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-06'
+> > > > - MEM:46.113 Reading. parent:caves-1623/2007-06/2007-06 <> caves-1623/2007-06/2007-06
+> > > - LEGS: 1 (previous: 3169, now:3170)
+> > - INCLUDE-return from include - caves-1623/2007-06/2007-06
+> > - INCLUDE-go path found, including - caves-1623/2007-07/2007-07
+> > - NO Match in DB (i) for a cave for caves-1623/2007-07/2007-07
+> > > - MEM:46.117 Reading. parent:kataster/1623 <> caves-1623/2007-07/2007-07
+> > > - No match (b) for caves-1623/2007-07/2007-07
+> > > - Begin found for:2007-07, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-07'
+> > > > - MEM:46.117 Reading. parent:caves-1623/2007-07/2007-07 <> caves-1623/2007-07/2007-07
+> > > - LEGS: 2 (previous: 3170, now:3172)
+> > - INCLUDE-return from include - caves-1623/2007-07/2007-07
+> > - INCLUDE-go path found, including - caves-1623/2007-12/2007-12
+> > - NO Match in DB (i) for a cave for caves-1623/2007-12/2007-12
+> > > - MEM:46.141 Reading. parent:kataster/1623 <> caves-1623/2007-12/2007-12
+> > > - No match (b) for caves-1623/2007-12/2007-12
+> > > - Begin found for:2007-12, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-12'
+> > > > - MEM:46.141 Reading. parent:caves-1623/2007-12/2007-12 <> caves-1623/2007-12/2007-12
+> > > - LEGS: 3 (previous: 3172, now:3175)
+> > - INCLUDE-return from include - caves-1623/2007-12/2007-12
+> > - INCLUDE-go path found, including - caves-1623/2007-70/2007-70
+> > - NO Match in DB (i) for a cave for caves-1623/2007-70/2007-70
+> > > - MEM:46.148 Reading. parent:kataster/1623 <> caves-1623/2007-70/2007-70
+> > > - No match (b) for caves-1623/2007-70/2007-70
+> > > - Begin found for:2007-70, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-70'
+> > > > - MEM:46.148 Reading. parent:caves-1623/2007-70/2007-70 <> caves-1623/2007-70/2007-70
+> > > - LEGS: 2 (previous: 3175, now:3177)
+> > - INCLUDE-return from include - caves-1623/2007-70/2007-70
+> > - INCLUDE-go path found, including - caves-1623/2007-72/2007-72
+> > - NO Match in DB (i) for a cave for caves-1623/2007-72/2007-72
+> > > - MEM:46.152 Reading. parent:kataster/1623 <> caves-1623/2007-72/2007-72
+> > > - No match (b) for caves-1623/2007-72/2007-72
+> > > - Begin found for:2007-72, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-72'
+> > > > - MEM:46.160 Reading. parent:caves-1623/2007-72/2007-72 <> caves-1623/2007-72/2007-72
+> > > - LEGS: 7 (previous: 3177, now:3184)
+> > - INCLUDE-return from include - caves-1623/2007-72/2007-72
+> > - INCLUDE-go path found, including - caves-1623/2009-01/2009-01
+> > - NO Match in DB (i) for a cave for caves-1623/2009-01/2009-01
+> > > - MEM:46.176 Reading. parent:kataster/1623 <> caves-1623/2009-01/2009-01
+> > > - No match (b) for caves-1623/2009-01/2009-01
+> > > - Begin found for:2009-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2009-01'
+> > > > - MEM:46.176 Reading. parent:caves-1623/2009-01/2009-01 <> caves-1623/2009-01/2009-01
+> > > - LEGS: 3 (previous: 3184, now:3187)
+> > - INCLUDE-return from include - caves-1623/2009-01/2009-01
+> > - INCLUDE-go path found, including - caves-1623/2009-02/2009-02
+> > - NO Match in DB (i) for a cave for caves-1623/2009-02/2009-02
+> > > - MEM:46.242 Reading. parent:kataster/1623 <> caves-1623/2009-02/2009-02
+> > > - No match (b) for caves-1623/2009-02/2009-02
+> > > - Begin found for:2009-02, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2009-02'
+> > > > - MEM:46.242 Reading. parent:caves-1623/2009-02/2009-02 <> caves-1623/2009-02/2009-02
+> > > - LEGS: 17 (previous: 3187, now:3204)
+> > - INCLUDE-return from include - caves-1623/2009-02/2009-02
+> > - INCLUDE-go path found, including - caves-1623/2009-03/2009-03
+> > - NO Match in DB (i) for a cave for caves-1623/2009-03/2009-03
+> > > - MEM:46.254 Reading. parent:kataster/1623 <> caves-1623/2009-03/2009-03
+> > > - No match (b) for caves-1623/2009-03/2009-03
+> > > - Begin found for:2009-03, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2009-03'
+> > > > - MEM:46.258 Reading. parent:caves-1623/2009-03/2009-03 <> caves-1623/2009-03/2009-03
+> > > - LEGS: 7 (previous: 3204, now:3211)
+> > - INCLUDE-return from include - caves-1623/2009-03/2009-03
+> > - INCLUDE-go path found, including - caves-1623/2010-06/2010-06
+> > - NO Match in DB (i) for a cave for caves-1623/2010-06/2010-06
+> > > - MEM:46.305 Reading. parent:kataster/1623 <> caves-1623/2010-06/2010-06
+> > > - No match (b) for caves-1623/2010-06/2010-06
+> > > - Begin found for:2010-06, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2010-06'
+> > > > - MEM:46.305 Reading. parent:caves-1623/2010-06/2010-06 <> caves-1623/2010-06/2010-06
+> > > - LEGS: 6 (previous: 3211, now:3217)
+> > - INCLUDE-return from include - caves-1623/2010-06/2010-06
+> > - INCLUDE-go path found, including - caves-1623/2010-07/2010-07
+> > - NO Match in DB (i) for a cave for caves-1623/2010-07/2010-07
+> > > - MEM:46.305 Reading. parent:kataster/1623 <> caves-1623/2010-07/2010-07
+> > > - No match (b) for caves-1623/2010-07/2010-07
+> > > - Begin found for:2010-07, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2010-07'
+> > > > - MEM:46.305 Reading. parent:caves-1623/2010-07/2010-07 <> caves-1623/2010-07/2010-07
+> > > - LEGS: 5 (previous: 3217, now:3222)
+> > - INCLUDE-return from include - caves-1623/2010-07/2010-07
+> > - INCLUDE-go path found, including - caves-1623/2011-01/2011-01
+> > - NO Match in DB (i) for a cave for caves-1623/2011-01/2011-01
+> > > - MEM:46.316 Reading. parent:kataster/1623 <> caves-1623/2011-01/2011-01
+> > > - No match (b) for caves-1623/2011-01/2011-01
+> > > - Begin found for:2011-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2011-01'
+> > > > - MEM:46.320 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/2011-01
+> > > - INCLUDE-go path found, including - caves-1623/2011-01/bullet1
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet1
+> > > > - MEM:46.324 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet1
+> > > > - No match (b) for caves-1623/2011-01/bullet1
+> > > > - Begin found for:bullet1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bullet1'
+> > > > > - MEM:46.324 Reading. parent:caves-1623/2011-01/bullet1 <> caves-1623/2011-01/bullet1
+> > > > - LEGS: 15 (previous: 3222, now:3237)
+> > > - INCLUDE-return from include - caves-1623/2011-01/bullet1
+> > > - INCLUDE-go path found, including - caves-1623/2011-01/bullet2
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet2
+> > > > - MEM:46.332 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet2
+> > > > - No match (b) for caves-1623/2011-01/bullet2
+> > > > - Begin found for:bullet2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bullet2'
+> > > > > - MEM:46.340 Reading. parent:caves-1623/2011-01/bullet2 <> caves-1623/2011-01/bullet2
+> > > > - LEGS: 12 (previous: 3237, now:3249)
+> > > - INCLUDE-return from include - caves-1623/2011-01/bullet2
+> > > - INCLUDE-go path found, including - caves-1623/2011-01/bullet3
+> > > - NO Match in DB (i) for a cave for caves-1623/2011-01/bullet3
+> > > > - MEM:46.352 Reading. parent:caves-1623/2011-01/2011-01 <> caves-1623/2011-01/bullet3
+> > > > - No match (b) for caves-1623/2011-01/bullet3
+> > > > - Begin found for:bullet3, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bullet3'
+> > > > > - MEM:46.355 Reading. parent:caves-1623/2011-01/bullet3 <> caves-1623/2011-01/bullet3
+> > > > - LEGS: 4 (previous: 3249, now:3253)
+> > > - INCLUDE-return from include - caves-1623/2011-01/bullet3
+> > > - LEGS: 31 (previous: 3222, now:3253)
+> > - INCLUDE-return from include - caves-1623/2011-01/2011-01
+> > - INCLUDE-go path found, including - caves-1623/2012-hw-01/2012-hw-01
+> > - Match in DB (i) for cave 1623-2012-hw-01.
+> > > - MEM:46.367 Reading. parent:kataster/1623 <> caves-1623/2012-hw-01/2012-hw-01
+> > > - Begin found for:2012-hw-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-hw-01'
+> > > > - MEM:46.371 Reading. parent:caves-1623/2012-hw-01/2012-hw-01 <> caves-1623/2012-hw-01/2012-hw-01
+> > > - LEGS: 4 (previous: 3253, now:3257)
+> > - INCLUDE-return from include - caves-1623/2012-hw-01/2012-hw-01
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-01/2012-ns-01
+> > - Match in DB (i) for cave 1623-2012-ns-01.
+> > > - MEM:46.387 Reading. parent:kataster/1623 <> caves-1623/2012-ns-01/2012-ns-01
+> > > - Begin found for:2012-ns-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-01'
+> > > > - MEM:46.391 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/2012-ns-01
+> > > - INCLUDE-go path found, including - caves-1623/2012-ns-01/AntsInYourPants
+> > > - Match in DB (i) for cave 1623-2012-ns-01.
+> > > > - MEM:46.398 Reading. parent:caves-1623/2012-ns-01/2012-ns-01 <> caves-1623/2012-ns-01/AntsInYourPants
+> > > > - Begin found for:antsinyourpants, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'antsinyourpants'
+> > > > > - MEM:46.410 Reading. parent:caves-1623/2012-ns-01/AntsInYourPants <> caves-1623/2012-ns-01/AntsInYourPants
+> > > > - LEGS: 14 (previous: 3257, now:3271)
+> > > - INCLUDE-return from include - caves-1623/2012-ns-01/AntsInYourPants
+> > > - LEGS: 15 (previous: 3257, now:3272)
+> > - INCLUDE-return from include - caves-1623/2012-ns-01/2012-ns-01
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-02/2012-ns-02
+> > - Match in DB (i) for cave 1623-2012-ns-02.
+> > > - MEM:46.426 Reading. parent:kataster/1623 <> caves-1623/2012-ns-02/2012-ns-02
+> > > - Begin found for:2012-ns-02, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-02'
+> > > > - MEM:46.426 Reading. parent:caves-1623/2012-ns-02/2012-ns-02 <> caves-1623/2012-ns-02/2012-ns-02
+> > > - LEGS: 1 (previous: 3272, now:3273)
+> > - INCLUDE-return from include - caves-1623/2012-ns-02/2012-ns-02
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-03/2012-ns-03
+> > - Match in DB (i) for cave 1623-2012-ns-03.
+> > > - MEM:46.449 Reading. parent:kataster/1623 <> caves-1623/2012-ns-03/2012-ns-03
+> > > - Begin found for:2012-ns-03, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-03'
+> > > > - MEM:46.453 Reading. parent:caves-1623/2012-ns-03/2012-ns-03 <> caves-1623/2012-ns-03/2012-ns-03
+> > > - LEGS: 5 (previous: 3273, now:3278)
+> > - INCLUDE-return from include - caves-1623/2012-ns-03/2012-ns-03
+> > - INCLUDE-go path found, including - caves-1623/2010-03/2010-03
+> > - NO Match in DB (i) for a cave for caves-1623/2010-03/2010-03
+> > > - MEM:46.457 Reading. parent:kataster/1623 <> caves-1623/2010-03/2010-03
+> > > - No match (b) for caves-1623/2010-03/2010-03
+> > > - Begin found for:2010-03, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2010-03'
+> > > > - MEM:46.457 Reading. parent:caves-1623/2010-03/2010-03 <> caves-1623/2010-03/2010-03
+> > > - LEGS: 5 (previous: 3278, now:3283)
+> > - INCLUDE-return from include - caves-1623/2010-03/2010-03
+> > - INCLUDE-go path found, including - caves-1623/2010-04/2010-04
+> > - NO Match in DB (i) for a cave for caves-1623/2010-04/2010-04
+> > > - MEM:46.473 Reading. parent:kataster/1623 <> caves-1623/2010-04/2010-04
+> > > - No match (b) for caves-1623/2010-04/2010-04
+> > > - Begin found for:2010-04, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2010-04'
+> > > > - MEM:46.480 Reading. parent:caves-1623/2010-04/2010-04 <> caves-1623/2010-04/2010-04
+> > > - LEGS: 2 (previous: 3283, now:3285)
+> > - INCLUDE-return from include - caves-1623/2010-04/2010-04
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-05/2012-ns-05
+> > - Match in DB (i) for cave 1623-2012-ns-05.
+> > > - MEM:46.488 Reading. parent:kataster/1623 <> caves-1623/2012-ns-05/2012-ns-05
+> > > - Begin found for:2012-ns-05, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-05'
+> > > > - MEM:46.488 Reading. parent:caves-1623/2012-ns-05/2012-ns-05 <> caves-1623/2012-ns-05/2012-ns-05
+> > > - LEGS: 1 (previous: 3285, now:3286)
+> > - INCLUDE-return from include - caves-1623/2012-ns-05/2012-ns-05
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-06/2012-ns-06
+> > - Match in DB (i) for cave 1623-2012-ns-06.
+> > > - MEM:46.520 Reading. parent:kataster/1623 <> caves-1623/2012-ns-06/2012-ns-06
+> > > - Begin found for:2012-ns-06, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-06'
+> > > > - MEM:46.523 Reading. parent:caves-1623/2012-ns-06/2012-ns-06 <> caves-1623/2012-ns-06/2012-ns-06
+> > > - LEGS: 1 (previous: 3286, now:3287)
+> > - INCLUDE-return from include - caves-1623/2012-ns-06/2012-ns-06
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-07/2012-ns-07
+> > - Match in DB (i) for cave 1623-2012-ns-07.
+> > > - MEM:46.535 Reading. parent:kataster/1623 <> caves-1623/2012-ns-07/2012-ns-07
+> > > - Begin found for:2012-ns-07, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-07'
+> > > > - MEM:46.547 Reading. parent:caves-1623/2012-ns-07/2012-ns-07 <> caves-1623/2012-ns-07/2012-ns-07
+> > > - LEGS: 1 (previous: 3287, now:3288)
+> > - INCLUDE-return from include - caves-1623/2012-ns-07/2012-ns-07
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-08/2012-ns-08
+> > - Match in DB (i) for cave 1623-2012-ns-08.
+> > > - MEM:46.555 Reading. parent:kataster/1623 <> caves-1623/2012-ns-08/2012-ns-08
+> > > - Begin found for:2012-ns-08, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-08'
+> > > > - MEM:46.562 Reading. parent:caves-1623/2012-ns-08/2012-ns-08 <> caves-1623/2012-ns-08/2012-ns-08
+> > > - LEGS: 1 (previous: 3288, now:3289)
+> > - INCLUDE-return from include - caves-1623/2012-ns-08/2012-ns-08
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-09/2012-ns-09
+> > - Match in DB (i) for cave 1623-2012-ns-09.
+> > > - MEM:46.574 Reading. parent:kataster/1623 <> caves-1623/2012-ns-09/2012-ns-09
+> > > - Begin found for:2012-ns-09, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-09'
+> > > > - MEM:46.574 Reading. parent:caves-1623/2012-ns-09/2012-ns-09 <> caves-1623/2012-ns-09/2012-ns-09
+> > > - LEGS: 4 (previous: 3289, now:3293)
+> > - INCLUDE-return from include - caves-1623/2012-ns-09/2012-ns-09
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-10/2012-ns-10
+> > - Match in DB (i) for cave 1623-2012-ns-10.
+> > > - MEM:46.590 Reading. parent:kataster/1623 <> caves-1623/2012-ns-10/2012-ns-10
+> > > - Begin found for:2012-ns-10, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-10'
+> > > > - MEM:46.598 Reading. parent:caves-1623/2012-ns-10/2012-ns-10 <> caves-1623/2012-ns-10/2012-ns-10
+> > > - LEGS: 5 (previous: 3293, now:3298)
+> > - INCLUDE-return from include - caves-1623/2012-ns-10/2012-ns-10
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-12/2012-ns-12
+> > - Match in DB (i) for cave 1623-2012-ns-12.
+> > > - MEM:46.621 Reading. parent:kataster/1623 <> caves-1623/2012-ns-12/2012-ns-12
+> > > - Begin found for:2012-ns-12, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-12'
+> > > > - MEM:46.629 Reading. parent:caves-1623/2012-ns-12/2012-ns-12 <> caves-1623/2012-ns-12/2012-ns-12
+> > > - LEGS: 1 (previous: 3298, now:3299)
+> > - INCLUDE-return from include - caves-1623/2012-ns-12/2012-ns-12
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-13/2012-ns-13
+> > - Match in DB (i) for cave 1623-2012-ns-13.
+> > > - MEM:46.645 Reading. parent:kataster/1623 <> caves-1623/2012-ns-13/2012-ns-13
+> > > - Begin found for:2012-ns-13, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-13'
+> > > > - MEM:46.656 Reading. parent:caves-1623/2012-ns-13/2012-ns-13 <> caves-1623/2012-ns-13/2012-ns-13
+> > > - LEGS: 5 (previous: 3299, now:3304)
+> > - INCLUDE-return from include - caves-1623/2012-ns-13/2012-ns-13
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-14/2012-ns-14
+> > - Match in DB (i) for cave 1623-2012-ns-14.
+> > > - MEM:46.676 Reading. parent:kataster/1623 <> caves-1623/2012-ns-14/2012-ns-14
+> > > - Begin found for:2012-ns-14, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-14'
+> > > > - MEM:46.676 Reading. parent:caves-1623/2012-ns-14/2012-ns-14 <> caves-1623/2012-ns-14/2012-ns-14
+> > > - LEGS: 1 (previous: 3304, now:3305)
+> > - INCLUDE-return from include - caves-1623/2012-ns-14/2012-ns-14
+> > - INCLUDE-go path found, including - caves-1623/2012-ns-15/2012-ns-15
+> > - Match in DB (i) for cave 1623-2012-ns-15.
+> > > - MEM:46.688 Reading. parent:kataster/1623 <> caves-1623/2012-ns-15/2012-ns-15
+> > > - Begin found for:2012-ns-15, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-ns-15'
+> > > > - MEM:46.699 Reading. parent:caves-1623/2012-ns-15/2012-ns-15 <> caves-1623/2012-ns-15/2012-ns-15
+> > > - LEGS: 1 (previous: 3305, now:3306)
+> > - INCLUDE-return from include - caves-1623/2012-ns-15/2012-ns-15
+> > - INCLUDE-go path found, including - caves-1623/2012-70/2012-70
+> > - NO Match in DB (i) for a cave for caves-1623/2012-70/2012-70
+> > > - MEM:46.707 Reading. parent:kataster/1623 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/2012-70
+> > > - Begin found for:2012-70, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-70'
+> > > > - MEM:46.715 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > - No match (b) for caves-1623/2012-70/pt2
+> > > - Begin found for:pt2, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'pt2'
+> > > > - MEM:46.723 Reading. parent:caves-1623/2012-70/2012-70 <> caves-1623/2012-70/2012-70
+> > > - LEGS: 10 (previous: 3331, now:3341)
+> > - INCLUDE-return from include - caves-1623/2012-70/2012-70
+> > - INCLUDE-go path found, including - caves-1623/2012-js-1/2012-js-1
+> > - Match in DB (i) for cave 1623-2012-js-1.
+> > > - MEM:46.734 Reading. parent:kataster/1623 <> caves-1623/2012-js-1/2012-js-1
+> > > - Begin found for:2012-js-1, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-js-1'
+> > > > - MEM:46.738 Reading. parent:caves-1623/2012-js-1/2012-js-1 <> caves-1623/2012-js-1/2012-js-1
+> > > - LEGS: 6 (previous: 3341, now:3347)
+> > - INCLUDE-return from include - caves-1623/2012-js-1/2012-js-1
+> > - INCLUDE-go path found, including - caves-1623/2012-dd-05/2012-dd-05
+> > - Match in DB (i) for cave 1623-2012-dd-05.
+> > > - MEM:46.746 Reading. parent:kataster/1623 <> caves-1623/2012-dd-05/2012-dd-05
+> > > - Begin found for:2012-dd-05, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-dd-05'
+> > > > - MEM:46.762 Reading. parent:caves-1623/2012-dd-05/2012-dd-05 <> caves-1623/2012-dd-05/2012-dd-05
+> > > - LEGS: 19 (previous: 3347, now:3366)
+> > - INCLUDE-return from include - caves-1623/2012-dd-05/2012-dd-05
+> > - INCLUDE-go path found, including - caves-1623/2012-dd-08/2012-dd-08
+> > - Match in DB (i) for cave 1623-2012-dd-08.
+> > > - MEM:46.789 Reading. parent:kataster/1623 <> caves-1623/2012-dd-08/2012-dd-08
+> > > - Begin found for:2012-dd-08, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2012-dd-08'
+> > > > - MEM:46.797 Reading. parent:caves-1623/2012-dd-08/2012-dd-08 <> caves-1623/2012-dd-08/2012-dd-08
+> > > - LEGS: 6 (previous: 3366, now:3372)
+> > - INCLUDE-return from include - caves-1623/2012-dd-08/2012-dd-08
+> > - INCLUDE-go path found, including - caves-1623/2014-sd-01/2014-sd-01
+> > - Match in DB (i) for cave 1623-2014-sd-01.
+> > > - MEM:46.812 Reading. parent:kataster/1623 <> caves-1623/2014-sd-01/2014-sd-01
+> > > - Begin found for:2014-sd-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2014-sd-01'
+> > > > - MEM:46.816 Reading. parent:caves-1623/2014-sd-01/2014-sd-01 <> caves-1623/2014-sd-01/2014-sd-01
+> > > - LEGS: 13 (previous: 3372, now:3385)
+> > - INCLUDE-return from include - caves-1623/2014-sd-01/2014-sd-01
+> > - INCLUDE-go path found, including - caves-1623/2014-BL888/2014-BL888
+> > - NO Match in DB (i) for a cave for caves-1623/2014-BL888/2014-BL888
+> > > - MEM:46.852 Reading. parent:kataster/1623 <> caves-1623/2014-BL888/2014-BL888
+> > > - No match (b) for caves-1623/2014-BL888/2014-BL888
+> > > - Begin found for:2014-bl888, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2014-bl888'
+> > > > - MEM:46.855 Reading. parent:caves-1623/2014-BL888/2014-BL888 <> caves-1623/2014-BL888/2014-BL888
+> > > - LEGS: 10 (previous: 3385, now:3395)
+> > - INCLUDE-return from include - caves-1623/2014-BL888/2014-BL888
+> > - INCLUDE-go path found, including - caves-1623/2015-mf-06/2015-mf-06
+> > - Match in DB (i) for cave 1623-2015-mf-06.
+> > > - MEM:46.871 Reading. parent:kataster/1623 <> caves-1623/2015-mf-06/2015-mf-06
+> > > - Begin found for:2015-mf-06, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2015-mf-06'
+> > > > - MEM:46.871 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/2015-mf-06
+> > > - INCLUDE-go path found, including - caves-1623/2015-mf-06/purplelupine
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+> > > > - MEM:46.887 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine
+> > > > - Begin found for:purplelupine, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'purplelupine'
+> > > > > - MEM:46.898 Reading. parent:caves-1623/2015-mf-06/purplelupine <> caves-1623/2015-mf-06/purplelupine
+> > > > - LEGS: 10 (previous: 3395, now:3405)
+> > > - INCLUDE-return from include - caves-1623/2015-mf-06/purplelupine
+> > > - INCLUDE-go path found, including - caves-1623/2015-mf-06/purplelupine2
+> > > - Match in DB (i) for cave 1623-2015-mf-06.
+> > > > - MEM:46.902 Reading. parent:caves-1623/2015-mf-06/2015-mf-06 <> caves-1623/2015-mf-06/purplelupine2
+> > > > - Begin found for:purplelupine2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'purplelupine2'
+> > > > > - MEM:46.910 Reading. parent:caves-1623/2015-mf-06/purplelupine2 <> caves-1623/2015-mf-06/purplelupine2
+> > > > - LEGS: 14 (previous: 3405, now:3419)
+> > > - INCLUDE-return from include - caves-1623/2015-mf-06/purplelupine2
+> > > - LEGS: 24 (previous: 3395, now:3419)
+> > - INCLUDE-return from include - caves-1623/2015-mf-06/2015-mf-06
+> > - INCLUDE-go path found, including - caves-1623/2016-jb-01/2016-jb-01
+> > - Match in DB (i) for cave 1623-2016-jb-01.
+> > > - MEM:46.930 Reading. parent:kataster/1623 <> caves-1623/2016-jb-01/2016-jb-01
+> > > - Begin found for:2016-jb-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2016-jb-01'
+> > > > - MEM:46.930 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/2016-jb-01
+> > > - INCLUDE-go path found, including - caves-1623/2016-jb-01/solidrock
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+> > > > - MEM:46.945 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrock
+> > > > - Begin found for:solidrock, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'solidrock'
+> > > > > - MEM:46.984 Reading. parent:caves-1623/2016-jb-01/solidrock <> caves-1623/2016-jb-01/solidrock
+> > > > - LEGS: 252 (previous: 3419, now:3671)
+> > > - INCLUDE-return from include - caves-1623/2016-jb-01/solidrock
+> > > - INCLUDE-go path found, including - caves-1623/2016-jb-01/hopeless
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+> > > > - MEM:46.992 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/hopeless
+> > > > - Begin found for:hopeless, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'hopeless'
+> > > > > - MEM:46.992 Reading. parent:caves-1623/2016-jb-01/hopeless <> caves-1623/2016-jb-01/hopeless
+> > > > - LEGS: 85 (previous: 3671, now:3756)
+> > > - INCLUDE-return from include - caves-1623/2016-jb-01/hopeless
+> > > - INCLUDE-go path found, including - caves-1623/2016-jb-01/dirtysnow
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+> > > > - MEM:47.000 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/dirtysnow
+> > > > - Begin found for:dirtysnow, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'dirtysnow'
+> > > > > - MEM:47.008 Reading. parent:caves-1623/2016-jb-01/dirtysnow <> caves-1623/2016-jb-01/dirtysnow
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - LEGS: 59 (previous: 3756, now:3815)
+> > > - INCLUDE-return from include - caves-1623/2016-jb-01/dirtysnow
+> > > - INCLUDE-go path found, including - caves-1623/2016-jb-01/solidrocks
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+> > > > - MEM:47.016 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/solidrocks
+> > > > - Begin found for:solidrocks, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'solidrocks'
+> > > > > - MEM:47.020 Reading. parent:caves-1623/2016-jb-01/solidrocks <> caves-1623/2016-jb-01/solidrocks
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - LEGS: 65 (previous: 3815, now:3880)
+> > > - INCLUDE-return from include - caves-1623/2016-jb-01/solidrocks
+> > > - INCLUDE-go path found, including - caves-1623/2016-jb-01/nervousbreakdown
+> > > - Match in DB (i) for cave 1623-2016-jb-01.
+> > > > - MEM:47.023 Reading. parent:caves-1623/2016-jb-01/2016-jb-01 <> caves-1623/2016-jb-01/nervousbreakdown
+> > > > - Begin found for:nervousbreakdown, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'nervousbreakdown'
+> > > > > - MEM:47.043 Reading. parent:caves-1623/2016-jb-01/nervousbreakdown <> caves-1623/2016-jb-01/nervousbreakdown
+> > > > - LEGS: 200 (previous: 3880, now:4080)
+> > > - INCLUDE-return from include - caves-1623/2016-jb-01/nervousbreakdown
+> > > - LEGS: 661 (previous: 3419, now:4080)
+> > - INCLUDE-return from include - caves-1623/2016-jb-01/2016-jb-01
+> > - INCLUDE-go path found, including - caves-1623/2017-pw-01/2017-pw-01
+> > - Match in DB (i) for cave 1623-2017-pw-01.
+> > > - MEM:47.051 Reading. parent:kataster/1623 <> caves-1623/2017-pw-01/2017-pw-01
+> > > - Begin found for:2017-pw-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2017-pw-01'
+> > > > - MEM:47.051 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/2017-pw-01
+> > > - INCLUDE-go path found, including - caves-1623/2017-pw-01/entrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+> > > > - MEM:47.055 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/entrance
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'entrance'
+> > > > > - MEM:47.055 Reading. parent:caves-1623/2017-pw-01/entrance <> caves-1623/2017-pw-01/entrance
+> > > > - LEGS: 11 (previous: 4080, now:4091)
+> > > - INCLUDE-return from include - caves-1623/2017-pw-01/entrance
+> > > - INCLUDE-go path found, including - caves-1623/2017-pw-01/gardeningshoots
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+> > > > - MEM:47.129 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/gardeningshoots
+> > > > - Begin found for:gardeningshoots, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gardeningshoots'
+> > > > > - MEM:47.129 Reading. parent:caves-1623/2017-pw-01/gardeningshoots <> caves-1623/2017-pw-01/gardeningshoots
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - LEGS: 17 (previous: 4091, now:4108)
+> > > - INCLUDE-return from include - caves-1623/2017-pw-01/gardeningshoots
+> > > - INCLUDE-go path found, including - caves-1623/2017-pw-01/thirdentrance
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+> > > > - MEM:47.176 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/thirdentrance
+> > > > - Begin found for:thirdentrance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'thirdentrance'
+> > > > > - MEM:47.176 Reading. parent:caves-1623/2017-pw-01/thirdentrance <> caves-1623/2017-pw-01/thirdentrance
+> > > > - LEGS: 9 (previous: 4108, now:4117)
+> > > - INCLUDE-return from include - caves-1623/2017-pw-01/thirdentrance
+> > > - INCLUDE-go path found, including - caves-1623/2017-pw-01/badforecastthree
+> > > - Match in DB (i) for cave 1623-2017-pw-01.
+> > > > - MEM:47.180 Reading. parent:caves-1623/2017-pw-01/2017-pw-01 <> caves-1623/2017-pw-01/badforecastthree
+> > > > - Begin found for:badforecastthree, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'badforecastthree'
+> > > > > - MEM:47.180 Reading. parent:caves-1623/2017-pw-01/badforecastthree <> caves-1623/2017-pw-01/badforecastthree
+> > > > - LEGS: 10 (previous: 4117, now:4127)
+> > > - INCLUDE-return from include - caves-1623/2017-pw-01/badforecastthree
+> > > - LEGS: 47 (previous: 4080, now:4127)
+> > - INCLUDE-return from include - caves-1623/2017-pw-01/2017-pw-01
+> > - INCLUDE-go path found, including - caves-1623/110/110
+> > - Match in DB (i) for cave 1623-110.
+> > > - MEM:47.180 Reading. parent:kataster/1623 <> caves-1623/110/110
+> > > - Begin found for:110, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '110'
+> > > > - MEM:47.180 Reading. parent:caves-1623/110/110 <> caves-1623/110/110
+> > > - INCLUDE-go path found, including - caves-1623/110/notakittensheckschance
+> > > - Match in DB (i) for cave 1623-110.
+> > > > - MEM:47.180 Reading. parent:caves-1623/110/110 <> caves-1623/110/notakittensheckschance
+> > > > - Begin found for:notakittensheckschance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'notakittensheckschance'
+> > > > > - MEM:47.180 Reading. parent:caves-1623/110/notakittensheckschance <> caves-1623/110/notakittensheckschance
+> > > > - LEGS: 19 (previous: 4127, now:4146)
+> > > - INCLUDE-return from include - caves-1623/110/notakittensheckschance
+> > > - LEGS: 19 (previous: 4127, now:4146)
+> > - INCLUDE-return from include - caves-1623/110/110
+> > - INCLUDE-go path found, including - caves-1623/2017-cucc-23/2017-cucc-23
+> > - Match in DB (i) for cave 1623-2017-cucc-23.
+> > > - MEM:47.180 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-23/2017-cucc-23
+> > > - Begin found for:2017_cucc_23, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2017_cucc_23'
+> > > > - MEM:47.180 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/2017-cucc-23
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-23/keinwassermelone
+> > > - Match in DB (i) for cave 1623-2017-cucc-23.
+> > > > - MEM:47.180 Reading. parent:caves-1623/2017-cucc-23/2017-cucc-23 <> caves-1623/2017-cucc-23/keinwassermelone
+> > > > - Begin found for:keinwassermelone, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'keinwassermelone'
+> > > > > - MEM:47.184 Reading. parent:caves-1623/2017-cucc-23/keinwassermelone <> caves-1623/2017-cucc-23/keinwassermelone
+> > > > - LEGS: 18 (previous: 4146, now:4164)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-23/keinwassermelone
+> > > - LEGS: 18 (previous: 4146, now:4164)
+> > - INCLUDE-return from include - caves-1623/2017-cucc-23/2017-cucc-23
+> > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/2017-cucc-24
+> > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > - MEM:47.191 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-24/2017-cucc-24
+> > > - Begin found for:2017_cucc_24, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2017_cucc_24'
+> > > > - MEM:47.191 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/2017-cucc-24
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/dentrance
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > > - MEM:47.199 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentrance
+> > > > - Begin found for:dentrance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'dentrance'
+> > > > > - MEM:47.215 Reading. parent:caves-1623/2017-cucc-24/dentrance <> caves-1623/2017-cucc-24/dentrance
+> > > > - LEGS: 34 (previous: 4164, now:4198)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-24/dentrance
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/dentb
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > > - MEM:47.223 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/dentb
+> > > > - Begin found for:dentb, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'dentb'
+> > > > > - MEM:47.227 Reading. parent:caves-1623/2017-cucc-24/dentb <> caves-1623/2017-cucc-24/dentb
+> > > > - LEGS: 13 (previous: 4198, now:4211)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-24/dentb
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/couldashouldawoulda
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > > - MEM:47.227 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda
+> > > > - Begin found for:couldashouldawoulda, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'couldashouldawoulda'
+> > > > > - MEM:47.234 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda <> caves-1623/2017-cucc-24/couldashouldawoulda
+> > > > - LEGS: 15 (previous: 4211, now:4226)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-24/couldashouldawoulda
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/gsh4
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > > - MEM:47.242 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/gsh4
+> > > > - Begin found for:gsh4, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gsh4'
+> > > > > - MEM:47.246 Reading. parent:caves-1623/2017-cucc-24/gsh4 <> caves-1623/2017-cucc-24/gsh4
+> > > > - LEGS: 9 (previous: 4226, now:4235)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-24/gsh4
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/riftpiece
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > > - MEM:47.250 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/riftpiece
+> > > > - Begin found for:riftpiece, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'riftpiece'
+> > > > > - MEM:47.250 Reading. parent:caves-1623/2017-cucc-24/riftpiece <> caves-1623/2017-cucc-24/riftpiece
+> > > > - LEGS: 13 (previous: 4235, now:4248)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-24/riftpiece
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > - Match in DB (i) for cave 1623-2017-cucc-24.
+> > > > - MEM:47.250 Reading. parent:caves-1623/2017-cucc-24/2017-cucc-24 <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > > - Begin found for:couldashouldawoulda_to_bathdodgersbypass, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'couldashouldawoulda_to_bathdodgersbypass'
+> > > > > - MEM:47.277 Reading. parent:caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass <> caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > > - LEGS: 23 (previous: 4248, now:4271)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+> > > - LEGS: 107 (previous: 4164, now:4271)
+> > - INCLUDE-return from include - caves-1623/2017-cucc-24/2017-cucc-24
+> > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/2017-cucc-28
+> > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > - MEM:47.328 Reading. parent:kataster/1623 <> caves-1623/2017-cucc-28/2017-cucc-28
+> > > - Begin found for:2017_cucc_28, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2017_cucc_28'
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/2017-cucc-28
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/blower
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blower
+> > > > - Begin found for:blower, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'blower'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/blower <> caves-1623/2017-cucc-28/blower
+> > > > - LEGS: 1 (previous: 4271, now:4272)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/blower
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/entranceseries
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/entranceseries
+> > > > - Begin found for:entranceseries, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'entranceseries'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/entranceseries <> caves-1623/2017-cucc-28/entranceseries
+> > > > - LEGS: 6 (previous: 4272, now:4278)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/entranceseries
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/windytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/windytube
+> > > > - Begin found for:windytube, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'windytube'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/windytube <> caves-1623/2017-cucc-28/windytube
+> > > > - LEGS: 8 (previous: 4278, now:4286)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/windytube
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/12monkeys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/12monkeys
+> > > > - Begin found for:12monkeys, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '12monkeys'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/12monkeys <> caves-1623/2017-cucc-28/12monkeys
+> > > > - LEGS: 22 (previous: 4286, now:4308)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/12monkeys
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/fishface1-part1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part1
+> > > > - Begin found for:fishface1-part1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'fishface1-part1'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/fishface1-part1 <> caves-1623/2017-cucc-28/fishface1-part1
+> > > > - LEGS: 13 (previous: 4308, now:4321)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/fishface1-part1
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/fishface1-part2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/fishface1-part2
+> > > > - Begin found for:fishface1-part2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'fishface1-part2'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/fishface1-part2 <> caves-1623/2017-cucc-28/fishface1-part2
+> > > > - LEGS: 5 (previous: 4321, now:4326)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/fishface1-part2
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/icytube
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/icytube
+> > > > - Begin found for:icytube, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'icytube'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/icytube <> caves-1623/2017-cucc-28/icytube
+> > > > - LEGS: 11 (previous: 4326, now:4337)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/icytube
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/canyon
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/canyon
+> > > > - Begin found for:canyon, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'canyon'
+> > > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/canyon <> caves-1623/2017-cucc-28/canyon
+> > > > - LEGS: 18 (previous: 4337, now:4355)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/canyon
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.328 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > > - Begin found for:blitzen_to_liquidluck, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'blitzen_to_liquidluck'
+> > > > > - MEM:47.336 Reading. parent:caves-1623/2017-cucc-28/blitzen_to_liquidluck <> caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > > - LEGS: 35 (previous: 4355, now:4390)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/blitzen_to_liquidluck
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/freeatticflys
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.336 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/freeatticflys
+> > > > - Begin found for:freeattic_flys, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'freeattic_flys'
+> > > > > - MEM:47.336 Reading. parent:caves-1623/2017-cucc-28/freeatticflys <> caves-1623/2017-cucc-28/freeatticflys
+> > > > - LEGS: 22 (previous: 4390, now:4412)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/freeatticflys
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/ulysses_to_toto
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.336 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_toto
+> > > > - Begin found for:ulysses_to_toto, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'ulysses_to_toto'
+> > > > > - MEM:47.336 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_toto <> caves-1623/2017-cucc-28/ulysses_to_toto
+> > > > - LEGS: 27 (previous: 4412, now:4439)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/ulysses_to_toto
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.355 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > > - Begin found for:toto_to_crystalcrumble, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'toto_to_crystalcrumble'
+> > > > > - MEM:47.355 Reading. parent:caves-1623/2017-cucc-28/toto_to_crystalcrumble <> caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > > - LEGS: 14 (previous: 4439, now:4453)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/toto_to_crystalcrumble
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > > - Begin found for:ulysses_to_colericchamber, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'ulysses_to_colericchamber'
+> > > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/ulysses_to_colericchamber <> caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > > - LEGS: 7 (previous: 4453, now:4460)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/ulysses_to_colericchamber
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/rubblerumble
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble
+> > > > - Begin found for:rubblerumble, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'rubblerumble'
+> > > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/rubblerumble <> caves-1623/2017-cucc-28/rubblerumble
+> > > > - LEGS: 12 (previous: 4460, now:4472)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/rubblerumble
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/rubblerumble3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble3
+> > > > - Begin found for:rubblerumble3, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'rubblerumble3'
+> > > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/rubblerumble3 <> caves-1623/2017-cucc-28/rubblerumble3
+> > > > - LEGS: 18 (previous: 4472, now:4490)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/rubblerumble3
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/rubblerumble2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/rubblerumble2
+> > > > - Begin found for:rubblerumble2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'rubblerumble2'
+> > > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/rubblerumble2 <> caves-1623/2017-cucc-28/rubblerumble2
+> > > > - LEGS: 9 (previous: 4490, now:4499)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/rubblerumble2
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/kublakhan
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/kublakhan
+> > > > - Begin found for:kublakhan, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'kublakhan'
+> > > > > - MEM:47.359 Reading. parent:caves-1623/2017-cucc-28/kublakhan <> caves-1623/2017-cucc-28/kublakhan
+> > > > - LEGS: 36 (previous: 4499, now:4535)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/kublakhan
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/miraclemaze1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.367 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze1
+> > > > - Begin found for:miraclemaze1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'miraclemaze1'
+> > > > > - MEM:47.367 Reading. parent:caves-1623/2017-cucc-28/miraclemaze1 <> caves-1623/2017-cucc-28/miraclemaze1
+> > > > - LEGS: 49 (previous: 4535, now:4584)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/miraclemaze1
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/coconutchamber1
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber1
+> > > > - Begin found for:coconutchamber1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'coconutchamber1'
+> > > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/coconutchamber1 <> caves-1623/2017-cucc-28/coconutchamber1
+> > > > - LEGS: 12 (previous: 4584, now:4596)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/coconutchamber1
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/bigbastard
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/bigbastard
+> > > > - Begin found for:bigbastard, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'bigbastard'
+> > > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/bigbastard <> caves-1623/2017-cucc-28/bigbastard
+> > > > - LEGS: 2 (previous: 4596, now:4598)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/bigbastard
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/miraclemaze2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/miraclemaze2
+> > > > - Begin found for:miraclemaze2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'miraclemaze2'
+> > > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/miraclemaze2 <> caves-1623/2017-cucc-28/miraclemaze2
+> > > > - LEGS: 10 (previous: 4598, now:4608)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/miraclemaze2
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/coconutchamber2
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber2
+> > > > - Begin found for:coconutchamber2, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'coconutchamber2'
+> > > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/coconutchamber2 <> caves-1623/2017-cucc-28/coconutchamber2
+> > > > - LEGS: 13 (previous: 4608, now:4621)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/coconutchamber2
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/coconutchamber3
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.375 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/coconutchamber3
+> > > > - Begin found for:coconutchamber3, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'coconutchamber3'
+> > > > > - MEM:47.383 Reading. parent:caves-1623/2017-cucc-28/coconutchamber3 <> caves-1623/2017-cucc-28/coconutchamber3
+> > > > - LEGS: 14 (previous: 4621, now:4635)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/coconutchamber3
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/gardeningschl
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.383 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/gardeningschl
+> > > > - Begin found for:gardeningschool, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gardeningschool'
+> > > > > - MEM:47.387 Reading. parent:caves-1623/2017-cucc-28/gardeningschl <> caves-1623/2017-cucc-28/gardeningschl
+> > > > - LEGS: 13 (previous: 4635, now:4648)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/gardeningschl
+> > > - INCLUDE-go path found, including - caves-1623/2017-cucc-28/pushderig
+> > > - Match in DB (i) for cave 1623-2017-cucc-28.
+> > > > - MEM:47.387 Reading. parent:caves-1623/2017-cucc-28/2017-cucc-28 <> caves-1623/2017-cucc-28/pushderig
+> > > > - Begin found for:pushderig, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pushderig'
+> > > > > - MEM:47.387 Reading. parent:caves-1623/2017-cucc-28/pushderig <> caves-1623/2017-cucc-28/pushderig
+> > > > - LEGS: 36 (previous: 4648, now:4684)
+> > > - INCLUDE-return from include - caves-1623/2017-cucc-28/pushderig
+> > > - LEGS: 413 (previous: 4271, now:4684)
+> > - INCLUDE-return from include - caves-1623/2017-cucc-28/2017-cucc-28
+> > - INCLUDE-go path found, including - caves-1623/2014-ms-14/driveneast
+> > - Match in DB (i) for cave 1623-2014-ms-14.
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/2014-ms-14/driveneast
+> > > - Begin found for:driveneast, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'driveneast'
+> > > > - MEM:47.391 Reading. parent:caves-1623/2014-ms-14/driveneast <> caves-1623/2014-ms-14/driveneast
+> > > - LEGS: 14 (previous: 4684, now:4698)
+> > - INCLUDE-return from include - caves-1623/2014-ms-14/driveneast
+> > - INCLUDE-go path found, including - caves-1623/2018-aa-01/2018-aa-01
+> > - Match in DB (i) for cave 1623-2018-aa-01.
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/2018-aa-01/2018-aa-01
+> > > - Begin found for:2018-aa-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2018-aa-01'
+> > > > - MEM:47.391 Reading. parent:caves-1623/2018-aa-01/2018-aa-01 <> caves-1623/2018-aa-01/2018-aa-01
+> > > - LEGS: 4 (previous: 4698, now:4702)
+> > - INCLUDE-return from include - caves-1623/2018-aa-01/2018-aa-01
+> > - INCLUDE-go path found, including - caves-1623/2018-pf-01/2018-pf-01
+> > - Match in DB (i) for cave 1623-2018-pf-01.
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/2018-pf-01/2018-pf-01
+> > > - Begin found for:2018-pf-01, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2018-pf-01'
+> > > > - MEM:47.391 Reading. parent:caves-1623/2018-pf-01/2018-pf-01 <> caves-1623/2018-pf-01/2018-pf-01
+> > > - LEGS: 5 (previous: 4702, now:4707)
+> > - INCLUDE-return from include - caves-1623/2018-pf-01/2018-pf-01
+> > - INCLUDE-go path found, including - caves-1623/2018-pf-02/2018-pf-02
+> > - Match in DB (i) for cave 1623-2018-pf-02.
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/2018-pf-02/2018-pf-02
+> > > - Begin found for:2018-pf-02, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2018-pf-02'
+> > > > - MEM:47.391 Reading. parent:caves-1623/2018-pf-02/2018-pf-02 <> caves-1623/2018-pf-02/2018-pf-02
+> > > - LEGS: 4 (previous: 4707, now:4711)
+> > - INCLUDE-return from include - caves-1623/2018-pf-02/2018-pf-02
+> > - INCLUDE-go path found, including - caves-1623/82/82
+> > - Match in DB (i) for cave 1623-82.
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/82/82
+> > > - Begin found for:82, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '82'
+> > > > - MEM:47.391 Reading. parent:caves-1623/82/82 <> caves-1623/82/82
+> > > - LEGS: 0 (previous: 4711, now:4711)
+> > - INCLUDE-return from include - caves-1623/82/82
+> > - INCLUDE-go path found, including - caves-1623/2007-neu/2007-neu
+> > - NO Match in DB (i) for a cave for caves-1623/2007-neu/2007-neu
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/2007-neu/2007-neu
+> > > - No match (b) for caves-1623/2007-neu/2007-neu
+> > > - Begin found for:2007-neu, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '2007-neu'
+> > > > - MEM:47.391 Reading. parent:caves-1623/2007-neu/2007-neu <> caves-1623/2007-neu/2007-neu
+> > > - LEGS: 1 (previous: 4711, now:4712)
+> > - INCLUDE-return from include - caves-1623/2007-neu/2007-neu
+> > - INCLUDE-go path found, including - caves-1623/gassischacht/gassischacht
+> > - NO Match in DB (i) for a cave for caves-1623/gassischacht/gassischacht
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/gassischacht/gassischacht
+> > > - No match (b) for caves-1623/gassischacht/gassischacht
+> > > - Begin found for:gassischacht, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'gassischacht'
+> > > > - MEM:47.391 Reading. parent:caves-1623/gassischacht/gassischacht <> caves-1623/gassischacht/gassischacht
+> > > - LEGS: 15 (previous: 4712, now:4727)
+> > - INCLUDE-return from include - caves-1623/gassischacht/gassischacht
+> > - INCLUDE-go path found, including - caves-1623/BS17/BS17
+> > - NO Match in DB (i) for a cave for caves-1623/BS17/BS17
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/BS17/BS17
+> > > - No match (b) for caves-1623/BS17/organ
+> > > - Begin found for:organ, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'organ'
+> > > > - MEM:47.391 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/BS17
+> > > - INCLUDE-go path found, including - caves-1623/BS17/organfake
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organfake
+> > > > - MEM:47.391 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organfake
+> > > > - No match (b) for caves-1623/BS17/fake
+> > > > - Begin found for:fake, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'fake'
+> > > > > - MEM:47.391 Reading. parent:caves-1623/BS17/organfake <> caves-1623/BS17/organfake
+> > > > - LEGS: 0 (previous: 4727, now:4727)
+> > > - INCLUDE-return from include - caves-1623/BS17/organfake
+> > > - INCLUDE-go path found, including - caves-1623/BS17/organ_entrance
+> > > - NO Match in DB (i) for a cave for caves-1623/BS17/organ_entrance
+> > > > - MEM:47.391 Reading. parent:caves-1623/BS17/BS17 <> caves-1623/BS17/organ_entrance
+> > > > - No match (b) for caves-1623/BS17/entrance
+> > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'entrance'
+> > > > > - MEM:47.391 Reading. parent:caves-1623/BS17/organ_entrance <> caves-1623/BS17/organ_entrance
+> > > > - LEGS: 34 (previous: 4727, now:4761)
+> > > - INCLUDE-return from include - caves-1623/BS17/organ_entrance
+> > > - LEGS: 34 (previous: 4727, now:4761)
+> > - INCLUDE-return from include - caves-1623/BS17/BS17
+> > - INCLUDE-go path found, including - caves-1623/haldenloch/haldenloch
+> > - NO Match in DB (i) for a cave for caves-1623/haldenloch/haldenloch
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/haldenloch
+> > > - Begin found for:haldenloch, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'haldenloch'
+> > > > - MEM:47.391 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > - No match (b) for caves-1623/haldenloch/eingang
+> > > - Begin found for:eingang, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'eingang'
+> > > > - MEM:47.391 Reading. parent:caves-1623/haldenloch/haldenloch <> caves-1623/haldenloch/haldenloch
+> > > - LEGS: 7 (previous: 4761, now:4768)
+> > - INCLUDE-return from include - caves-1623/haldenloch/haldenloch
+> > - INCLUDE-go path found, including - caves-1623/gruenstein/gruenstein
+> > - NO Match in DB (i) for a cave for caves-1623/gruenstein/gruenstein
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/gruenstein/gruenstein
+> > > - No match (b) for caves-1623/gruenstein/gruenstein
+> > > - Begin found for:gruenstein, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'gruenstein'
+> > > > - MEM:47.391 Reading. parent:caves-1623/gruenstein/gruenstein <> caves-1623/gruenstein/gruenstein
+> > > - LEGS: 37 (previous: 4768, now:4805)
+> > - INCLUDE-return from include - caves-1623/gruenstein/gruenstein
+> - INCLUDE-return from include - caves-1623/caves
+> - INCLUDE-go path found, including - caves-1623/caves-smk
+> - NO Match in DB (i) for a cave for caves-1623/caves-smk
+> > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/caves-smk
+> > - INCLUDE-go path found, including - caves-1623/links-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > - MEM:47.391 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > - INCLUDE-go path found, including - caves-1623/links41-142
+> > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > > - INCLUDE-return from include - caves-1623/links41-142
+> > - INCLUDE-return from include - caves-1623/links-smk-south
+> > - INCLUDE-go path found, including - caves-1623/links-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > - INCLUDE-go path found, including - caves-1623/links204-258
+> > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > - INCLUDE-return from include - caves-1623/links204-258
+> > > - INCLUDE-go path found, including - caves-1623/links161-204
+> > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > > - INCLUDE-return from include - caves-1623/links161-204
+> > - INCLUDE-return from include - caves-1623/links-smk-north
+> > - INCLUDE-go path found, including - caves-1623/caves-smk-south
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-south
+> > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/caves-smk-south
+> > > - INCLUDE-go path found, including - caves-1623/links-smk-south
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-south
+> > > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/links-smk-south
+> > > > - INCLUDE-go path found, including - caves-1623/links41-142
+> > > > - NO Match in DB (i) for a cave for caves-1623/links41-142
+> > > > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/links41-142
+> > > > - INCLUDE-return from include - caves-1623/links41-142
+> > > - INCLUDE-return from include - caves-1623/links-smk-south
+> > > - INCLUDE-go path found, including - caves-1623/32/32
+> > > - Match in DB (i) for cave 1623-32.
+> > > > - MEM:47.402 Reading. parent:kataster/1623 <> caves-1623/32/32
+> > > > - Begin found for:32, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '32'
+> > > > > - MEM:47.402 Reading. parent:caves-1623/32/32 <> caves-1623/32/32
+> > > > - INCLUDE-go path found, including - caves-1623/32/main
+> > > > - Match in DB (i) for cave 1623-32.
+> > > > > - MEM:47.402 Reading. parent:caves-1623/32/32 <> caves-1623/32/main
+> > > > > - Begin found for:main, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'main'
+> > > > > > - MEM:47.402 Reading. parent:caves-1623/32/main <> caves-1623/32/main
+> > > > > - LEGS: 62 (previous: 4805, now:4867)
+> > > > - INCLUDE-return from include - caves-1623/32/main
+> > > > - INCLUDE-go path found, including - caves-1623/32/links
+> > > > - Match in DB (i) for cave 1623-32.
+> > > > > - MEM:47.402 Reading. parent:caves-1623/32/32 <> caves-1623/32/links
+> > > > > - Begin found for:links, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'links'
+> > > > > > - MEM:47.406 Reading. parent:caves-1623/32/links <> caves-1623/32/links
+> > > > > - LEGS: 109 (previous: 4867, now:4976)
+> > > > - INCLUDE-return from include - caves-1623/32/links
+> > > > - INCLUDE-go path found, including - caves-1623/32/verteilerhalle
+> > > > - Match in DB (i) for cave 1623-32.
+> > > > > - MEM:47.418 Reading. parent:caves-1623/32/32 <> caves-1623/32/verteilerhalle
+> > > > > - Begin found for:verteilerhalle, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'verteilerhalle'
+> > > > > > - MEM:47.418 Reading. parent:caves-1623/32/verteilerhalle <> caves-1623/32/verteilerhalle
+> > > > > - LEGS: 47 (previous: 4976, now:5023)
+> > > > - INCLUDE-return from include - caves-1623/32/verteilerhalle
+> > > > - INCLUDE-go path found, including - caves-1623/32/forever
+> > > > - Match in DB (i) for cave 1623-32.
+> > > > > - MEM:47.418 Reading. parent:caves-1623/32/32 <> caves-1623/32/forever
+> > > > > - Begin found for:forever, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'forever'
+> > > > > > - MEM:47.418 Reading. parent:caves-1623/32/forever <> caves-1623/32/forever
+> > > > > - LEGS: 64 (previous: 5023, now:5087)
+> > > > - INCLUDE-return from include - caves-1623/32/forever
+> > > > - LEGS: 282 (previous: 4805, now:5087)
+> > > - INCLUDE-return from include - caves-1623/32/32
+> > > - INCLUDE-go path found, including - caves-1623/40/40
+> > > - Match in DB (i) for cave 1623-40.
+> > > > - MEM:47.465 Reading. parent:kataster/1623 <> caves-1623/40/40
+> > > > - Begin found for:40, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '40'
+> > > > > - MEM:47.477 Reading. parent:caves-1623/40/40 <> caves-1623/40/40
+> > > > - INCLUDE-go path found, including - caves-1623/40/40alt
+> > > > - Match in DB (i) for cave 1623-40.
+> > > > > - MEM:47.496 Reading. parent:caves-1623/40/40 <> caves-1623/40/40alt
+> > > > > - INCLUDE-go path found, including - caves-1623/40/old/EisSVH
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.523 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/EisSVH
+> > > > > > - Begin found for:eissvh, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'eissvh'
+> > > > > > > - MEM:47.555 Reading. parent:caves-1623/40/old/EisSVH <> caves-1623/40/old/EisSVH
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 81 (previous: 5087, now:5168)
+> > > > > - INCLUDE-return from include - caves-1623/40/old/EisSVH
+> > > > > - INCLUDE-go path found, including - caves-1623/40/old/spinne
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.559 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/spinne
+> > > > > > - Begin found for:spinne, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'spinne'
+> > > > > > > - MEM:47.578 Reading. parent:caves-1623/40/old/spinne <> caves-1623/40/old/spinne
+> > > > > > - LEGS: 38 (previous: 5168, now:5206)
+> > > > > - INCLUDE-return from include - caves-1623/40/old/spinne
+> > > > > - INCLUDE-go path found, including - caves-1623/40/old/eismain
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.578 Reading. parent:caves-1623/40/40 <> caves-1623/40/old/eismain
+> > > > > > - Begin found for:eishohle, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'eishohle'
+> > > > > > > - MEM:47.578 Reading. parent:caves-1623/40/old/eismain <> caves-1623/40/old/eismain
+> > > > > > - LEGS: 47 (previous: 5206, now:5253)
+> > > > > - INCLUDE-return from include - caves-1623/40/old/eismain
+> > > > - INCLUDE-return from include - caves-1623/40/40alt
+> > > > - INCLUDE-go path found, including - caves-1623/40/40arge
+> > > > - Match in DB (i) for cave 1623-40.
+> > > > > - MEM:47.578 Reading. parent:caves-1623/40/40 <> caves-1623/40/40arge
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/elefantengang
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.578 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/elefantengang
+> > > > > > - Begin found for:elefantengang, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'elefantengang'
+> > > > > > > - MEM:47.590 Reading. parent:caves-1623/40/arge/elefantengang <> caves-1623/40/arge/elefantengang
+> > > > > > - LEGS: 8 (previous: 5253, now:5261)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/elefantengang
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/gruenerEingang
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.590 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gruenerEingang
+> > > > > > - Begin found for:gruenereingang, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gruenereingang'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/gruenerEingang <> caves-1623/40/arge/gruenerEingang
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 19 (previous: 5261, now:5280)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/gruenerEingang
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/expressfinish
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/expressfinish
+> > > > > > - Begin found for:expressfinish, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'expressfinish'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/expressfinish <> caves-1623/40/arge/expressfinish
+> > > > > > - LEGS: 15 (previous: 5280, now:5295)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/expressfinish
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/koenigsschacht
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/koenigsschacht
+> > > > > > - Begin found for:koenigsschacht, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'koenigsschacht'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/koenigsschacht <> caves-1623/40/arge/koenigsschacht
+> > > > > > - LEGS: 7 (previous: 5295, now:5302)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/koenigsschacht
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/schotterland
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/schotterland
+> > > > > > - Begin found for:schotterland, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'schotterland'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+> > > > > > - Begin found for:bits, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bits'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/schotterland <> caves-1623/40/arge/schotterland
+> > > > > > - LEGS: 5 (previous: 5317, now:5322)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/schotterland
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/niete
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/niete
+> > > > > > - Begin found for:niete, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'niete'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/niete <> caves-1623/40/arge/niete
+> > > > > > - LEGS: 8 (previous: 5322, now:5330)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/niete
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/tiefergang
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/tiefergang
+> > > > > > - Begin found for:tiefergang, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'tiefergang'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/tiefergang <> caves-1623/40/arge/tiefergang
+> > > > > > - LEGS: 13 (previous: 5330, now:5343)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/tiefergang
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/hanspfandlhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/hanspfandlhalle
+> > > > > > - Begin found for:hanspfandlhalle, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hanspfandlhalle'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/hanspfandlhalle <> caves-1623/40/arge/hanspfandlhalle
+> > > > > > - LEGS: 8 (previous: 5343, now:5351)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/hanspfandlhalle
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/wahnsinnsschaechte
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnsschaechte
+> > > > > > - Begin found for:wahnsinnsschaechte, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wahnsinnsschaechte'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/wahnsinnsschaechte <> caves-1623/40/arge/wahnsinnsschaechte
+> > > > > > - LEGS: 41 (previous: 5351, now:5392)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/wahnsinnsschaechte
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/wahnsinnscanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wahnsinnscanyon
+> > > > > > - Begin found for:wahnsinnscanyon, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wahnsinnscanyon'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/wahnsinnscanyon <> caves-1623/40/arge/wahnsinnscanyon
+> > > > > > - LEGS: 13 (previous: 5392, now:5405)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/wahnsinnscanyon
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/thalhammerhalle
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/thalhammerhalle
+> > > > > > - Begin found for:thalhammerhalle, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thalhammerhalle'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/thalhammerhalle <> caves-1623/40/arge/thalhammerhalle
+> > > > > > - LEGS: 22 (previous: 5405, now:5427)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/thalhammerhalle
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/flusstunnel
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/flusstunnel
+> > > > > > - Begin found for:flusstunnel, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'flusstunnel'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/flusstunnel <> caves-1623/40/arge/flusstunnel
+> > > > > > - LEGS: 150 (previous: 5427, now:5577)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/flusstunnel
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/gluehwuermchen
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/gluehwuermchen
+> > > > > > - Begin found for:gluehwuermchen, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gluehwuermchen'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/gluehwuermchen <> caves-1623/40/arge/gluehwuermchen
+> > > > > > - LEGS: 19 (previous: 5577, now:5596)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/gluehwuermchen
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/wanderer
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/wanderer
+> > > > > > - Begin found for:wanderer, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wanderer'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/wanderer <> caves-1623/40/arge/wanderer
+> > > > > > - LEGS: 53 (previous: 5596, now:5649)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/wanderer
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/silbercanyon
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.602 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/silbercanyon
+> > > > > > - Begin found for:silbercanyon, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'silbercanyon'
+> > > > > > > - MEM:47.602 Reading. parent:caves-1623/40/arge/silbercanyon <> caves-1623/40/arge/silbercanyon
+> > > > > > - LEGS: 58 (previous: 5649, now:5707)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/silbercanyon
+> > > > > - INCLUDE-go path found, including - caves-1623/40/arge/franzosenbiwak
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.605 Reading. parent:caves-1623/40/40 <> caves-1623/40/arge/franzosenbiwak
+> > > > > > - Begin found for:franzosenbiwak, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'franzosenbiwak'
+> > > > > > > - MEM:47.605 Reading. parent:caves-1623/40/arge/franzosenbiwak <> caves-1623/40/arge/franzosenbiwak
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 27 (previous: 5707, now:5734)
+> > > > > - INCLUDE-return from include - caves-1623/40/arge/franzosenbiwak
+> > > > - INCLUDE-return from include - caves-1623/40/40arge
+> > > > - INCLUDE-go path found, including - caves-1623/40/40cucc
+> > > > - Match in DB (i) for cave 1623-40.
+> > > > > - MEM:47.605 Reading. parent:caves-1623/40/40 <> caves-1623/40/40cucc
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/plastic
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.605 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/plastic
+> > > > > > - Begin found for:plastic, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'plastic'
+> > > > > > > - MEM:47.605 Reading. parent:caves-1623/40/cucc/plastic <> caves-1623/40/cucc/plastic
+> > > > > > ! BAD *REF command '"1996-1999 Not-KH survey book p59"' in 'caves-1623/40/cucc/plastic'
+> > > > > > - LEGS: 21 (previous: 5734, now:5755)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/plastic
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/pov/pov
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.613 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/pov
+> > > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/pov/deviant
+> > > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > > - MEM:47.625 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/deviant
+> > > > > > > - Begin found for:deviant, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'deviant'
+> > > > > > > > - MEM:47.645 Reading. parent:caves-1623/40/cucc/pov/deviant <> caves-1623/40/cucc/pov/deviant
+> > > > > > > ! BAD *REF command '"1996-1999 Not-KH survey book pp 92-95"' in 'caves-1623/40/cucc/pov/deviant'
+> > > > > > > - LEGS: 17 (previous: 5755, now:5772)
+> > > > > > - INCLUDE-return from include - caves-1623/40/cucc/pov/deviant
+> > > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/pov/uuaway
+> > > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > > - MEM:47.645 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/uuaway
+> > > > > > > - Begin found for:uuaway, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'uuaway'
+> > > > > > > > - MEM:47.645 Reading. parent:caves-1623/40/cucc/pov/uuaway <> caves-1623/40/cucc/pov/uuaway
+> > > > > > > ! BAD *REF command '"1996-1999 Not-KH survey book pp 96-97"' in 'caves-1623/40/cucc/pov/uuaway'
+> > > > > > > - LEGS: 15 (previous: 5772, now:5787)
+> > > > > > - INCLUDE-return from include - caves-1623/40/cucc/pov/uuaway
+> > > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/pov/dangle
+> > > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > > - MEM:47.645 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/dangle
+> > > > > > > - Begin found for:dangle, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'dangle'
+> > > > > > > > - MEM:47.645 Reading. parent:caves-1623/40/cucc/pov/dangle <> caves-1623/40/cucc/pov/dangle
+> > > > > > > ! BAD *REF command '"1996-1999 Not-KH survey book pp 98-100"' in 'caves-1623/40/cucc/pov/dangle'
+> > > > > > > - LEGS: 19 (previous: 5787, now:5806)
+> > > > > > - INCLUDE-return from include - caves-1623/40/cucc/pov/dangle
+> > > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/pov/eiscream
+> > > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > > - MEM:47.645 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/pov/eiscream
+> > > > > > > - Begin found for:eiscream, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'eiscream'
+> > > > > > > > - MEM:47.648 Reading. parent:caves-1623/40/cucc/pov/eiscream <> caves-1623/40/cucc/pov/eiscream
+> > > > > > > ! BAD *REF command '"1996-1999 Not-KH survey book pp 101-103"' in 'caves-1623/40/cucc/pov/eiscream'
+> > > > > > > - LEGS: 23 (previous: 5806, now:5829)
+> > > > > > - INCLUDE-return from include - caves-1623/40/cucc/pov/eiscream
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/pov/pov
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/oldway
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.652 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldway
+> > > > > > - Begin found for:oldway, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oldway'
+> > > > > > > - MEM:47.652 Reading. parent:caves-1623/40/cucc/oldway <> caves-1623/40/cucc/oldway
+> > > > > > ! BAD *REF command '"1999 Not-KH survey book pp ?"' in 'caves-1623/40/cucc/oldway'
+> > > > > > - LEGS: 3 (previous: 5829, now:5832)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/oldway
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/mission
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.652 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission
+> > > > > > - Begin found for:mission, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mission'
+> > > > > > > - MEM:47.652 Reading. parent:caves-1623/40/cucc/mission <> caves-1623/40/cucc/mission
+> > > > > > - LEGS: 9 (previous: 5832, now:5841)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/mission
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/mission5
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.652 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/mission5
+> > > > > > - Begin found for:mission5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mission5'
+> > > > > > > - MEM:47.660 Reading. parent:caves-1623/40/cucc/mission5 <> caves-1623/40/cucc/mission5
+> > > > > > - LEGS: 5 (previous: 5841, now:5846)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/mission5
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/nmanip
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.660 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/nmanip
+> > > > > > - Begin found for:nmanip, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'nmanip'
+> > > > > > > - MEM:47.660 Reading. parent:caves-1623/40/cucc/nmanip <> caves-1623/40/cucc/nmanip
+> > > > > > - LEGS: 26 (previous: 5846, now:5872)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/nmanip
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/40h
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.660 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/40h
+> > > > > > - Begin found for:40h, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '40h'
+> > > > > > > - MEM:47.668 Reading. parent:caves-1623/40/cucc/40h <> caves-1623/40/cucc/40h
+> > > > > > - LEGS: 5 (previous: 5872, now:5877)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/40h
+> > > > > - INCLUDE-go path found, including - caves-1623/40/cucc/oldnew
+> > > > > - Match in DB (i) for cave 1623-40.
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/40/40 <> caves-1623/40/cucc/oldnew
+> > > > > > - Begin found for:oldnew, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oldnew'
+> > > > > > > - MEM:47.668 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+> > > > > > - Begin found for:bodge, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bodge'
+> > > > > > > - MEM:47.668 Reading. parent:caves-1623/40/cucc/oldnew <> caves-1623/40/cucc/oldnew
+> > > > > > - LEGS: 1 (previous: 5882, now:5883)
+> > > > > - INCLUDE-return from include - caves-1623/40/cucc/oldnew
+> > > > - INCLUDE-return from include - caves-1623/40/40cucc
+> > > > - LEGS: 796 (previous: 5087, now:5883)
+> > > - INCLUDE-return from include - caves-1623/40/40
+> > > - INCLUDE-go path found, including - caves-1623/41/41
+> > > - Match in DB (i) for cave 1623-41.
+> > > > - MEM:47.668 Reading. parent:kataster/1623 <> caves-1623/41/41
+> > > > - Begin found for:41, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '41'
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/41
+> > > > - INCLUDE-go path found, including - caves-1623/41/seiteng
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/seiteng
+> > > > > - Begin found for:seiteng, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'seiteng'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/seiteng <> caves-1623/41/seiteng
+> > > > > - LEGS: 23 (previous: 5883, now:5906)
+> > > > - INCLUDE-return from include - caves-1623/41/seiteng
+> > > > - INCLUDE-go path found, including - caves-1623/41/bonsai
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/bonsai
+> > > > > - Begin found for:bonsai, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bonsai'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/bonsai <> caves-1623/41/bonsai
+> > > > > - LEGS: 22 (previous: 5906, now:5928)
+> > > > - INCLUDE-return from include - caves-1623/41/bonsai
+> > > > - INCLUDE-go path found, including - caves-1623/41/verhall
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/verhall
+> > > > > - Begin found for:verhall, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'verhall'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/verhall <> caves-1623/41/verhall
+> > > > > - LEGS: 38 (previous: 5928, now:5966)
+> > > > - INCLUDE-return from include - caves-1623/41/verhall
+> > > > - INCLUDE-go path found, including - caves-1623/41/blakwite
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/blakwite
+> > > > > - Begin found for:blakwite, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'blakwite'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/blakwite <> caves-1623/41/blakwite
+> > > > > - LEGS: 54 (previous: 5966, now:6020)
+> > > > - INCLUDE-return from include - caves-1623/41/blakwite
+> > > > - INCLUDE-go path found, including - caves-1623/41/stream
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/stream
+> > > > > - Begin found for:stream, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'stream'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/stream <> caves-1623/41/stream
+> > > > > - LEGS: 18 (previous: 6020, now:6038)
+> > > > - INCLUDE-return from include - caves-1623/41/stream
+> > > > - INCLUDE-go path found, including - caves-1623/41/bigchamber
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/bigchamber
+> > > > > - Begin found for:bigchamber, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bigchamber'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/bigchamber <> caves-1623/41/bigchamber
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 60 (previous: 6038, now:6098)
+> > > > - INCLUDE-return from include - caves-1623/41/bigchamber
+> > > > - INCLUDE-go path found, including - caves-1623/41/abstieg
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/abstieg
+> > > > > - Begin found for:abstieg, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'abstieg'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/abstieg <> caves-1623/41/abstieg
+> > > > > - LEGS: 15 (previous: 6098, now:6113)
+> > > > - INCLUDE-return from include - caves-1623/41/abstieg
+> > > > - INCLUDE-go path found, including - caves-1623/41/runway
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/runway
+> > > > > - Begin found for:runway, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'runway'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/runway <> caves-1623/41/runway
+> > > > > - LEGS: 33 (previous: 6113, now:6146)
+> > > > - INCLUDE-return from include - caves-1623/41/runway
+> > > > - INCLUDE-go path found, including - caves-1623/41/treppe
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/treppe
+> > > > > - Begin found for:treppe, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'treppe'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/treppe <> caves-1623/41/treppe
+> > > > > - LEGS: 9 (previous: 6146, now:6155)
+> > > > - INCLUDE-return from include - caves-1623/41/treppe
+> > > > - INCLUDE-go path found, including - caves-1623/41/platte
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/platte
+> > > > > - Begin found for:platte, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'platte'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/platte <> caves-1623/41/platte
+> > > > > - LEGS: 43 (previous: 6155, now:6198)
+> > > > - INCLUDE-return from include - caves-1623/41/platte
+> > > > - INCLUDE-go path found, including - caves-1623/41/e41
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/e41
+> > > > > - Begin found for:e41, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'e41'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+> > > > > - INCLUDE-go path found, including - caves-1623/41/germanrt
+> > > > > - Match in DB (i) for cave 1623-41.
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/e41 <> caves-1623/41/germanrt
+> > > > > > - Begin found for:germanrt, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'germanrt'
+> > > > > > > - MEM:47.668 Reading. parent:caves-1623/41/germanrt <> caves-1623/41/germanrt
+> > > > > > - LEGS: 8 (previous: 6227, now:6235)
+> > > > > - INCLUDE-return from include - caves-1623/41/germanrt
+> > > > > - Begin found for:bloop, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bloop'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/e41 <> caves-1623/41/e41
+> > > > > - LEGS: 10 (previous: 6235, now:6245)
+> > > > - INCLUDE-return from include - caves-1623/41/e41
+> > > > - INCLUDE-go path found, including - caves-1623/41/steinsch
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/steinsch
+> > > > > - Begin found for:steinsch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'steinsch'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/steinsch <> caves-1623/41/steinsch
+> > > > > - LEGS: 18 (previous: 6245, now:6263)
+> > > > - INCLUDE-return from include - caves-1623/41/steinsch
+> > > > - INCLUDE-go path found, including - caves-1623/41/din
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/din
+> > > > > - Begin found for:din, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'din'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/din <> caves-1623/41/din
+> > > > > - LEGS: 14 (previous: 6263, now:6277)
+> > > > - INCLUDE-return from include - caves-1623/41/din
+> > > > - INCLUDE-go path found, including - caves-1623/41/extblatt
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/extblatt
+> > > > > - Begin found for:extblatt, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'extblatt'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/extblatt <> caves-1623/41/extblatt
+> > > > > - LEGS: 29 (previous: 6277, now:6306)
+> > > > - INCLUDE-return from include - caves-1623/41/extblatt
+> > > > - INCLUDE-go path found, including - caves-1623/41/extradin
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/extradin
+> > > > > - Begin found for:extradin, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'extradin'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/extradin <> caves-1623/41/extradin
+> > > > > - LEGS: 10 (previous: 6306, now:6316)
+> > > > - INCLUDE-return from include - caves-1623/41/extradin
+> > > > - INCLUDE-go path found, including - caves-1623/41/edelmean
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/edelmean
+> > > > > - Begin found for:edelmean, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'edelmean'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/edelmean <> caves-1623/41/edelmean
+> > > > > - LEGS: 11 (previous: 6316, now:6327)
+> > > > - INCLUDE-return from include - caves-1623/41/edelmean
+> > > > - INCLUDE-go path found, including - caves-1623/41/rondos
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/rondos
+> > > > > - Begin found for:rondos, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rondos'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/rondos <> caves-1623/41/rondos
+> > > > > - LEGS: 54 (previous: 6327, now:6381)
+> > > > - INCLUDE-return from include - caves-1623/41/rondos
+> > > > - INCLUDE-go path found, including - caves-1623/41/german
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/german
+> > > > > - Begin found for:german, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'german'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/german <> caves-1623/41/german
+> > > > > - LEGS: 39 (previous: 6381, now:6420)
+> > > > - INCLUDE-return from include - caves-1623/41/german
+> > > > - INCLUDE-go path found, including - caves-1623/41/mond
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/mond
+> > > > > - Begin found for:mond, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'mond'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/mond <> caves-1623/41/mond
+> > > > > - LEGS: 47 (previous: 6420, now:6467)
+> > > > - INCLUDE-return from include - caves-1623/41/mond
+> > > > - INCLUDE-go path found, including - caves-1623/41/oktar
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/oktar
+> > > > > - Begin found for:oktar, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'oktar'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/oktar <> caves-1623/41/oktar
+> > > > > - LEGS: 28 (previous: 6467, now:6495)
+> > > > - INCLUDE-return from include - caves-1623/41/oktar
+> > > > - INCLUDE-go path found, including - caves-1623/41/megalo
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/megalo
+> > > > > - Begin found for:megalo, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'megalo'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/megalo <> caves-1623/41/megalo
+> > > > > - LEGS: 23 (previous: 6495, now:6518)
+> > > > - INCLUDE-return from include - caves-1623/41/megalo
+> > > > - INCLUDE-go path found, including - caves-1623/41/wdr
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/wdr
+> > > > > - Begin found for:wdr, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'wdr'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/wdr <> caves-1623/41/wdr
+> > > > > - LEGS: 14 (previous: 6518, now:6532)
+> > > > - INCLUDE-return from include - caves-1623/41/wdr
+> > > > - INCLUDE-go path found, including - caves-1623/41/lampntot
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/lampntot
+> > > > > - Begin found for:lampntot, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lampntot'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/lampntot <> caves-1623/41/lampntot
+> > > > > - LEGS: 15 (previous: 6532, now:6547)
+> > > > - INCLUDE-return from include - caves-1623/41/lampntot
+> > > > - INCLUDE-go path found, including - caves-1623/41/manhattn
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.668 Reading. parent:caves-1623/41/41 <> caves-1623/41/manhattn
+> > > > > - Begin found for:manhattn, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'manhattn'
+> > > > > > - MEM:47.668 Reading. parent:caves-1623/41/manhattn <> caves-1623/41/manhattn
+> > > > > - LEGS: 41 (previous: 6547, now:6588)
+> > > > - INCLUDE-return from include - caves-1623/41/manhattn
+> > > > - INCLUDE-go path found, including - caves-1623/41/entlueft
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.672 Reading. parent:caves-1623/41/41 <> caves-1623/41/entlueft
+> > > > > - Begin found for:entlueft, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'entlueft'
+> > > > > > - MEM:47.672 Reading. parent:caves-1623/41/entlueft <> caves-1623/41/entlueft
+> > > > > - LEGS: 55 (previous: 6588, now:6643)
+> > > > - INCLUDE-return from include - caves-1623/41/entlueft
+> > > > - INCLUDE-go path found, including - caves-1623/41/glueck
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.676 Reading. parent:caves-1623/41/41 <> caves-1623/41/glueck
+> > > > > - Begin found for:glueck, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'glueck'
+> > > > > > - MEM:47.676 Reading. parent:caves-1623/41/glueck <> caves-1623/41/glueck
+> > > > > - LEGS: 77 (previous: 6643, now:6720)
+> > > > - INCLUDE-return from include - caves-1623/41/glueck
+> > > > - INCLUDE-go path found, including - caves-1623/41/bus
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.684 Reading. parent:caves-1623/41/41 <> caves-1623/41/bus
+> > > > > - Begin found for:bus, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bus'
+> > > > > > - MEM:47.684 Reading. parent:caves-1623/41/bus <> caves-1623/41/bus
+> > > > > - LEGS: 49 (previous: 6720, now:6769)
+> > > > - INCLUDE-return from include - caves-1623/41/bus
+> > > > - INCLUDE-go path found, including - caves-1623/41/morphan
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.688 Reading. parent:caves-1623/41/41 <> caves-1623/41/morphan
+> > > > > - Begin found for:morphan, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'morphan'
+> > > > > > - MEM:47.688 Reading. parent:caves-1623/41/morphan <> caves-1623/41/morphan
+> > > > > - LEGS: 59 (previous: 6769, now:6828)
+> > > > - INCLUDE-return from include - caves-1623/41/morphan
+> > > > - INCLUDE-go path found, including - caves-1623/41/basic
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.688 Reading. parent:caves-1623/41/41 <> caves-1623/41/basic
+> > > > > - Begin found for:basic, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'basic'
+> > > > > > - MEM:47.688 Reading. parent:caves-1623/41/basic <> caves-1623/41/basic
+> > > > > - LEGS: 14 (previous: 6828, now:6842)
+> > > > - INCLUDE-return from include - caves-1623/41/basic
+> > > > - INCLUDE-go path found, including - caves-1623/41/tincan
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.688 Reading. parent:caves-1623/41/41 <> caves-1623/41/tincan
+> > > > > - Begin found for:tincan, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'tincan'
+> > > > > > - MEM:47.688 Reading. parent:caves-1623/41/tincan <> caves-1623/41/tincan
+> > > > > - LEGS: 22 (previous: 6842, now:6864)
+> > > > - INCLUDE-return from include - caves-1623/41/tincan
+> > > > - INCLUDE-go path found, including - caves-1623/41/jade
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.688 Reading. parent:caves-1623/41/41 <> caves-1623/41/jade
+> > > > > - Begin found for:jade, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'jade'
+> > > > > > - MEM:47.688 Reading. parent:caves-1623/41/jade <> caves-1623/41/jade
+> > > > > - LEGS: 15 (previous: 6864, now:6879)
+> > > > - INCLUDE-return from include - caves-1623/41/jade
+> > > > - INCLUDE-go path found, including - caves-1623/41/doplbodn
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.688 Reading. parent:caves-1623/41/41 <> caves-1623/41/doplbodn
+> > > > > - Begin found for:doplbodn, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'doplbodn'
+> > > > > > - MEM:47.688 Reading. parent:caves-1623/41/doplbodn <> caves-1623/41/doplbodn
+> > > > > - LEGS: 33 (previous: 6879, now:6912)
+> > > > - INCLUDE-return from include - caves-1623/41/doplbodn
+> > > > - INCLUDE-go path found, including - caves-1623/41/alice
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.691 Reading. parent:caves-1623/41/41 <> caves-1623/41/alice
+> > > > > - Begin found for:alice, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'alice'
+> > > > > > - MEM:47.695 Reading. parent:caves-1623/41/alice <> caves-1623/41/alice
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 62 (previous: 6912, now:6974)
+> > > > - INCLUDE-return from include - caves-1623/41/alice
+> > > > - INCLUDE-go path found, including - caves-1623/41/wetnwild
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.703 Reading. parent:caves-1623/41/41 <> caves-1623/41/wetnwild
+> > > > > - Begin found for:wetnwild, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'wetnwild'
+> > > > > > - MEM:47.703 Reading. parent:caves-1623/41/wetnwild <> caves-1623/41/wetnwild
+> > > > > - LEGS: 75 (previous: 6974, now:7049)
+> > > > - INCLUDE-return from include - caves-1623/41/wetnwild
+> > > > - INCLUDE-go path found, including - caves-1623/41/diaet
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.703 Reading. parent:caves-1623/41/41 <> caves-1623/41/diaet
+> > > > > - Begin found for:diaet, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'diaet'
+> > > > > > - MEM:47.707 Reading. parent:caves-1623/41/diaet <> caves-1623/41/diaet
+> > > > > - LEGS: 104 (previous: 7049, now:7153)
+> > > > - INCLUDE-return from include - caves-1623/41/diaet
+> > > > - INCLUDE-go path found, including - caves-1623/41/roehre
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/41/41 <> caves-1623/41/roehre
+> > > > > - Begin found for:roehre, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'roehre'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/41/roehre <> caves-1623/41/roehre
+> > > > > - LEGS: 79 (previous: 7153, now:7232)
+> > > > - INCLUDE-return from include - caves-1623/41/roehre
+> > > > - INCLUDE-go path found, including - caves-1623/41/rampe
+> > > > - Match in DB (i) for cave 1623-41.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/41/41 <> caves-1623/41/rampe
+> > > > > - Begin found for:rampe, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rampe'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/41/rampe <> caves-1623/41/rampe
+> > > > > - LEGS: 37 (previous: 7232, now:7269)
+> > > > - INCLUDE-return from include - caves-1623/41/rampe
+> > > > - LEGS: 1386 (previous: 5883, now:7269)
+> > > - INCLUDE-return from include - caves-1623/41/41
+> > > - INCLUDE-go path found, including - caves-1623/78/78
+> > > - Match in DB (i) for cave 1623-78.
+> > > > - MEM:47.719 Reading. parent:kataster/1623 <> caves-1623/78/78
+> > > > - Begin found for:78, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '78'
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/78
+> > > > - INCLUDE-go path found, including - caves-1623/78/haupt
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/haupt
+> > > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'haupt'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/haupt <> caves-1623/78/haupt
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 99 (previous: 7269, now:7368)
+> > > > - INCLUDE-return from include - caves-1623/78/haupt
+> > > > - INCLUDE-go path found, including - caves-1623/78/nasse
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/nasse
+> > > > > - Begin found for:nasse, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nasse'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/nasse <> caves-1623/78/nasse
+> > > > > - LEGS: 42 (previous: 7368, now:7410)
+> > > > - INCLUDE-return from include - caves-1623/78/nasse
+> > > > - INCLUDE-go path found, including - caves-1623/78/eisdom
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisdom
+> > > > > - Begin found for:eisdom, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'eisdom'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/eisdom <> caves-1623/78/eisdom
+> > > > > - LEGS: 21 (previous: 7410, now:7431)
+> > > > - INCLUDE-return from include - caves-1623/78/eisdom
+> > > > - INCLUDE-go path found, including - caves-1623/78/forsten
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/forsten
+> > > > > - Begin found for:forsten, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'forsten'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/forsten <> caves-1623/78/forsten
+> > > > > - LEGS: 23 (previous: 7431, now:7454)
+> > > > - INCLUDE-return from include - caves-1623/78/forsten
+> > > > - INCLUDE-go path found, including - caves-1623/78/augsburg
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/augsburg
+> > > > > - Begin found for:augsburg, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'augsburg'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/augsburg <> caves-1623/78/augsburg
+> > > > > - LEGS: 26 (previous: 7454, now:7480)
+> > > > - INCLUDE-return from include - caves-1623/78/augsburg
+> > > > - INCLUDE-go path found, including - caves-1623/78/eisscha
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/eisscha
+> > > > > - Begin found for:eisscha, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'eisscha'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/eisscha <> caves-1623/78/eisscha
+> > > > > - LEGS: 5 (previous: 7480, now:7485)
+> > > > - INCLUDE-return from include - caves-1623/78/eisscha
+> > > > - INCLUDE-go path found, including - caves-1623/78/fossimea
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/fossimea
+> > > > > - Begin found for:fossimea, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fossimea'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/fossimea <> caves-1623/78/fossimea
+> > > > > - LEGS: 73 (previous: 7485, now:7558)
+> > > > - INCLUDE-return from include - caves-1623/78/fossimea
+> > > > - INCLUDE-go path found, including - caves-1623/78/schwadom
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/schwadom
+> > > > > - Begin found for:schwadom, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'schwadom'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/schwadom <> caves-1623/78/schwadom
+> > > > > - LEGS: 54 (previous: 7558, now:7612)
+> > > > - INCLUDE-return from include - caves-1623/78/schwadom
+> > > > - INCLUDE-go path found, including - caves-1623/78/stgneu
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/stgneu
+> > > > > - Begin found for:stgneu, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'stgneu'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/stgneu <> caves-1623/78/stgneu
+> > > > > - LEGS: 5 (previous: 7612, now:7617)
+> > > > - INCLUDE-return from include - caves-1623/78/stgneu
+> > > > - INCLUDE-go path found, including - caves-1623/78/bayberg
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/bayberg
+> > > > > - Begin found for:bayberg, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bayberg'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/bayberg <> caves-1623/78/bayberg
+> > > > > - LEGS: 30 (previous: 7617, now:7647)
+> > > > - INCLUDE-return from include - caves-1623/78/bayberg
+> > > > - INCLUDE-go path found, including - caves-1623/78/keller
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/keller
+> > > > > - Begin found for:keller, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'keller'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/keller <> caves-1623/78/keller
+> > > > > - LEGS: 11 (previous: 7647, now:7658)
+> > > > - INCLUDE-return from include - caves-1623/78/keller
+> > > > - INCLUDE-go path found, including - caves-1623/78/e2
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/e2
+> > > > > - Begin found for:e2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'e2'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/e2 <> caves-1623/78/e2
+> > > > > - LEGS: 17 (previous: 7658, now:7675)
+> > > > - INCLUDE-return from include - caves-1623/78/e2
+> > > > - INCLUDE-go path found, including - caves-1623/78/bartl
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.719 Reading. parent:caves-1623/78/78 <> caves-1623/78/bartl
+> > > > > - Begin found for:bartl, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bartl'
+> > > > > > - MEM:47.719 Reading. parent:caves-1623/78/bartl <> caves-1623/78/bartl
+> > > > > - LEGS: 68 (previous: 7675, now:7743)
+> > > > - INCLUDE-return from include - caves-1623/78/bartl
+> > > > - INCLUDE-go path found, including - caves-1623/78/fetzig
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.723 Reading. parent:caves-1623/78/78 <> caves-1623/78/fetzig
+> > > > > - Begin found for:fetzig, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fetzig'
+> > > > > > - MEM:47.723 Reading. parent:caves-1623/78/fetzig <> caves-1623/78/fetzig
+> > > > > - LEGS: 9 (previous: 7743, now:7752)
+> > > > - INCLUDE-return from include - caves-1623/78/fetzig
+> > > > - INCLUDE-go path found, including - caves-1623/78/verloren
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.723 Reading. parent:caves-1623/78/78 <> caves-1623/78/verloren
+> > > > > - Begin found for:verloren, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'verloren'
+> > > > > > - MEM:47.723 Reading. parent:caves-1623/78/verloren <> caves-1623/78/verloren
+> > > > > - LEGS: 13 (previous: 7752, now:7765)
+> > > > - INCLUDE-return from include - caves-1623/78/verloren
+> > > > - INCLUDE-go path found, including - caves-1623/78/highway
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.723 Reading. parent:caves-1623/78/78 <> caves-1623/78/highway
+> > > > > - Begin found for:highway, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'highway'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/highway <> caves-1623/78/highway
+> > > > > - LEGS: 148 (previous: 7765, now:7913)
+> > > > - INCLUDE-return from include - caves-1623/78/highway
+> > > > - INCLUDE-go path found, including - caves-1623/78/parallel
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/parallel
+> > > > > - Begin found for:parallel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'parallel'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/parallel <> caves-1623/78/parallel
+> > > > > - LEGS: 22 (previous: 7913, now:7935)
+> > > > - INCLUDE-return from include - caves-1623/78/parallel
+> > > > - INCLUDE-go path found, including - caves-1623/78/allkaese
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/allkaese
+> > > > > - Begin found for:allkaese, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'allkaese'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/allkaese <> caves-1623/78/allkaese
+> > > > > - LEGS: 78 (previous: 7935, now:8013)
+> > > > - INCLUDE-return from include - caves-1623/78/allkaese
+> > > > - INCLUDE-go path found, including - caves-1623/78/schnaps
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/schnaps
+> > > > > - Begin found for:schnaps, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'schnaps'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/schnaps <> caves-1623/78/schnaps
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 35 (previous: 8013, now:8048)
+> > > > - INCLUDE-return from include - caves-1623/78/schnaps
+> > > > - INCLUDE-go path found, including - caves-1623/78/standard
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/standard
+> > > > > - Begin found for:standard, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'standard'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/standard <> caves-1623/78/standard
+> > > > > - LEGS: 92 (previous: 8048, now:8140)
+> > > > - INCLUDE-return from include - caves-1623/78/standard
+> > > > - INCLUDE-go path found, including - caves-1623/78/schlepp
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/schlepp
+> > > > > - Begin found for:schlepp, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'schlepp'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/schlepp <> caves-1623/78/schlepp
+> > > > > - LEGS: 23 (previous: 8140, now:8163)
+> > > > - INCLUDE-return from include - caves-1623/78/schlepp
+> > > > - INCLUDE-go path found, including - caves-1623/78/igramul
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/igramul
+> > > > > - Begin found for:igramul, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'igramul'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/igramul <> caves-1623/78/igramul
+> > > > > - LEGS: 31 (previous: 8163, now:8194)
+> > > > - INCLUDE-return from include - caves-1623/78/igramul
+> > > > - INCLUDE-go path found, including - caves-1623/78/spazier
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/spazier
+> > > > > - Begin found for:spazier, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'spazier'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/spazier <> caves-1623/78/spazier
+> > > > > - LEGS: 61 (previous: 8194, now:8255)
+> > > > - INCLUDE-return from include - caves-1623/78/spazier
+> > > > - INCLUDE-go path found, including - caves-1623/78/galakt
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/galakt
+> > > > > - Begin found for:galakt, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'galakt'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/galakt <> caves-1623/78/galakt
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 84 (previous: 8255, now:8339)
+> > > > - INCLUDE-return from include - caves-1623/78/galakt
+> > > > - INCLUDE-go path found, including - caves-1623/78/steinbl
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/steinbl
+> > > > > - Begin found for:steinbl, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'steinbl'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/steinbl <> caves-1623/78/steinbl
+> > > > > - LEGS: 20 (previous: 8339, now:8359)
+> > > > - INCLUDE-return from include - caves-1623/78/steinbl
+> > > > - INCLUDE-go path found, including - caves-1623/78/rausch
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/rausch
+> > > > > - Begin found for:rausch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rausch'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/rausch <> caves-1623/78/rausch
+> > > > > - LEGS: 27 (previous: 8359, now:8386)
+> > > > - INCLUDE-return from include - caves-1623/78/rausch
+> > > > - INCLUDE-go path found, including - caves-1623/78/comeback
+> > > > - Match in DB (i) for cave 1623-78.
+> > > > > - MEM:47.730 Reading. parent:caves-1623/78/78 <> caves-1623/78/comeback
+> > > > > - Begin found for:comeback, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'comeback'
+> > > > > > - MEM:47.730 Reading. parent:caves-1623/78/comeback <> caves-1623/78/comeback
+> > > > > - LEGS: 39 (previous: 8386, now:8425)
+> > > > - INCLUDE-return from include - caves-1623/78/comeback
+> > > > - LEGS: 1156 (previous: 7269, now:8425)
+> > > - INCLUDE-return from include - caves-1623/78/78
+> > > - INCLUDE-go path found, including - caves-1623/87/87
+> > > - Match in DB (i) for cave 1623-87.
+> > > > - MEM:47.730 Reading. parent:kataster/1623 <> caves-1623/87/87
+> > > > - Begin found for:87, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '87'
+> > > > > - MEM:47.730 Reading. parent:caves-1623/87/87 <> caves-1623/87/87
+> > > > - LEGS: 48 (previous: 8425, now:8473)
+> > > - INCLUDE-return from include - caves-1623/87/87
+> > > - INCLUDE-go path found, including - caves-1623/88/88
+> > > - Match in DB (i) for cave 1623-88.
+> > > > - MEM:47.781 Reading. parent:kataster/1623 <> caves-1623/88/88
+> > > > - Begin found for:88, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '88'
+> > > > > - MEM:47.793 Reading. parent:caves-1623/88/88 <> caves-1623/88/88
+> > > > - INCLUDE-go path found, including - caves-1623/88/lerche1
+> > > > - Match in DB (i) for cave 1623-88.
+> > > > > - MEM:47.844 Reading. parent:caves-1623/88/88 <> caves-1623/88/lerche1
+> > > > > - Begin found for:lerche1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lerche1'
+> > > > > > - MEM:47.871 Reading. parent:caves-1623/88/lerche1 <> caves-1623/88/lerche1
+> > > > > - LEGS: 214 (previous: 8473, now:8687)
+> > > > - INCLUDE-return from include - caves-1623/88/lerche1
+> > > > - INCLUDE-go path found, including - caves-1623/88/sophy
+> > > > - Match in DB (i) for cave 1623-88.
+> > > > > - MEM:47.883 Reading. parent:caves-1623/88/88 <> caves-1623/88/sophy
+> > > > > - Begin found for:sophy, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sophy'
+> > > > > > - MEM:47.883 Reading. parent:caves-1623/88/sophy <> caves-1623/88/sophy
+> > > > > - LEGS: 7 (previous: 8687, now:8694)
+> > > > - INCLUDE-return from include - caves-1623/88/sophy
+> > > > - LEGS: 221 (previous: 8473, now:8694)
+> > > - INCLUDE-return from include - caves-1623/88/88
+> > > - INCLUDE-go path found, including - caves-1623/115/115
+> > > - Match in DB (i) for cave 1623-115.
+> > > > - MEM:47.883 Reading. parent:kataster/1623 <> caves-1623/115/115
+> > > > - Begin found for:115, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '115'
+> > > > > - MEM:47.883 Reading. parent:caves-1623/115/115 <> caves-1623/115/115
+> > > > - INCLUDE-go path found, including - caves-1623/115/115eing
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.883 Reading. parent:caves-1623/115/115 <> caves-1623/115/115eing
+> > > > > - Begin found for:115eing, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '115eing'
+> > > > > > - MEM:47.883 Reading. parent:caves-1623/115/115eing <> caves-1623/115/115eing
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 112 (previous: 8694, now:8806)
+> > > > - INCLUDE-return from include - caves-1623/115/115eing
+> > > > - INCLUDE-go path found, including - caves-1623/115/nutzlos
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.895 Reading. parent:caves-1623/115/115 <> caves-1623/115/nutzlos
+> > > > > - Begin found for:nutzlos, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nutzlos'
+> > > > > > - MEM:47.895 Reading. parent:caves-1623/115/nutzlos <> caves-1623/115/nutzlos
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 24 (previous: 8806, now:8830)
+> > > > - INCLUDE-return from include - caves-1623/115/nutzlos
+> > > > - INCLUDE-go path found, including - caves-1623/115/babylon
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/babylon
+> > > > > - Begin found for:babylon, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'babylon'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/babylon <> caves-1623/115/babylon
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 71 (previous: 8830, now:8901)
+> > > > - INCLUDE-return from include - caves-1623/115/babylon
+> > > > - INCLUDE-go path found, including - caves-1623/115/115haupt
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/115haupt
+> > > > > - Begin found for:115haupt, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '115haupt'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/115haupt <> caves-1623/115/115haupt
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 32 (previous: 8901, now:8933)
+> > > > - INCLUDE-return from include - caves-1623/115/115haupt
+> > > > - INCLUDE-go path found, including - caves-1623/115/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/purgatory
+> > > > > - Begin found for:purgatory, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'purgatory'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/purgatory <> caves-1623/115/purgatory
+> > > > > - LEGS: 74 (previous: 8933, now:9007)
+> > > > - INCLUDE-return from include - caves-1623/115/purgatory
+> > > > - INCLUDE-go path found, including - caves-1623/115/babywind
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/babywind
+> > > > > - Begin found for:babywind, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'babywind'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/babywind <> caves-1623/115/babywind
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 45 (previous: 9007, now:9052)
+> > > > - INCLUDE-return from include - caves-1623/115/babywind
+> > > > - INCLUDE-go path found, including - caves-1623/115/nebukad
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/nebukad
+> > > > > - Begin found for:nebukad, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nebukad'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/nebukad <> caves-1623/115/nebukad
+> > > > > - LEGS: 36 (previous: 9052, now:9088)
+> > > > - INCLUDE-return from include - caves-1623/115/nebukad
+> > > > - INCLUDE-go path found, including - caves-1623/115/dartford
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/dartford
+> > > > > - Begin found for:dartford, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'dartford'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/dartford <> caves-1623/115/dartford
+> > > > > - LEGS: 52 (previous: 9088, now:9140)
+> > > > - INCLUDE-return from include - caves-1623/115/dartford
+> > > > - INCLUDE-go path found, including - caves-1623/115/koelndom
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/koelndom
+> > > > > - Begin found for:koelndom, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'koelndom'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/koelndom <> caves-1623/115/koelndom
+> > > > > - LEGS: 51 (previous: 9140, now:9191)
+> > > > - INCLUDE-return from include - caves-1623/115/koelndom
+> > > > - INCLUDE-go path found, including - caves-1623/115/confluence
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/confluence
+> > > > > - Begin found for:confluence, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'confluence'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/confluence <> caves-1623/115/confluence
+> > > > > - LEGS: 38 (previous: 9191, now:9229)
+> > > > - INCLUDE-return from include - caves-1623/115/confluence
+> > > > - INCLUDE-go path found, including - caves-1623/115/cucc/purgatory
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/cucc/purgatory
+> > > > > - Begin found for:cuccpurgatory, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cuccpurgatory'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/cucc/purgatory <> caves-1623/115/cucc/purgatory
+> > > > > - LEGS: 25 (previous: 9229, now:9254)
+> > > > - INCLUDE-return from include - caves-1623/115/cucc/purgatory
+> > > > - INCLUDE-go path found, including - caves-1623/115/115rest
+> > > > - Match in DB (i) for cave 1623-115.
+> > > > > - MEM:47.898 Reading. parent:caves-1623/115/115 <> caves-1623/115/115rest
+> > > > > - Begin found for:115rest, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '115rest'
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/115rest <> caves-1623/115/115rest
+> > > > > - INCLUDE-go path found, including - caves-1623/115/cucc/stream
+> > > > > - Match in DB (i) for cave 1623-115.
+> > > > > > - MEM:47.898 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/stream
+> > > > > > - INCLUDE-go path found, including - caves-1623/115/cucc/12foot
+> > > > > > - Match in DB (i) for cave 1623-115.
+> > > > > > > - MEM:47.898 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/12foot
+> > > > > > > - Begin found for:12foot, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: '12foot'
+> > > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/cucc/12foot <> caves-1623/115/cucc/12foot
+> > > > > > > - LEGS: 22 (previous: 9254, now:9276)
+> > > > > > - INCLUDE-return from include - caves-1623/115/cucc/12foot
+> > > > > > - INCLUDE-go path found, including - caves-1623/115/cucc/confluence
+> > > > > > - Match in DB (i) for cave 1623-115.
+> > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/confluence
+> > > > > > > - Begin found for:confluence, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'confluence'
+> > > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/cucc/confluence <> caves-1623/115/cucc/confluence
+> > > > > > > - LEGS: 59 (previous: 9276, now:9335)
+> > > > > > - INCLUDE-return from include - caves-1623/115/cucc/confluence
+> > > > > > - INCLUDE-go path found, including - caves-1623/115/cucc/commando
+> > > > > > - Match in DB (i) for cave 1623-115.
+> > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/commando
+> > > > > > > - Begin found for:commando, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'commando'
+> > > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/cucc/commando <> caves-1623/115/cucc/commando
+> > > > > > > - LEGS: 86 (previous: 9335, now:9421)
+> > > > > > - INCLUDE-return from include - caves-1623/115/cucc/commando
+> > > > > > - INCLUDE-go path found, including - caves-1623/115/cucc/orgasm
+> > > > > > - Match in DB (i) for cave 1623-115.
+> > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/115rest <> caves-1623/115/cucc/orgasm
+> > > > > > > - Begin found for:orgasm, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'orgasm'
+> > > > > > > > - MEM:47.910 Reading. parent:caves-1623/115/cucc/orgasm <> caves-1623/115/cucc/orgasm
+> > > > > > > - LEGS: 65 (previous: 9421, now:9486)
+> > > > > > - INCLUDE-return from include - caves-1623/115/cucc/orgasm
+> > > > > - INCLUDE-return from include - caves-1623/115/cucc/stream
+> > > > > - LEGS: 232 (previous: 9254, now:9486)
+> > > > - INCLUDE-return from include - caves-1623/115/115rest
+> > > > - LEGS: 792 (previous: 8694, now:9486)
+> > > - INCLUDE-return from include - caves-1623/115/115
+> > > - INCLUDE-go path found, including - caves-1623/142/142
+> > > - Match in DB (i) for cave 1623-142.
+> > > > - MEM:47.910 Reading. parent:kataster/1623 <> caves-1623/142/142
+> > > > - Begin found for:142, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '142'
+> > > > > - MEM:47.910 Reading. parent:caves-1623/142/142 <> caves-1623/142/142
+> > > > - LEGS: 124 (previous: 9486, now:9610)
+> > > - INCLUDE-return from include - caves-1623/142/142
+> > > - INCLUDE-go path found, including - caves-1623/143/143
+> > > - Match in DB (i) for cave 1623-143.
+> > > > - MEM:47.910 Reading. parent:kataster/1623 <> caves-1623/143/143
+> > > > - Begin found for:143, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '143'
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/143
+> > > > - INCLUDE-go path found, including - caves-1623/143/canyon
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/canyon
+> > > > > - Begin found for:canyon, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'canyon'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/canyon <> caves-1623/143/canyon
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 93 (previous: 9610, now:9703)
+> > > > - INCLUDE-return from include - caves-1623/143/canyon
+> > > > - INCLUDE-go path found, including - caves-1623/143/brauner
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/brauner
+> > > > > - Begin found for:brauner, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'brauner'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/brauner <> caves-1623/143/brauner
+> > > > > - LEGS: 15 (previous: 9703, now:9718)
+> > > > - INCLUDE-return from include - caves-1623/143/brauner
+> > > > - INCLUDE-go path found, including - caves-1623/143/flammen
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/flammen
+> > > > > - Begin found for:flammen, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flammen'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/flammen <> caves-1623/143/flammen
+> > > > > - LEGS: 16 (previous: 9718, now:9734)
+> > > > - INCLUDE-return from include - caves-1623/143/flammen
+> > > > - INCLUDE-go path found, including - caves-1623/143/haupt
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/haupt
+> > > > > - Begin found for:haupt, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'haupt'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/haupt <> caves-1623/143/haupt
+> > > > > - LEGS: 26 (previous: 9734, now:9760)
+> > > > - INCLUDE-return from include - caves-1623/143/haupt
+> > > > - INCLUDE-go path found, including - caves-1623/143/iqcanyon
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/iqcanyon
+> > > > > - Begin found for:iqcanyon, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'iqcanyon'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/iqcanyon <> caves-1623/143/iqcanyon
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 42 (previous: 9760, now:9802)
+> > > > - INCLUDE-return from include - caves-1623/143/iqcanyon
+> > > > - INCLUDE-go path found, including - caves-1623/143/kuhwiese
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/kuhwiese
+> > > > > - Begin found for:kuhwiese, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'kuhwiese'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+> > > > > - Begin found for:22a, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '22a'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/kuhwiese <> caves-1623/143/kuhwiese
+> > > > > - LEGS: 43 (previous: 9802, now:9845)
+> > > > - INCLUDE-return from include - caves-1623/143/kuhwiese
+> > > > - INCLUDE-go path found, including - caves-1623/143/rampe
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/rampe
+> > > > > - Begin found for:rampe, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rampe'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/rampe <> caves-1623/143/rampe
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 53 (previous: 9845, now:9898)
+> > > > - INCLUDE-return from include - caves-1623/143/rampe
+> > > > - INCLUDE-go path found, including - caves-1623/143/rutsche
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/rutsche
+> > > > > - Begin found for:rutsche, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rutsche'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/rutsche <> caves-1623/143/rutsche
+> > > > > - LEGS: 26 (previous: 9898, now:9924)
+> > > > - INCLUDE-return from include - caves-1623/143/rutsche
+> > > > - INCLUDE-go path found, including - caves-1623/143/doppelrohr
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/doppelrohr
+> > > > > - Begin found for:doppelrohr, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'doppelrohr'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/doppelrohr <> caves-1623/143/doppelrohr
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 28 (previous: 9924, now:9952)
+> > > > - INCLUDE-return from include - caves-1623/143/doppelrohr
+> > > > - INCLUDE-go path found, including - caves-1623/143/sophy
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/sophy
+> > > > > - Begin found for:sophy, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sophy'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/sophy <> caves-1623/143/sophy
+> > > > > - LEGS: 12 (previous: 9952, now:9964)
+> > > > - INCLUDE-return from include - caves-1623/143/sophy
+> > > > - INCLUDE-go path found, including - caves-1623/143/hades
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/hades
+> > > > > - Begin found for:hades, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hades'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/hades <> caves-1623/143/hades
+> > > > > - LEGS: 25 (previous: 9964, now:9989)
+> > > > - INCLUDE-return from include - caves-1623/143/hades
+> > > > - INCLUDE-go path found, including - caves-1623/143/troja
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/troja
+> > > > > - Begin found for:troja, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'troja'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/troja <> caves-1623/143/troja
+> > > > > - LEGS: 49 (previous: 9989, now:10038)
+> > > > - INCLUDE-return from include - caves-1623/143/troja
+> > > > - INCLUDE-go path found, including - caves-1623/143/hdp
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/hdp
+> > > > > - Begin found for:hdp, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hdp'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/hdp <> caves-1623/143/hdp
+> > > > > - LEGS: 7 (previous: 10038, now:10045)
+> > > > - INCLUDE-return from include - caves-1623/143/hdp
+> > > > - INCLUDE-go path found, including - caves-1623/143/soich
+> > > > - Match in DB (i) for cave 1623-143.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/143/143 <> caves-1623/143/soich
+> > > > > - Begin found for:soich, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'soich'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/143/soich <> caves-1623/143/soich
+> > > > > - LEGS: 6 (previous: 10045, now:10051)
+> > > > - INCLUDE-return from include - caves-1623/143/soich
+> > > > - LEGS: 441 (previous: 9610, now:10051)
+> > > - INCLUDE-return from include - caves-1623/143/143
+> > > - INCLUDE-go path found, including - caves-1623/144/144
+> > > - Match in DB (i) for cave 1623-144.
+> > > > - MEM:47.910 Reading. parent:kataster/1623 <> caves-1623/144/144
+> > > > - Begin found for:144, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '144'
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/144
+> > > > - INCLUDE-go path found, including - caves-1623/144/144ein
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/144ein
+> > > > > - Begin found for:144ein, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '144ein'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/144/144ein <> caves-1623/144/144ein
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 26 (previous: 10051, now:10077)
+> > > > - INCLUDE-return from include - caves-1623/144/144ein
+> > > > - INCLUDE-go path found, including - caves-1623/144/144horiz
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/144horiz
+> > > > > - Begin found for:144horiz, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '144horiz'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/144/144horiz <> caves-1623/144/144horiz
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 46 (previous: 10077, now:10123)
+> > > > - INCLUDE-return from include - caves-1623/144/144horiz
+> > > > - INCLUDE-go path found, including - caves-1623/144/144verb
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/144verb
+> > > > > - Begin found for:144verb, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '144verb'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/144/144verb <> caves-1623/144/144verb
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 49 (previous: 10123, now:10172)
+> > > > - INCLUDE-return from include - caves-1623/144/144verb
+> > > > - INCLUDE-go path found, including - caves-1623/144/America
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/America
+> > > > > - Begin found for:america, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'america'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/144/America <> caves-1623/144/America
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 117 (previous: 10172, now:10289)
+> > > > - INCLUDE-return from include - caves-1623/144/America
+> > > > - INCLUDE-go path found, including - caves-1623/144/cuccrest
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/cuccrest
+> > > > > - Begin found for:cuccrest, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cuccrest'
+> > > > > > - MEM:47.910 Reading. parent:caves-1623/144/cuccrest <> caves-1623/144/cuccrest
+> > > > > - LEGS: 24 (previous: 10289, now:10313)
+> > > > - INCLUDE-return from include - caves-1623/144/cuccrest
+> > > > - INCLUDE-go path found, including - caves-1623/144/ElfUhr
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.910 Reading. parent:caves-1623/144/144 <> caves-1623/144/ElfUhr
+> > > > > - Begin found for:elfuhr, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'elfuhr'
+> > > > > > - MEM:47.914 Reading. parent:caves-1623/144/ElfUhr <> caves-1623/144/ElfUhr
+> > > > > - LEGS: 18 (previous: 10313, now:10331)
+> > > > - INCLUDE-return from include - caves-1623/144/ElfUhr
+> > > > - INCLUDE-go path found, including - caves-1623/144/gang
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.914 Reading. parent:caves-1623/144/144 <> caves-1623/144/gang
+> > > > > - Begin found for:gang, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gang'
+> > > > > > - MEM:47.922 Reading. parent:caves-1623/144/gang <> caves-1623/144/gang
+> > > > > - LEGS: 88 (previous: 10331, now:10419)
+> > > > - INCLUDE-return from include - caves-1623/144/gang
+> > > > - INCLUDE-go path found, including - caves-1623/144/Meander
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.926 Reading. parent:caves-1623/144/144 <> caves-1623/144/Meander
+> > > > > - Begin found for:meander, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'meander'
+> > > > > > - MEM:47.938 Reading. parent:caves-1623/144/Meander <> caves-1623/144/Meander
+> > > > > - LEGS: 98 (previous: 10419, now:10517)
+> > > > - INCLUDE-return from include - caves-1623/144/Meander
+> > > > - INCLUDE-go path found, including - caves-1623/144/me2
+> > > > - Match in DB (i) for cave 1623-144.
+> > > > > - MEM:47.938 Reading. parent:caves-1623/144/144 <> caves-1623/144/me2
+> > > > > - Begin found for:me2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'me2'
+> > > > > > - MEM:47.941 Reading. parent:caves-1623/144/me2 <> caves-1623/144/me2
+> > > > > - LEGS: 15 (previous: 10517, now:10532)
+> > > > - INCLUDE-return from include - caves-1623/144/me2
+> > > > - LEGS: 481 (previous: 10051, now:10532)
+> > > - INCLUDE-return from include - caves-1623/144/144
+> > > - INCLUDE-go path found, including - caves-1623/158/158
+> > > - Match in DB (i) for cave 1623-158.
+> > > > - MEM:47.945 Reading. parent:kataster/1623 <> caves-1623/158/158
+> > > > - Begin found for:158, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '158'
+> > > > > - MEM:47.949 Reading. parent:caves-1623/158/158 <> caves-1623/158/158
+> > > > - INCLUDE-go path found, including - caves-1623/158/nagellackentferner
+> > > > - Match in DB (i) for cave 1623-158.
+> > > > > - MEM:47.961 Reading. parent:caves-1623/158/158 <> caves-1623/158/nagellackentferner
+> > > > > - Begin found for:nagellackentferner, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nagellackentferner'
+> > > > > > - MEM:47.977 Reading. parent:caves-1623/158/nagellackentferner <> caves-1623/158/nagellackentferner
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 88 (previous: 10532, now:10620)
+> > > > - INCLUDE-return from include - caves-1623/158/nagellackentferner
+> > > > - INCLUDE-go path found, including - caves-1623/158/bigberta
+> > > > - Match in DB (i) for cave 1623-158.
+> > > > > - MEM:48.004 Reading. parent:caves-1623/158/158 <> caves-1623/158/bigberta
+> > > > > - Begin found for:bigberta, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bigberta'
+> > > > > > - MEM:48.004 Reading. parent:caves-1623/158/bigberta <> caves-1623/158/bigberta
+> > > > > - LEGS: 71 (previous: 10620, now:10691)
+> > > > - INCLUDE-return from include - caves-1623/158/bigberta
+> > > > - INCLUDE-go path found, including - caves-1623/158/fruttidelmare
+> > > > - Match in DB (i) for cave 1623-158.
+> > > > > - MEM:48.004 Reading. parent:caves-1623/158/158 <> caves-1623/158/fruttidelmare
+> > > > > - Begin found for:fruttidelmare, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fruttidelmare'
+> > > > > > - MEM:48.004 Reading. parent:caves-1623/158/fruttidelmare <> caves-1623/158/fruttidelmare
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 40 (previous: 10691, now:10731)
+> > > > - INCLUDE-return from include - caves-1623/158/fruttidelmare
+> > > > - INCLUDE-go path found, including - caves-1623/158/lasvegas
+> > > > - Match in DB (i) for cave 1623-158.
+> > > > > - MEM:48.004 Reading. parent:caves-1623/158/158 <> caves-1623/158/lasvegas
+> > > > > - Begin found for:lasvegas, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lasvegas'
+> > > > > > - MEM:48.008 Reading. parent:caves-1623/158/lasvegas <> caves-1623/158/lasvegas
+> > > > > - LEGS: 91 (previous: 10731, now:10822)
+> > > > - INCLUDE-return from include - caves-1623/158/lasvegas
+> > > > - LEGS: 290 (previous: 10532, now:10822)
+> > > - INCLUDE-return from include - caves-1623/158/158
+> > > - INCLUDE-go path found, including - caves-1623/216/216
+> > > - Match in DB (i) for cave 1623-216.
+> > > > - MEM:48.008 Reading. parent:kataster/1623 <> caves-1623/216/216
+> > > > - Begin found for:216, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '216'
+> > > > > - MEM:48.008 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+> > > > - Begin found for:ent, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'ent'
+> > > > > - MEM:48.008 Reading. parent:caves-1623/216/216 <> caves-1623/216/216
+> > > > - LEGS: 1 (previous: 10839, now:10840)
+> > > - INCLUDE-return from include - caves-1623/216/216
+> > - INCLUDE-return from include - caves-1623/caves-smk-south
+> > - INCLUDE-go path found, including - caves-1623/caves-smk-north
+> > - NO Match in DB (i) for a cave for caves-1623/caves-smk-north
+> > > - MEM:48.008 Reading. parent:kataster/1623 <> caves-1623/caves-smk-north
+> > > - INCLUDE-go path found, including - caves-1623/links-smk-north
+> > > - NO Match in DB (i) for a cave for caves-1623/links-smk-north
+> > > > - MEM:48.008 Reading. parent:kataster/1623 <> caves-1623/links-smk-north
+> > > > - INCLUDE-go path found, including - caves-1623/links204-258
+> > > > - NO Match in DB (i) for a cave for caves-1623/links204-258
+> > > > > - MEM:48.008 Reading. parent:kataster/1623 <> caves-1623/links204-258
+> > > > - INCLUDE-return from include - caves-1623/links204-258
+> > > > - INCLUDE-go path found, including - caves-1623/links161-204
+> > > > - NO Match in DB (i) for a cave for caves-1623/links161-204
+> > > > > - MEM:48.008 Reading. parent:kataster/1623 <> caves-1623/links161-204
+> > > > - INCLUDE-return from include - caves-1623/links161-204
+> > > - INCLUDE-return from include - caves-1623/links-smk-north
+> > > - INCLUDE-go path found, including - caves-1623/83/83
+> > > - Match in DB (i) for cave 1623-83.
+> > > > - MEM:48.008 Reading. parent:kataster/1623 <> caves-1623/83/83
+> > > > - Begin found for:107entsingleleg, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '107entsingleleg'
+> > > > > - MEM:48.008 Reading. parent:caves-1623/83/83 <> caves-1623/83/83
+> > > > - LEGS: 1 (previous: 10840, now:10841)
+> > > - INCLUDE-return from include - caves-1623/83/83
+> > > - INCLUDE-go path found, including - caves-1623/107/107
+> > > - Match in DB (i) for cave 1623-107.
+> > > > - MEM:48.082 Reading. parent:kataster/1623 <> caves-1623/107/107
+> > > > - Begin found for:107, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '107'
+> > > > > - MEM:48.109 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+> > > > - INCLUDE-go path found, including - caves-1623/107/ent
+> > > > - Match in DB (i) for cave 1623-107.
+> > > > > - MEM:48.156 Reading. parent:caves-1623/107/107 <> caves-1623/107/ent
+> > > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'ent'
+> > > > > > - MEM:48.199 Reading. parent:caves-1623/107/ent <> caves-1623/107/ent
+> > > > > - LEGS: 20 (previous: 10841, now:10861)
+> > > > - INCLUDE-return from include - caves-1623/107/ent
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - INCLUDE-go path found, including - caves-1623/107/fake
+> > > > - Match in DB (i) for cave 1623-107.
+> > > > > - MEM:48.199 Reading. parent:caves-1623/107/107 <> caves-1623/107/fake
+> > > > > - Begin found for:fake, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fake'
+> > > > > > - MEM:48.219 Reading. parent:caves-1623/107/fake <> caves-1623/107/fake
+> > > > > - LEGS: 0 (previous: 10861, now:10861)
+> > > > - INCLUDE-return from include - caves-1623/107/fake
+> > > > - INCLUDE-go path found, including - caves-1623/107/ext
+> > > > - Match in DB (i) for cave 1623-107.
+> > > > > - MEM:48.219 Reading. parent:caves-1623/107/107 <> caves-1623/107/ext
+> > > > > - Begin found for:ext, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'ext'
+> > > > > > - MEM:48.219 Reading. parent:caves-1623/107/ext <> caves-1623/107/ext
+> > > > > - LEGS: 20 (previous: 10861, now:10881)
+> > > > - INCLUDE-return from include - caves-1623/107/ext
+> > > > - Begin found for:connectingleg, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'connectingleg'
+> > > > > - MEM:48.219 Reading. parent:caves-1623/107/107 <> caves-1623/107/107
+> > > > - LEGS: 1 (previous: 10881, now:10882)
+> > > - INCLUDE-return from include - caves-1623/107/107
+> > > - INCLUDE-go path found, including - caves-1623/136/136-correct
+> > > - Match in DB (i) for cave 1623-136.
+> > > > - MEM:48.219 Reading. parent:kataster/1623 <> caves-1623/136/136-correct
+> > > > - Begin found for:136, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '136'
+> > > > > - MEM:48.219 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/136-correct
+> > > > - INCLUDE-go path found, including - caves-1623/136/main
+> > > > - Match in DB (i) for cave 1623-136.
+> > > > > - MEM:48.219 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/main
+> > > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'entrance'
+> > > > > > - MEM:48.223 Reading. parent:caves-1623/136/main <> caves-1623/136/main
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 32 (previous: 10882, now:10914)
+> > > > - INCLUDE-return from include - caves-1623/136/main
+> > > > - INCLUDE-go path found, including - caves-1623/136/ents
+> > > > - Match in DB (i) for cave 1623-136.
+> > > > > - MEM:48.242 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/ents
+> > > > > - Begin found for:morent, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'morent'
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/ents <> caves-1623/136/ents
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 11 (previous: 10914, now:10925)
+> > > > - INCLUDE-return from include - caves-1623/136/ents
+> > > > - INCLUDE-go path found, including - caves-1623/136/chile/chile
+> > > > - Match in DB (i) for cave 1623-136.
+> > > > > - MEM:48.242 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/chile/chile
+> > > > > - Begin found for:chile, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'chile'
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/chile
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/oatso
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/oatso
+> > > > > > - Begin found for:oatso, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oatso'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/oatso <> caves-1623/136/chile/oatso
+> > > > > > - LEGS: 13 (previous: 10925, now:10938)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/oatso
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/ovrshoot
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/ovrshoot
+> > > > > > - Begin found for:overshoot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'overshoot'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/ovrshoot <> caves-1623/136/chile/ovrshoot
+> > > > > > - LEGS: 10 (previous: 10938, now:10948)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/ovrshoot
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/lostspce
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/lostspce
+> > > > > > - Begin found for:lostinspace, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lostinspace'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/lostspce <> caves-1623/136/chile/lostspce
+> > > > > > - LEGS: 13 (previous: 10948, now:10961)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/lostspce
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/windybot
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/windybot
+> > > > > > - Begin found for:windybottom, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'windybottom'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/windybot <> caves-1623/136/chile/windybot
+> > > > > > - LEGS: 4 (previous: 10961, now:10965)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/windybot
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/breeze
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/breeze
+> > > > > > - Begin found for:breezethrough, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'breezethrough'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/breeze <> caves-1623/136/chile/breeze
+> > > > > > - LEGS: 9 (previous: 10965, now:10974)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/breeze
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/watershoot
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/watershoot
+> > > > > > - Begin found for:watershoot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'watershoot'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/watershoot <> caves-1623/136/chile/watershoot
+> > > > > > - LEGS: 12 (previous: 10974, now:10986)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/watershoot
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/leftroute
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/leftroute
+> > > > > > - Begin found for:leftroute, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'leftroute'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/leftroute <> caves-1623/136/chile/leftroute
+> > > > > > - LEGS: 7 (previous: 10986, now:10993)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/leftroute
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/runnyb
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/runnyb
+> > > > > > - Begin found for:runnybowels, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'runnybowels'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/runnyb <> caves-1623/136/chile/runnyb
+> > > > > > - LEGS: 38 (previous: 10993, now:11031)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/runnyb
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/carpetworld
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/carpetworld
+> > > > > > - Begin found for:carpetworld, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'carpetworld'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/carpetworld <> caves-1623/136/chile/carpetworld
+> > > > > > - LEGS: 7 (previous: 11031, now:11038)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/carpetworld
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/pebbled
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/pebbled
+> > > > > > - Begin found for:pebbled1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pebbled1'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/pebbled <> caves-1623/136/chile/pebbled
+> > > > > > - LEGS: 8 (previous: 11038, now:11046)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/pebbled
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/left2route
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/left2route
+> > > > > > - Begin found for:left2route, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'left2route'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/left2route <> caves-1623/136/chile/left2route
+> > > > > > - LEGS: 9 (previous: 11046, now:11055)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/left2route
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/aven
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven
+> > > > > > - Begin found for:aven, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'aven'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/aven <> caves-1623/136/chile/aven
+> > > > > > - LEGS: 4 (previous: 11055, now:11059)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/aven
+> > > > > - INCLUDE-go path found, including - caves-1623/136/chile/aven2
+> > > > > - Match in DB (i) for cave 1623-136.
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/chile <> caves-1623/136/chile/aven2
+> > > > > > - Begin found for:aven2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'aven2'
+> > > > > > > - MEM:48.242 Reading. parent:caves-1623/136/chile/aven2 <> caves-1623/136/chile/aven2
+> > > > > > - LEGS: 3 (previous: 11059, now:11062)
+> > > > > - INCLUDE-return from include - caves-1623/136/chile/aven2
+> > > > > - LEGS: 137 (previous: 10925, now:11062)
+> > > > - INCLUDE-return from include - caves-1623/136/chile/chile
+> > > > - INCLUDE-go path found, including - caves-1623/136/forbiden
+> > > > - Match in DB (i) for cave 1623-136.
+> > > > > - MEM:48.242 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/forbiden
+> > > > > - Begin found for:hotmc, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hotmc'
+> > > > > > - MEM:48.242 Reading. parent:caves-1623/136/forbiden <> caves-1623/136/forbiden
+> > > > > - LEGS: 28 (previous: 11062, now:11090)
+> > > > - INCLUDE-return from include - caves-1623/136/forbiden
+> > > > - INCLUDE-go path found, including - caves-1623/136/gravel
+> > > > - Match in DB (i) for cave 1623-136.
+> > > > > - MEM:48.297 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/gravel
+> > > > > - Begin found for:gravel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gravel'
+> > > > > > - MEM:48.297 Reading. parent:caves-1623/136/gravel <> caves-1623/136/gravel
+> > > > > - LEGS: 21 (previous: 11090, now:11111)
+> > > > - INCLUDE-return from include - caves-1623/136/gravel
+> > > > - INCLUDE-go path found, including - caves-1623/136/footconn
+> > > > - Match in DB (i) for cave 1623-136.
+> > > > > - MEM:48.297 Reading. parent:caves-1623/136/136-correct <> caves-1623/136/footconn
+> > > > > - Begin found for:footconn, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'footconn'
+> > > > > > - MEM:48.297 Reading. parent:caves-1623/136/footconn <> caves-1623/136/footconn
+> > > > > - LEGS: 5 (previous: 11111, now:11116)
+> > > > - INCLUDE-return from include - caves-1623/136/footconn
+> > > > - LEGS: 234 (previous: 10882, now:11116)
+> > > - INCLUDE-return from include - caves-1623/136/136-correct
+> > > - INCLUDE-go path found, including - caves-1623/161/161
+> > > - Match in DB (i) for cave 1623-161.
+> > > > - MEM:48.297 Reading. parent:kataster/1623 <> caves-1623/161/161
+> > > > - Begin found for:161, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '161'
+> > > > > - MEM:48.297 Reading. parent:caves-1623/161/161 <> caves-1623/161/161
+> > > > - INCLUDE-go path found, including - caves-1623/161/top/alltop
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:48.316 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/alltop
+> > > > > - INCLUDE-go path found, including - caves-1623/161/top/entrance
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.324 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/entrance
+> > > > > > - Begin found for:entrance, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'entrance'
+> > > > > > > - MEM:48.363 Reading. parent:caves-1623/161/top/entrance <> caves-1623/161/top/entrance
+> > > > > > - LEGS: 15 (previous: 11116, now:11131)
+> > > > > - INCLUDE-return from include - caves-1623/161/top/entrance
+> > > > > - INCLUDE-go path found, including - caves-1623/161/top/oldp2
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.371 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/oldp2
+> > > > > > - Begin found for:oldp2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oldp2'
+> > > > > > > - MEM:48.379 Reading. parent:caves-1623/161/top/oldp2 <> caves-1623/161/top/oldp2
+> > > > > > - LEGS: 3 (previous: 11131, now:11134)
+> > > > > - INCLUDE-return from include - caves-1623/161/top/oldp2
+> > > > > - INCLUDE-go path found, including - caves-1623/161/top/snot
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.379 Reading. parent:caves-1623/161/161 <> caves-1623/161/top/snot
+> > > > > > - Begin found for:snot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snot'
+> > > > > > > - MEM:48.379 Reading. parent:caves-1623/161/top/snot <> caves-1623/161/top/snot
+> > > > > > - LEGS: 24 (previous: 11134, now:11158)
+> > > > > - INCLUDE-return from include - caves-1623/161/top/snot
+> > > > - INCLUDE-return from include - caves-1623/161/top/alltop
+> > > > - INCLUDE-go path found, including - caves-1623/161/lhr/alllhr
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:48.379 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/alllhr
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/lhroute
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.379 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/lhroute
+> > > > > > - Begin found for:lh, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lh'
+> > > > > > > - MEM:48.395 Reading. parent:caves-1623/161/lhr/lhroute <> caves-1623/161/lhr/lhroute
+> > > > > > - LEGS: 23 (previous: 11158, now:11181)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/lhroute
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/ragnarok
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.449 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ragnarok
+> > > > > > - Begin found for:ragnarok, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ragnarok'
+> > > > > > > - MEM:48.449 Reading. parent:caves-1623/161/lhr/ragnarok <> caves-1623/161/lhr/ragnarok
+> > > > > > - LEGS: 11 (previous: 11181, now:11192)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/ragnarok
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/drunk
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.465 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/drunk
+> > > > > > - Begin found for:drunk, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'drunk'
+> > > > > > > - MEM:48.473 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > > - MEM:48.477 Reading. parent:caves-1623/161/lhr/drunk <> caves-1623/161/lhr/drunk
+> > > > > > - LEGS: 12 (previous: 11192, now:11204)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/drunk
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/gparty
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.480 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/gparty
+> > > > > > - Begin found for:gparty, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gparty'
+> > > > > > > - MEM:48.480 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+> > > > > > - Begin found for:1st, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '1st'
+> > > > > > > - MEM:48.480 Reading. parent:caves-1623/161/lhr/gparty <> caves-1623/161/lhr/gparty
+> > > > > > - LEGS: 10 (previous: 11204, now:11214)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/gparty
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/powerstn
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.480 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/powerstn
+> > > > > > - Begin found for:powerstn, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'powerstn'
+> > > > > > > - MEM:48.480 Reading. parent:caves-1623/161/lhr/powerstn <> caves-1623/161/lhr/powerstn
+> > > > > > - LEGS: 29 (previous: 11214, now:11243)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/powerstn
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/arrow
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.480 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/arrow
+> > > > > > - Begin found for:ptchrp, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ptchrp'
+> > > > > > > - MEM:48.480 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > > - MEM:48.480 Reading. parent:caves-1623/161/lhr/arrow <> caves-1623/161/lhr/arrow
+> > > > > > - LEGS: 24 (previous: 11243, now:11267)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/arrow
+> > > > > - INCLUDE-go path found, including - caves-1623/161/lhr/ambi
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.480 Reading. parent:caves-1623/161/161 <> caves-1623/161/lhr/ambi
+> > > > > > - Begin found for:ambi, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ambi'
+> > > > > > > - MEM:48.484 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:48.484 Reading. parent:caves-1623/161/lhr/ambi <> caves-1623/161/lhr/ambi
+> > > > > > - LEGS: 8 (previous: 11267, now:11275)
+> > > > > - INCLUDE-return from include - caves-1623/161/lhr/ambi
+> > > > - INCLUDE-return from include - caves-1623/161/lhr/alllhr
+> > > > - INCLUDE-go path found, including - caves-1623/161/rhr/allrhr
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:48.484 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/allrhr
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/chunnel
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.484 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/chunnel
+> > > > > > - Begin found for:chunnel, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'chunnel'
+> > > > > > > - MEM:48.484 Reading. parent:caves-1623/161/rhr/chunnel <> caves-1623/161/rhr/chunnel
+> > > > > > - LEGS: 21 (previous: 11275, now:11296)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/chunnel
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/bladerun
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.484 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/bladerun
+> > > > > > - Begin found for:bladerun, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bladerun'
+> > > > > > > - MEM:48.496 Reading. parent:caves-1623/161/rhr/bladerun <> caves-1623/161/rhr/bladerun
+> > > > > > - LEGS: 20 (previous: 11296, now:11316)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/bladerun
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/vesta
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.496 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/vesta
+> > > > > > - Begin found for:vesta, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'vesta'
+> > > > > > > - MEM:48.496 Reading. parent:caves-1623/161/rhr/vesta <> caves-1623/161/rhr/vesta
+> > > > > > - LEGS: 12 (previous: 11316, now:11328)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/vesta
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/pog
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.496 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pog
+> > > > > > - Begin found for:potgold, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'potgold'
+> > > > > > > - MEM:48.500 Reading. parent:caves-1623/161/rhr/pog <> caves-1623/161/rhr/pog
+> > > > > > - LEGS: 38 (previous: 11328, now:11366)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/pog
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/pitpend
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.500 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/pitpend
+> > > > > > - Begin found for:pitpend, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pitpend'
+> > > > > > > - MEM:48.512 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:48.520 Reading. parent:caves-1623/161/rhr/pitpend <> caves-1623/161/rhr/pitpend
+> > > > > > - LEGS: 7 (previous: 11366, now:11373)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/pitpend
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/tblocks
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.520 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/tblocks
+> > > > > > - Begin found for:knossos, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'knossos'
+> > > > > > > - MEM:48.520 Reading. parent:caves-1623/161/rhr/tblocks <> caves-1623/161/rhr/tblocks
+> > > > > > - LEGS: 13 (previous: 11373, now:11386)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/tblocks
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/olympus
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.570 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/olympus
+> > > > > > - Begin found for:olympus, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'olympus'
+> > > > > > > - MEM:48.582 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:48.590 Reading. parent:caves-1623/161/rhr/olympus <> caves-1623/161/rhr/olympus
+> > > > > > - LEGS: 11 (previous: 11386, now:11397)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/olympus
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/dreamtme
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.590 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/dreamtme
+> > > > > > - Begin found for:boltconn2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'boltconn2'
+> > > > > > > - MEM:48.590 Reading. parent:caves-1623/161/rhr/dreamtme <> caves-1623/161/rhr/dreamtme
+> > > > > > - LEGS: 2 (previous: 11397, now:11399)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/dreamtme
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/deepslp
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.590 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/deepslp
+> > > > > > - Begin found for:deepsleep, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'deepsleep'
+> > > > > > > - MEM:48.594 Reading. parent:caves-1623/161/rhr/deepslp <> caves-1623/161/rhr/deepslp
+> > > > > > - LEGS: 12 (previous: 11399, now:11411)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/deepslp
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/gnome
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.594 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/gnome
+> > > > > > - Begin found for:gnome, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gnome'
+> > > > > > > - MEM:48.602 Reading. parent:caves-1623/161/rhr/gnome <> caves-1623/161/rhr/gnome
+> > > > > > - LEGS: 27 (previous: 11411, now:11438)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/gnome
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/notwhat
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.602 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/notwhat
+> > > > > > - Begin found for:notwhat, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'notwhat'
+> > > > > > > - MEM:48.602 Reading. parent:caves-1623/161/rhr/notwhat <> caves-1623/161/rhr/notwhat
+> > > > > > - LEGS: 51 (previous: 11438, now:11489)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/notwhat
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/nights
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.602 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/nights
+> > > > > > - Begin found for:nightsoil, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'nightsoil'
+> > > > > > > - MEM:48.602 Reading. parent:caves-1623/161/rhr/nights <> caves-1623/161/rhr/nights
+> > > > > > - LEGS: 43 (previous: 11489, now:11532)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/nights
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/oral
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.621 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/oral
+> > > > > > - Begin found for:oral, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oral'
+> > > > > > > - MEM:48.621 Reading. parent:caves-1623/161/rhr/oral <> caves-1623/161/rhr/oral
+> > > > > > - LEGS: 19 (previous: 11532, now:11551)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/oral
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/splat
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.652 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/splat
+> > > > > > - Begin found for:splattery, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'splattery'
+> > > > > > > - MEM:48.652 Reading. parent:caves-1623/161/rhr/splat <> caves-1623/161/rhr/splat
+> > > > > > - LEGS: 26 (previous: 11551, now:11577)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/splat
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/revenge
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.652 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/revenge
+> > > > > > - Begin found for:revenge, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'revenge'
+> > > > > > > - MEM:48.652 Reading. parent:caves-1623/161/rhr/revenge <> caves-1623/161/rhr/revenge
+> > > > > > - LEGS: 12 (previous: 11577, now:11589)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/revenge
+> > > > > - INCLUDE-go path found, including - caves-1623/161/rhr/doubting
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.652 Reading. parent:caves-1623/161/161 <> caves-1623/161/rhr/doubting
+> > > > > > - Begin found for:doubting, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'doubting'
+> > > > > > > - MEM:48.652 Reading. parent:caves-1623/161/rhr/doubting <> caves-1623/161/rhr/doubting
+> > > > > > - LEGS: 38 (previous: 11589, now:11627)
+> > > > > - INCLUDE-return from include - caves-1623/161/rhr/doubting
+> > > > - INCLUDE-return from include - caves-1623/161/rhr/allrhr
+> > > > - INCLUDE-go path found, including - caves-1623/161/north/allnth
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:48.656 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/allnth
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/yapate
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.656 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/yapate
+> > > > > > - Begin found for:yapate, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'yapate'
+> > > > > > > - MEM:48.672 Reading. parent:caves-1623/161/north/yapate <> caves-1623/161/north/yapate
+> > > > > > - LEGS: 16 (previous: 11627, now:11643)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/yapate
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/flapjack
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.680 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flapjack
+> > > > > > - Begin found for:flapjack, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'flapjack'
+> > > > > > > - MEM:48.680 Reading. parent:caves-1623/161/north/flapjack <> caves-1623/161/north/flapjack
+> > > > > > - LEGS: 25 (previous: 11643, now:11668)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/flapjack
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/toomuch
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.691 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/toomuch
+> > > > > > - Begin found for:toomuch, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'toomuch'
+> > > > > > > - MEM:48.695 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:48.695 Reading. parent:caves-1623/161/north/toomuch <> caves-1623/161/north/toomuch
+> > > > > > - LEGS: 19 (previous: 11668, now:11687)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/toomuch
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/flatbatt
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.699 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/flatbatt
+> > > > > > - Begin found for:fbs, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fbs'
+> > > > > > > - MEM:48.699 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:48.715 Reading. parent:caves-1623/161/north/flatbatt <> caves-1623/161/north/flatbatt
+> > > > > > - LEGS: 23 (previous: 11687, now:11710)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/flatbatt
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/dehy
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.715 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/dehy
+> > > > > > - Begin found for:cfn, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'cfn'
+> > > > > > > - MEM:48.715 Reading. parent:caves-1623/161/north/dehy <> caves-1623/161/north/dehy
+> > > > > > - LEGS: 15 (previous: 11710, now:11725)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/dehy
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/gob
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.723 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/gob
+> > > > > > - Begin found for:gob, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gob'
+> > > > > > > - MEM:48.723 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+> > > > > > - Begin found for:top, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'top'
+> > > > > > > - MEM:48.730 Reading. parent:caves-1623/161/north/gob <> caves-1623/161/north/gob
+> > > > > > - LEGS: 5 (previous: 11725, now:11730)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/gob
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/burble
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.742 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/burble
+> > > > > > - Begin found for:burblcrawl, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'burblcrawl'
+> > > > > > > - MEM:48.742 Reading. parent:caves-1623/161/north/burble <> caves-1623/161/north/burble
+> > > > > > - LEGS: 18 (previous: 11730, now:11748)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/burble
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/pipeless
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.746 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/pipeless
+> > > > > > - Begin found for:beeconn, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'beeconn'
+> > > > > > > - MEM:48.746 Reading. parent:caves-1623/161/north/pipeless <> caves-1623/161/north/pipeless
+> > > > > > - LEGS: 1 (previous: 11748, now:11749)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/pipeless
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/3wisemen
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.746 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/3wisemen
+> > > > > > - Begin found for:3wisemen, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '3wisemen'
+> > > > > > > - MEM:48.746 Reading. parent:caves-1623/161/north/3wisemen <> caves-1623/161/north/3wisemen
+> > > > > > - LEGS: 7 (previous: 11749, now:11756)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/3wisemen
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/further
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.746 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/further
+> > > > > > - Begin found for:further, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'further'
+> > > > > > > - MEM:48.746 Reading. parent:caves-1623/161/north/further <> caves-1623/161/north/further
+> > > > > > - LEGS: 24 (previous: 11756, now:11780)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/further
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/anglia
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.746 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/anglia
+> > > > > > - Begin found for:anglia, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'anglia'
+> > > > > > > - MEM:48.746 Reading. parent:caves-1623/161/north/anglia <> caves-1623/161/north/anglia
+> > > > > > - LEGS: 28 (previous: 11780, now:11808)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/anglia
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/siberia
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.746 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/siberia
+> > > > > > - Begin found for:siberia, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'siberia'
+> > > > > > > - MEM:48.746 Reading. parent:caves-1623/161/north/siberia <> caves-1623/161/north/siberia
+> > > > > > - LEGS: 34 (previous: 11808, now:11842)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/siberia
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/sep
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.746 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sep
+> > > > > > - Begin found for:sep, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sep'
+> > > > > > > - MEM:48.746 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+> > > > > > - Begin found for:teama, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'teama'
+> > > > > > > - MEM:48.754 Reading. parent:caves-1623/161/north/sep <> caves-1623/161/north/sep
+> > > > > > - LEGS: 13 (previous: 11842, now:11855)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/sep
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/midnight
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.754 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/midnight
+> > > > > > - Begin found for:midnght1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'midnght1'
+> > > > > > > - MEM:48.754 Reading. parent:caves-1623/161/north/midnight <> caves-1623/161/north/midnight
+> > > > > > - LEGS: 13 (previous: 11855, now:11868)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/midnight
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/logic
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.762 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/logic
+> > > > > > - Begin found for:logic, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'logic'
+> > > > > > > - MEM:48.762 Reading. parent:caves-1623/161/north/logic <> caves-1623/161/north/logic
+> > > > > > - LEGS: 16 (previous: 11868, now:11884)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/logic
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/psychost
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.762 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/psychost
+> > > > > > - Begin found for:psycho, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'psycho'
+> > > > > > > - MEM:48.762 Reading. parent:caves-1623/161/north/psychost <> caves-1623/161/north/psychost
+> > > > > > - LEGS: 17 (previous: 11884, now:11901)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/psychost
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/clearas
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.762 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/clearas
+> > > > > > - Begin found for:clearas, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'clearas'
+> > > > > > > - MEM:48.762 Reading. parent:caves-1623/161/north/clearas <> caves-1623/161/north/clearas
+> > > > > > - LEGS: 25 (previous: 11901, now:11926)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/clearas
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/bearbum
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.770 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bearbum
+> > > > > > - Begin found for:bearbum, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bearbum'
+> > > > > > > - MEM:48.770 Reading. parent:caves-1623/161/north/bearbum <> caves-1623/161/north/bearbum
+> > > > > > - LEGS: 9 (previous: 11926, now:11935)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/bearbum
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/forgetmenot
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.770 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/forgetmenot
+> > > > > > - Begin found for:forgetmenot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'forgetmenot'
+> > > > > > > - MEM:48.770 Reading. parent:caves-1623/161/north/forgetmenot <> caves-1623/161/north/forgetmenot
+> > > > > > - LEGS: 7 (previous: 11935, now:11942)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/forgetmenot
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/solidrock
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/solidrock
+> > > > > > - Begin found for:solidrock, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'solidrock'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/solidrock <> caves-1623/161/north/solidrock
+> > > > > > - LEGS: 9 (previous: 11942, now:11951)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/solidrock
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/direstraits
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/direstraits
+> > > > > > - Begin found for:direstraits, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'direstraits'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/direstraits <> caves-1623/161/north/direstraits
+> > > > > > - LEGS: 9 (previous: 11951, now:11960)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/direstraits
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/satansitter
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/satansitter
+> > > > > > - Begin found for:satansitter, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'satansitter'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/satansitter <> caves-1623/161/north/satansitter
+> > > > > > - LEGS: 11 (previous: 11960, now:11971)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/satansitter
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/naturalway
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway
+> > > > > > - Begin found for:naturalway, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'naturalway'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/naturalway <> caves-1623/161/north/naturalway
+> > > > > > - LEGS: 39 (previous: 11971, now:12010)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/naturalway
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/6milebottom
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/6milebottom
+> > > > > > - Begin found for:6milebottom, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '6milebottom'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/6milebottom <> caves-1623/161/north/6milebottom
+> > > > > > - LEGS: 22 (previous: 12010, now:12032)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/6milebottom
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/sofaraway
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sofaraway
+> > > > > > - Begin found for:sofaraway, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sofaraway'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/sofaraway <> caves-1623/161/north/sofaraway
+> > > > > > - LEGS: 8 (previous: 12032, now:12040)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/sofaraway
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/ironyoftime
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/ironyoftime
+> > > > > > - Begin found for:ironyoftime, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ironyoftime'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/ironyoftime <> caves-1623/161/north/ironyoftime
+> > > > > > - LEGS: 7 (previous: 12040, now:12047)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/ironyoftime
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/naturalway2
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/naturalway2
+> > > > > > - Begin found for:naturalway2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'naturalway2'
+> > > > > > > - MEM:48.777 Reading. parent:caves-1623/161/north/naturalway2 <> caves-1623/161/north/naturalway2
+> > > > > > - LEGS: 6 (previous: 12047, now:12053)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/naturalway2
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/oldmen
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.777 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmen
+> > > > > > - Begin found for:oldmen, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oldmen'
+> > > > > > > - MEM:48.785 Reading. parent:caves-1623/161/north/oldmen <> caves-1623/161/north/oldmen
+> > > > > > - LEGS: 30 (previous: 12053, now:12083)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/oldmen
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/chocolateloops
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.789 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/chocolateloops
+> > > > > > - Begin found for:chocolateloops, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'chocolateloops'
+> > > > > > > - MEM:48.789 Reading. parent:caves-1623/161/north/chocolateloops <> caves-1623/161/north/chocolateloops
+> > > > > > - LEGS: 10 (previous: 12083, now:12093)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/chocolateloops
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/mendip
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.789 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mendip
+> > > > > > - Begin found for:mendip, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mendip'
+> > > > > > > - MEM:48.789 Reading. parent:caves-1623/161/north/mendip <> caves-1623/161/north/mendip
+> > > > > > - LEGS: 11 (previous: 12093, now:12104)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/mendip
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/popcorn
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.789 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/popcorn
+> > > > > > - Begin found for:popcorn, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'popcorn'
+> > > > > > > - MEM:48.789 Reading. parent:caves-1623/161/north/popcorn <> caves-1623/161/north/popcorn
+> > > > > > - LEGS: 12 (previous: 12104, now:12116)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/popcorn
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/oldmensouth
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.809 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmensouth
+> > > > > > - Begin found for:oldmensouth, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oldmensouth'
+> > > > > > > - MEM:48.809 Reading. parent:caves-1623/161/north/oldmensouth <> caves-1623/161/north/oldmensouth
+> > > > > > - LEGS: 11 (previous: 12116, now:12127)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/oldmensouth
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/oldmenleft
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.812 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/oldmenleft
+> > > > > > - Begin found for:oldmenleft, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oldmenleft'
+> > > > > > > - MEM:48.812 Reading. parent:caves-1623/161/north/oldmenleft <> caves-1623/161/north/oldmenleft
+> > > > > > - LEGS: 7 (previous: 12127, now:12134)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/oldmenleft
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/mordor
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.887 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/mordor
+> > > > > > - Begin found for:mordor, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mordor'
+> > > > > > > - MEM:48.887 Reading. parent:caves-1623/161/north/mordor <> caves-1623/161/north/mordor
+> > > > > > - LEGS: 35 (previous: 12134, now:12169)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/mordor
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/bored
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.910 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bored
+> > > > > > - Begin found for:bored, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bored'
+> > > > > > > - MEM:48.910 Reading. parent:caves-1623/161/north/bored <> caves-1623/161/north/bored
+> > > > > > - LEGS: 18 (previous: 12169, now:12187)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/bored
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/stables
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.910 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/stables
+> > > > > > - Begin found for:stables, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stables'
+> > > > > > > - MEM:48.910 Reading. parent:caves-1623/161/north/stables <> caves-1623/161/north/stables
+> > > > > > - LEGS: 38 (previous: 12187, now:12225)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/stables
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/holeycow
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.910 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/holeycow
+> > > > > > - Begin found for:holeycow, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'holeycow'
+> > > > > > > - MEM:48.910 Reading. parent:caves-1623/161/north/holeycow <> caves-1623/161/north/holeycow
+> > > > > > - LEGS: 56 (previous: 12225, now:12281)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/holeycow
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/blownout
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.910 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/blownout
+> > > > > > - Begin found for:blownout, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'blownout'
+> > > > > > > - MEM:48.910 Reading. parent:caves-1623/161/north/blownout <> caves-1623/161/north/blownout
+> > > > > > - LEGS: 26 (previous: 12281, now:12307)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/blownout
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/sauron
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.914 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/sauron
+> > > > > > - Begin found for:sauron, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sauron'
+> > > > > > > - MEM:48.914 Reading. parent:caves-1623/161/north/sauron <> caves-1623/161/north/sauron
+> > > > > > - LEGS: 9 (previous: 12307, now:12316)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/sauron
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/soilathon
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.922 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilathon
+> > > > > > - Begin found for:soilathon, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'soilathon'
+> > > > > > > - MEM:48.930 Reading. parent:caves-1623/161/north/soilathon <> caves-1623/161/north/soilathon
+> > > > > > - LEGS: 23 (previous: 12316, now:12339)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/soilathon
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/wellypopper
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.930 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/wellypopper
+> > > > > > - Begin found for:wellypopper, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wellypopper'
+> > > > > > > - MEM:48.930 Reading. parent:caves-1623/161/north/wellypopper <> caves-1623/161/north/wellypopper
+> > > > > > - LEGS: 22 (previous: 12339, now:12361)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/wellypopper
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/runnelnorth
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.930 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/runnelnorth
+> > > > > > - Begin found for:runnelnorth, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'runnelnorth'
+> > > > > > > - MEM:48.930 Reading. parent:caves-1623/161/north/runnelnorth <> caves-1623/161/north/runnelnorth
+> > > > > > - LEGS: 26 (previous: 12361, now:12387)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/runnelnorth
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/soilchute
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.930 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/soilchute
+> > > > > > - Begin found for:soilchute, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'soilchute'
+> > > > > > > - MEM:48.934 Reading. parent:caves-1623/161/north/soilchute <> caves-1623/161/north/soilchute
+> > > > > > - LEGS: 7 (previous: 12387, now:12394)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/soilchute
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/polkadot
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.934 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/polkadot
+> > > > > > - Begin found for:polkadot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'polkadot'
+> > > > > > > - MEM:48.934 Reading. parent:caves-1623/161/north/polkadot <> caves-1623/161/north/polkadot
+> > > > > > - LEGS: 17 (previous: 12394, now:12411)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/polkadot
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/larchenrepublic
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.938 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/larchenrepublic
+> > > > > > - Begin found for:larchenrepublic, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'larchenrepublic'
+> > > > > > > - MEM:48.938 Reading. parent:caves-1623/161/north/larchenrepublic <> caves-1623/161/north/larchenrepublic
+> > > > > > - LEGS: 18 (previous: 12411, now:12429)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/larchenrepublic
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/bundestrasse
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.938 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/bundestrasse
+> > > > > > - Begin found for:bundestrasse, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bundestrasse'
+> > > > > > > - MEM:48.938 Reading. parent:caves-1623/161/north/bundestrasse <> caves-1623/161/north/bundestrasse
+> > > > > > - LEGS: 26 (previous: 12429, now:12455)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/bundestrasse
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/fbitw
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.941 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fbitw
+> > > > > > - Begin found for:fbitw, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fbitw'
+> > > > > > > - MEM:48.941 Reading. parent:caves-1623/161/north/fbitw <> caves-1623/161/north/fbitw
+> > > > > > - LEGS: 16 (previous: 12455, now:12471)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/fbitw
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/fallingspike
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.941 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/fallingspike
+> > > > > > - Begin found for:fallingspike, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fallingspike'
+> > > > > > > - MEM:48.941 Reading. parent:caves-1623/161/north/fallingspike <> caves-1623/161/north/fallingspike
+> > > > > > - LEGS: 7 (previous: 12471, now:12478)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/fallingspike
+> > > > > - INCLUDE-go path found, including - caves-1623/161/north/qualitybelays
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.941 Reading. parent:caves-1623/161/161 <> caves-1623/161/north/qualitybelays
+> > > > > > - Begin found for:quality, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'quality'
+> > > > > > > - MEM:48.941 Reading. parent:caves-1623/161/north/qualitybelays <> caves-1623/161/north/qualitybelays
+> > > > > > - LEGS: 12 (previous: 12478, now:12490)
+> > > > > - INCLUDE-return from include - caves-1623/161/north/qualitybelays
+> > > > - INCLUDE-return from include - caves-1623/161/north/allnth
+> > > > - INCLUDE-go path found, including - caves-1623/161/france/allfr
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:48.941 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/allfr
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/adrian
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.941 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/adrian
+> > > > > > - Begin found for:adrian, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'adrian'
+> > > > > > > - MEM:48.949 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+> > > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/adrian <> caves-1623/161/france/adrian
+> > > > > > - LEGS: 16 (previous: 12490, now:12506)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/adrian
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/btoc
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/btoc
+> > > > > > - Begin found for:btoc, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'btoc'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/btoc <> caves-1623/161/france/btoc
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 13 (previous: 12506, now:12519)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/btoc
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/vertfran
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/vertfran
+> > > > > > - Begin found for:france, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'france'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+> > > > > > - Begin found for:a, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'a'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/vertfran <> caves-1623/161/france/vertfran
+> > > > > > - LEGS: 10 (previous: 12519, now:12529)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/vertfran
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/algeria
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/algeria
+> > > > > > - Begin found for:algeria, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'algeria'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/algeria <> caves-1623/161/france/algeria
+> > > > > > - LEGS: 14 (previous: 12529, now:12543)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/algeria
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/orient
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/orient
+> > > > > > - Begin found for:orient, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'orient'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/orient <> caves-1623/161/france/orient
+> > > > > > - LEGS: 30 (previous: 12543, now:12573)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/orient
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/missip
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/missip
+> > > > > > - Begin found for:missip, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'missip'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/missip <> caves-1623/161/france/missip
+> > > > > > - LEGS: 22 (previous: 12573, now:12595)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/missip
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/toplo
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/toplo
+> > > > > > - Begin found for:toploader, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'toploader'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/toplo <> caves-1623/161/france/toplo
+> > > > > > - LEGS: 9 (previous: 12595, now:12604)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/toplo
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/browni
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/browni
+> > > > > > - Begin found for:brownie, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'brownie'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/browni <> caves-1623/161/france/browni
+> > > > > > - LEGS: 7 (previous: 12604, now:12611)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/browni
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/rocky
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/rocky
+> > > > > > - Begin found for:rocky, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rocky'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/rocky <> caves-1623/161/france/rocky
+> > > > > > - LEGS: 13 (previous: 12611, now:12624)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/rocky
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/iidriv
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/iidriv
+> > > > > > - Begin found for:infinite, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'infinite'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/iidriv <> caves-1623/161/france/iidriv
+> > > > > > - LEGS: 27 (previous: 12624, now:12651)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/iidriv
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/bisfac
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.957 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/bisfac
+> > > > > > - Begin found for:ginger, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ginger'
+> > > > > > > - MEM:48.957 Reading. parent:caves-1623/161/france/bisfac <> caves-1623/161/france/bisfac
+> > > > > > - LEGS: 25 (previous: 12651, now:12676)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/bisfac
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/sultans
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.965 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/sultans
+> > > > > > - Begin found for:sultans, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sultans'
+> > > > > > > - MEM:48.965 Reading. parent:caves-1623/161/france/sultans <> caves-1623/161/france/sultans
+> > > > > > - LEGS: 9 (previous: 12676, now:12685)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/sultans
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/regurg
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.965 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/regurg
+> > > > > > - Begin found for:regurg, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'regurg'
+> > > > > > > - MEM:48.965 Reading. parent:caves-1623/161/france/regurg <> caves-1623/161/france/regurg
+> > > > > > - LEGS: 7 (previous: 12685, now:12692)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/regurg
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/room
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.965 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/room
+> > > > > > - Begin found for:room, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'room'
+> > > > > > > - MEM:48.965 Reading. parent:caves-1623/161/france/room <> caves-1623/161/france/room
+> > > > > > - LEGS: 20 (previous: 12692, now:12712)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/room
+> > > > > - INCLUDE-go path found, including - caves-1623/161/france/irrig
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.965 Reading. parent:caves-1623/161/161 <> caves-1623/161/france/irrig
+> > > > > > - Begin found for:irrig, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'irrig'
+> > > > > > > - MEM:48.965 Reading. parent:caves-1623/161/france/irrig <> caves-1623/161/france/irrig
+> > > > > > - LEGS: 13 (previous: 12712, now:12725)
+> > > > > - INCLUDE-return from include - caves-1623/161/france/irrig
+> > > > - INCLUDE-return from include - caves-1623/161/france/allfr
+> > > > - INCLUDE-go path found, including - caves-1623/161/triassic/alltrias
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:48.965 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/alltrias
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/triassic
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:48.965 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/triassic
+> > > > > > - Begin found for:triassic, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'triassic'
+> > > > > > > - MEM:49.020 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:49.027 Reading. parent:caves-1623/161/triassic/triassic <> caves-1623/161/triassic/triassic
+> > > > > > - LEGS: 41 (previous: 12725, now:12766)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/triassic
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/palace
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/palace
+> > > > > > - Begin found for:palace, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'palace'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/palace <> caves-1623/161/triassic/palace
+> > > > > > - LEGS: 6 (previous: 12766, now:12772)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/palace
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/teapot
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/teapot
+> > > > > > - Begin found for:teapot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'teapot'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/teapot <> caves-1623/161/triassic/teapot
+> > > > > > - LEGS: 20 (previous: 12772, now:12792)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/teapot
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/snug
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/snug
+> > > > > > - Begin found for:snug, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snug'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/snug <> caves-1623/161/triassic/snug
+> > > > > > - LEGS: 21 (previous: 12792, now:12813)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/snug
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/altuni
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/altuni
+> > > > > > - Begin found for:altuni, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'altuni'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/altuni <> caves-1623/161/triassic/altuni
+> > > > > > - LEGS: 33 (previous: 12813, now:12846)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/altuni
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/hymen
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/hymen
+> > > > > > - Begin found for:hymen, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hymen'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/hymen <> caves-1623/161/triassic/hymen
+> > > > > > - LEGS: 9 (previous: 12846, now:12855)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/hymen
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/magicjum
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/magicjum
+> > > > > > - Begin found for:magicjumars, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'magicjumars'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/magicjum <> caves-1623/161/triassic/magicjum
+> > > > > > - LEGS: 12 (previous: 12855, now:12867)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/magicjum
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/fogies
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fogies
+> > > > > > - Begin found for:fogies, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fogies'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/fogies <> caves-1623/161/triassic/fogies
+> > > > > > - LEGS: 19 (previous: 12867, now:12886)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/fogies
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/keinzimm
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/keinzimm
+> > > > > > - Begin found for:keinzimmer, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'keinzimmer'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/keinzimm <> caves-1623/161/triassic/keinzimm
+> > > > > > - LEGS: 21 (previous: 12886, now:12907)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/keinzimm
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/lostworl
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/lostworl
+> > > > > > - Begin found for:lostworld, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lostworld'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+> > > > > > - Begin found for:downstream, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'downstream'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/lostworl <> caves-1623/161/triassic/lostworl
+> > > > > > - LEGS: 7 (previous: 12907, now:12914)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/lostworl
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/tapeworm
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/tapeworm
+> > > > > > - Begin found for:tapeworm, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'tapeworm'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/tapeworm <> caves-1623/161/triassic/tapeworm
+> > > > > > - LEGS: 14 (previous: 12914, now:12928)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/tapeworm
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/chaos
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chaos
+> > > > > > - Begin found for:chaos, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'chaos'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/chaos <> caves-1623/161/triassic/chaos
+> > > > > > - LEGS: 21 (previous: 12928, now:12949)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/chaos
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/intrview
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.031 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/intrview
+> > > > > > - Begin found for:interview, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'interview'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:49.031 Reading. parent:caves-1623/161/triassic/intrview <> caves-1623/161/triassic/intrview
+> > > > > > - LEGS: 12 (previous: 12949, now:12961)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/intrview
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/fcr
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/fcr
+> > > > > > - Begin found for:fcr, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fcr'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/fcr <> caves-1623/161/triassic/fcr
+> > > > > > - LEGS: 14 (previous: 12961, now:12975)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/fcr
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/chosspot
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/chosspot
+> > > > > > - Begin found for:chosspot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'chosspot'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/chosspot <> caves-1623/161/triassic/chosspot
+> > > > > > - LEGS: 13 (previous: 12975, now:12988)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/chosspot
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/henricat
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/henricat
+> > > > > > - Begin found for:henricat, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'henricat'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+> > > > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/henricat <> caves-1623/161/triassic/henricat
+> > > > > > - LEGS: 16 (previous: 12988, now:13004)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/henricat
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/ovflow
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/ovflow
+> > > > > > - Begin found for:overflow, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'overflow'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/ovflow <> caves-1623/161/triassic/ovflow
+> > > > > > - LEGS: 6 (previous: 13004, now:13010)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/ovflow
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/eaunat
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/eaunat
+> > > > > > - Begin found for:eaunatlink, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'eaunatlink'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/eaunat <> caves-1623/161/triassic/eaunat
+> > > > > > - LEGS: 1 (previous: 13010, now:13011)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/eaunat
+> > > > > - INCLUDE-go path found, including - caves-1623/161/triassic/scorchio
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/triassic/scorchio
+> > > > > > - Begin found for:scorchio, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'scorchio'
+> > > > > > > - MEM:49.043 Reading. parent:caves-1623/161/triassic/scorchio <> caves-1623/161/triassic/scorchio
+> > > > > > - LEGS: 6 (previous: 13011, now:13017)
+> > > > > - INCLUDE-return from include - caves-1623/161/triassic/scorchio
+> > > > - INCLUDE-return from include - caves-1623/161/triassic/alltrias
+> > > > - INCLUDE-go path found, including - caves-1623/161/phumour/allphs
+> > > > - Match in DB (i) for cave 1623-161.
+> > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/allphs
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/thighs
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.043 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/thighs
+> > > > > > - Begin found for:thighs, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thighs'
+> > > > > > > - MEM:49.051 Reading. parent:caves-1623/161/phumour/thighs <> caves-1623/161/phumour/thighs
+> > > > > > - LEGS: 17 (previous: 13017, now:13034)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/thighs
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/venereal
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/venereal
+> > > > > > - Begin found for:venereal, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'venereal'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/venereal <> caves-1623/161/phumour/venereal
+> > > > > > - LEGS: 11 (previous: 13034, now:13045)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/venereal
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/natural
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/natural
+> > > > > > - Begin found for:natural, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'natural'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/natural <> caves-1623/161/phumour/natural
+> > > > > > - LEGS: 9 (previous: 13045, now:13054)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/natural
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/deadbats
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/deadbats
+> > > > > > - Begin found for:deadbats, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'deadbats'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/deadbats <> caves-1623/161/phumour/deadbats
+> > > > > > - LEGS: 41 (previous: 13054, now:13095)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/deadbats
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/loopy
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/loopy
+> > > > > > - Begin found for:loopy, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'loopy'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/loopy <> caves-1623/161/phumour/loopy
+> > > > > > - LEGS: 8 (previous: 13095, now:13103)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/loopy
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/catwoman
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catwoman
+> > > > > > - Begin found for:catwoman, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'catwoman'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/catwoman <> caves-1623/161/phumour/catwoman
+> > > > > > - LEGS: 16 (previous: 13103, now:13119)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/catwoman
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/wheretwb
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/wheretwb
+> > > > > > - Begin found for:wheretwb, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wheretwb'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/wheretwb <> caves-1623/161/phumour/wheretwb
+> > > > > > - LEGS: 13 (previous: 13119, now:13132)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/wheretwb
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/asturias
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.059 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/asturias
+> > > > > > - Begin found for:asturias, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'asturias'
+> > > > > > > - MEM:49.059 Reading. parent:caves-1623/161/phumour/asturias <> caves-1623/161/phumour/asturias
+> > > > > > - LEGS: 19 (previous: 13132, now:13151)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/asturias
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/catshfts
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.066 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/catshfts
+> > > > > > - Begin found for:shafts1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'shafts1'
+> > > > > > > - MEM:49.066 Reading. parent:caves-1623/161/phumour/catshfts <> caves-1623/161/phumour/catshfts
+> > > > > > - LEGS: 2 (previous: 13151, now:13153)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/catshfts
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/shaftmin
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.066 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/shaftmin
+> > > > > > - Begin found for:shaftmin, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'shaftmin'
+> > > > > > > - MEM:49.066 Reading. parent:caves-1623/161/phumour/shaftmin <> caves-1623/161/phumour/shaftmin
+> > > > > > - LEGS: 7 (previous: 13153, now:13160)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/shaftmin
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/pudding
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.066 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/pudding
+> > > > > > - Begin found for:pudding, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pudding'
+> > > > > > > - MEM:49.066 Reading. parent:caves-1623/161/phumour/pudding <> caves-1623/161/phumour/pudding
+> > > > > > - LEGS: 20 (previous: 13160, now:13180)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/pudding
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/iceland
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.070 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/iceland
+> > > > > > - Begin found for:iceland1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'iceland1'
+> > > > > > > - MEM:49.074 Reading. parent:caves-1623/161/phumour/iceland <> caves-1623/161/phumour/iceland
+> > > > > > - LEGS: 15 (previous: 13180, now:13195)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/iceland
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/turkey
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.074 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/turkey
+> > > > > > - Begin found for:turkey, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'turkey'
+> > > > > > > - MEM:49.074 Reading. parent:caves-1623/161/phumour/turkey <> caves-1623/161/phumour/turkey
+> > > > > > - LEGS: 11 (previous: 13195, now:13206)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/turkey
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/161g
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.074 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161g
+> > > > > > - Begin found for:161g, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '161g'
+> > > > > > > - MEM:49.078 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+> > > > > > - Begin found for:161g_1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '161g_1'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/161/phumour/161g <> caves-1623/161/phumour/161g
+> > > > > > - LEGS: 4 (previous: 13206, now:13210)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/161g
+> > > > > - INCLUDE-go path found, including - caves-1623/161/phumour/161h
+> > > > > - Match in DB (i) for cave 1623-161.
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/161/161 <> caves-1623/161/phumour/161h
+> > > > > > - Begin found for:161h, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '161h'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/161/phumour/161h <> caves-1623/161/phumour/161h
+> > > > > > - LEGS: 11 (previous: 13210, now:13221)
+> > > > > - INCLUDE-return from include - caves-1623/161/phumour/161h
+> > > > - INCLUDE-return from include - caves-1623/161/phumour/allphs
+> > > > - LEGS: 2105 (previous: 11116, now:13221)
+> > > - INCLUDE-return from include - caves-1623/161/161
+> > > - INCLUDE-go path found, including - caves-1623/204/204
+> > > - Match in DB (i) for cave 1623-204.
+> > > > - MEM:49.090 Reading. parent:kataster/1623 <> caves-1623/204/204
+> > > > - Begin found for:204, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '204'
+> > > > > - MEM:49.090 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+> > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > - INCLUDE-go path found, including - caves-1623/204/nearend/nearend
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.090 Reading. parent:caves-1623/204/204 <> caves-1623/204/nearend/nearend
+> > > > > - Begin found for:nearend, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nearend'
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/nearend
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/ent
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/ent
+> > > > > > - Begin found for:ent, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ent'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/ent <> caves-1623/204/nearend/ent
+> > > > > > - LEGS: 39 (previous: 13222, now:13261)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/ent
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/link
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/link
+> > > > > > - Begin found for:link, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'link'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/link <> caves-1623/204/nearend/link
+> > > > > > - LEGS: 2 (previous: 13261, now:13263)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/link
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/junction
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/junction
+> > > > > > - Begin found for:junction, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'junction'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/junction <> caves-1623/204/nearend/junction
+> > > > > > - LEGS: 4 (previous: 13263, now:13267)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/junction
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/updip
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/updip
+> > > > > > - Begin found for:updip, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'updip'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/updip <> caves-1623/204/nearend/updip
+> > > > > > - LEGS: 11 (previous: 13267, now:13278)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/updip
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/stitchthis
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/stitchthis
+> > > > > > - Begin found for:stitchthis, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stitchthis'
+> > > > > > > - MEM:49.090 Reading. parent:caves-1623/204/nearend/stitchthis <> caves-1623/204/nearend/stitchthis
+> > > > > > - LEGS: 5 (previous: 13278, now:13283)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/stitchthis
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/kingcarbide
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.094 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kingcarbide
+> > > > > > - Begin found for:kingcarbide, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'kingcarbide'
+> > > > > > > - MEM:49.098 Reading. parent:caves-1623/204/nearend/kingcarbide <> caves-1623/204/nearend/kingcarbide
+> > > > > > - LEGS: 10 (previous: 13283, now:13293)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/kingcarbide
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/kidney
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.102 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/kidney
+> > > > > > - Begin found for:kidney, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'kidney'
+> > > > > > > - MEM:49.102 Reading. parent:caves-1623/204/nearend/kidney <> caves-1623/204/nearend/kidney
+> > > > > > - LEGS: 8 (previous: 13293, now:13301)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/kidney
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/atob
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.102 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/atob
+> > > > > > - Begin found for:atob, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'atob'
+> > > > > > > - MEM:49.102 Reading. parent:caves-1623/204/nearend/atob <> caves-1623/204/nearend/atob
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 3 (previous: 13301, now:13304)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/atob
+> > > > > - INCLUDE-go path found, including - caves-1623/204/nearend/deathglory
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.102 Reading. parent:caves-1623/204/nearend/nearend <> caves-1623/204/nearend/deathglory
+> > > > > > - Begin found for:deathglory, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'deathglory'
+> > > > > > > - MEM:49.102 Reading. parent:caves-1623/204/nearend/deathglory <> caves-1623/204/nearend/deathglory
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 13 (previous: 13304, now:13317)
+> > > > > - INCLUDE-return from include - caves-1623/204/nearend/deathglory
+> > > > > - LEGS: 95 (previous: 13222, now:13317)
+> > > > - INCLUDE-return from include - caves-1623/204/nearend/nearend
+> > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/midlevel
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.105 Reading. parent:caves-1623/204/204 <> caves-1623/204/midlevel/midlevel
+> > > > > - Begin found for:midlevel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'midlevel'
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/midlevel
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pendulum
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pendulum
+> > > > > > - Begin found for:pendulum, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pendulum'
+> > > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/pendulum <> caves-1623/204/midlevel/pendulum
+> > > > > > - LEGS: 20 (previous: 13317, now:13337)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pendulum
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/veined
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined
+> > > > > > - Begin found for:veined, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'veined'
+> > > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/veined <> caves-1623/204/midlevel/veined
+> > > > > > - LEGS: 16 (previous: 13337, now:13353)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/veined
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/110aday
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday
+> > > > > > - Begin found for:110aday, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '110aday'
+> > > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/110aday <> caves-1623/204/midlevel/110aday
+> > > > > > - LEGS: 24 (previous: 13353, now:13377)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/110aday
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/rainbow
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/rainbow
+> > > > > > - Begin found for:rainbow, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rainbow'
+> > > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/rainbow <> caves-1623/204/midlevel/rainbow
+> > > > > > - LEGS: 15 (previous: 13377, now:13392)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/rainbow
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/phreatic
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phreatic
+> > > > > > - Begin found for:phreatic, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'phreatic'
+> > > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/phreatic <> caves-1623/204/midlevel/phreatic
+> > > > > > - LEGS: 7 (previous: 13392, now:13399)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/phreatic
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/aday2bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/aday2bidet
+> > > > > > - Begin found for:aday2bidet, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'aday2bidet'
+> > > > > > > - MEM:49.105 Reading. parent:caves-1623/204/midlevel/aday2bidet <> caves-1623/204/midlevel/aday2bidet
+> > > > > > - LEGS: 5 (previous: 13399, now:13404)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/aday2bidet
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/110_bidet_b
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.113 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet_b
+> > > > > > - Begin found for:110_bidet_b, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '110_bidet_b'
+> > > > > > > - MEM:49.113 Reading. parent:caves-1623/204/midlevel/110_bidet_b <> caves-1623/204/midlevel/110_bidet_b
+> > > > > > - LEGS: 4 (previous: 13404, now:13408)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/110_bidet_b
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/veined_deadend
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.113 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/veined_deadend
+> > > > > > - Begin found for:veined_deadend, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'veined_deadend'
+> > > > > > > - MEM:49.113 Reading. parent:caves-1623/204/midlevel/veined_deadend <> caves-1623/204/midlevel/veined_deadend
+> > > > > > - LEGS: 3 (previous: 13408, now:13411)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/veined_deadend
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/110_bidet
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.117 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110_bidet
+> > > > > > - Begin found for:110_bidet, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '110_bidet'
+> > > > > > > - MEM:49.121 Reading. parent:caves-1623/204/midlevel/110_bidet <> caves-1623/204/midlevel/110_bidet
+> > > > > > - LEGS: 13 (previous: 13411, now:13424)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/110_bidet
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/marble_run
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/marble_run
+> > > > > > - Begin found for:marble_run, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'marble_run'
+> > > > > > > - MEM:49.125 Reading. parent:caves-1623/204/midlevel/marble_run <> caves-1623/204/midlevel/marble_run
+> > > > > > - LEGS: 9 (previous: 13424, now:13433)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/marble_run
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/botofwolpertinger1
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.125 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger1
+> > > > > > - Begin found for:botofwolpertinger1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'botofwolpertinger1'
+> > > > > > > - MEM:49.129 Reading. parent:caves-1623/204/midlevel/botofwolpertinger1 <> caves-1623/204/midlevel/botofwolpertinger1
+> > > > > > - LEGS: 6 (previous: 13433, now:13439)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/botofwolpertinger1
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/botofwolpertinger2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.129 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/botofwolpertinger2
+> > > > > > - Begin found for:botofwolpertinger2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'botofwolpertinger2'
+> > > > > > > - MEM:49.129 Reading. parent:caves-1623/204/midlevel/botofwolpertinger2 <> caves-1623/204/midlevel/botofwolpertinger2
+> > > > > > - LEGS: 10 (previous: 13439, now:13449)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/botofwolpertinger2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/merry
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/merry
+> > > > > > - Begin found for:merry, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'merry'
+> > > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/merry <> caves-1623/204/midlevel/merry
+> > > > > > - LEGS: 18 (previous: 13449, now:13467)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/merry
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/recycled
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/recycled
+> > > > > > - Begin found for:recycled, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'recycled'
+> > > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/recycled <> caves-1623/204/midlevel/recycled
+> > > > > > - LEGS: 8 (previous: 13467, now:13475)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/recycled
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/upat45deg
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg
+> > > > > > - Begin found for:upat45deg, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'upat45deg'
+> > > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/upat45deg <> caves-1623/204/midlevel/upat45deg
+> > > > > > - LEGS: 14 (previous: 13475, now:13489)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/upat45deg
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/110aday2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/110aday2
+> > > > > > - Begin found for:110aday2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '110aday2'
+> > > > > > > - MEM:49.133 Reading. parent:caves-1623/204/midlevel/110aday2 <> caves-1623/204/midlevel/110aday2
+> > > > > > - LEGS: 3 (previous: 13489, now:13492)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/110aday2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/upat45deg2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.137 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/upat45deg2
+> > > > > > - Begin found for:upat45deg2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'upat45deg2'
+> > > > > > > - MEM:49.137 Reading. parent:caves-1623/204/midlevel/upat45deg2 <> caves-1623/204/midlevel/upat45deg2
+> > > > > > - LEGS: 1 (previous: 13492, now:13493)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/upat45deg2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pussyprance
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.141 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance
+> > > > > > - Begin found for:pussyprance, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pussyprance'
+> > > > > > > - MEM:49.141 Reading. parent:caves-1623/204/midlevel/pussyprance <> caves-1623/204/midlevel/pussyprance
+> > > > > > - LEGS: 29 (previous: 13493, now:13522)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pussyprance
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pussyprance2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyprance2
+> > > > > > - Begin found for:pussyprance2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pussyprance2'
+> > > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/pussyprance2 <> caves-1623/204/midlevel/pussyprance2
+> > > > > > - LEGS: 19 (previous: 13522, now:13541)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pussyprance2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/catflap
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap
+> > > > > > - Begin found for:catflap, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'catflap'
+> > > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/catflap <> caves-1623/204/midlevel/catflap
+> > > > > > - LEGS: 22 (previous: 13541, now:13563)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/catflap
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/catflap2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap2
+> > > > > > - Begin found for:catflap2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'catflap2'
+> > > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/catflap2 <> caves-1623/204/midlevel/catflap2
+> > > > > > - LEGS: 5 (previous: 13563, now:13568)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/catflap2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/catflap3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflap3
+> > > > > > - Begin found for:catflap3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'catflap3'
+> > > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/catflap3 <> caves-1623/204/midlevel/catflap3
+> > > > > > - LEGS: 2 (previous: 13568, now:13570)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/catflap3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/paintedlady
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/paintedlady
+> > > > > > - Begin found for:paintedlady, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'paintedlady'
+> > > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/paintedlady <> caves-1623/204/midlevel/paintedlady
+> > > > > > - LEGS: 5 (previous: 13570, now:13575)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/paintedlady
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pussinbolts
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussinbolts
+> > > > > > - Begin found for:pussinbolts, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pussinbolts'
+> > > > > > > - MEM:49.145 Reading. parent:caves-1623/204/midlevel/pussinbolts <> caves-1623/204/midlevel/pussinbolts
+> > > > > > - LEGS: 5 (previous: 13575, now:13580)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pussinbolts
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/ontheprowl
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.156 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/ontheprowl
+> > > > > > - Begin found for:ontheprowl, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ontheprowl'
+> > > > > > > - MEM:49.156 Reading. parent:caves-1623/204/midlevel/ontheprowl <> caves-1623/204/midlevel/ontheprowl
+> > > > > > - LEGS: 17 (previous: 13580, now:13597)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/ontheprowl
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/snowleopard
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.156 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/snowleopard
+> > > > > > - Begin found for:snowleopard, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snowleopard'
+> > > > > > > - MEM:49.156 Reading. parent:caves-1623/204/midlevel/snowleopard <> caves-1623/204/midlevel/snowleopard
+> > > > > > - LEGS: 5 (previous: 13597, now:13602)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/snowleopard
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/theowlandthepussycat
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/theowlandthepussycat
+> > > > > > - Begin found for:theowlandthepussycat, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'theowlandthepussycat'
+> > > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/theowlandthepussycat <> caves-1623/204/midlevel/theowlandthepussycat
+> > > > > > - LEGS: 3 (previous: 13602, now:13605)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/theowlandthepussycat
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/fatcat
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat
+> > > > > > - Begin found for:fatcat, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fatcat'
+> > > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/fatcat <> caves-1623/204/midlevel/fatcat
+> > > > > > - LEGS: 7 (previous: 13605, now:13612)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/fatcat
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/fatcat2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat2
+> > > > > > - Begin found for:fatcat2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fatcat2'
+> > > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/fatcat2 <> caves-1623/204/midlevel/fatcat2
+> > > > > > - LEGS: 10 (previous: 13612, now:13622)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/fatcat2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/fatcat3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.160 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/fatcat3
+> > > > > > - Begin found for:fatcat3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fatcat3'
+> > > > > > > - MEM:49.164 Reading. parent:caves-1623/204/midlevel/fatcat3 <> caves-1623/204/midlevel/fatcat3
+> > > > > > - LEGS: 5 (previous: 13622, now:13627)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/fatcat3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/somethingelse
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.164 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/somethingelse
+> > > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/catgut
+> > > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > > - MEM:49.164 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catgut
+> > > > > > > - Begin found for:catgut, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'catgut'
+> > > > > > > > - MEM:49.172 Reading. parent:caves-1623/204/midlevel/catgut <> caves-1623/204/midlevel/catgut
+> > > > > > > - LEGS: 14 (previous: 13627, now:13641)
+> > > > > > - INCLUDE-return from include - caves-1623/204/midlevel/catgut
+> > > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/cirquedusoleil
+> > > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > > - MEM:49.172 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/cirquedusoleil
+> > > > > > > - Begin found for:cirquedusoleil, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'cirquedusoleil'
+> > > > > > > > - MEM:49.172 Reading. parent:caves-1623/204/midlevel/cirquedusoleil <> caves-1623/204/midlevel/cirquedusoleil
+> > > > > > > - LEGS: 9 (previous: 13641, now:13650)
+> > > > > > - INCLUDE-return from include - caves-1623/204/midlevel/cirquedusoleil
+> > > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pussyriot
+> > > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pussyriot
+> > > > > > > - Begin found for:pussyriot, creating new SurvexBlock
+> > > > > > > - BLOCK-enter nested *begin/*end block: 'pussyriot'
+> > > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/pussyriot <> caves-1623/204/midlevel/pussyriot
+> > > > > > > - LEGS: 13 (previous: 13650, now:13663)
+> > > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pussyriot
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/somethingelse
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/phat2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/phat2
+> > > > > > - Begin found for:phat2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'phat2'
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/phat2 <> caves-1623/204/midlevel/phat2
+> > > > > > - LEGS: 10 (previous: 13663, now:13673)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/phat2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/catflea
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/catflea
+> > > > > > - Begin found for:catflea, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'catflea'
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/catflea <> caves-1623/204/midlevel/catflea
+> > > > > > - LEGS: 8 (previous: 13673, now:13681)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/catflea
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/dogdays
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays
+> > > > > > - Begin found for:dogdays, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dogdays'
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/dogdays <> caves-1623/204/midlevel/dogdays
+> > > > > > - LEGS: 4 (previous: 13681, now:13685)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/dogdays
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/dogdays2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays2
+> > > > > > - Begin found for:dogdays2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dogdays2'
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/dogdays2 <> caves-1623/204/midlevel/dogdays2
+> > > > > > - LEGS: 14 (previous: 13685, now:13699)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/dogdays2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/farfromsupport
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/farfromsupport
+> > > > > > - Begin found for:farfromsupport, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'farfromsupport'
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/farfromsupport <> caves-1623/204/midlevel/farfromsupport
+> > > > > > - LEGS: 5 (previous: 13699, now:13704)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/farfromsupport
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/dogdays3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/dogdays3
+> > > > > > - Begin found for:dogdays3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dogdays3'
+> > > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/dogdays3 <> caves-1623/204/midlevel/dogdays3
+> > > > > > - LEGS: 90 (previous: 13704, now:13794)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/dogdays3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/bigboulders
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.184 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/bigboulders
+> > > > > > - Begin found for:bigboulders, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bigboulders'
+> > > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/bigboulders <> caves-1623/204/midlevel/bigboulders
+> > > > > > - LEGS: 5 (previous: 13794, now:13799)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/bigboulders
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/BoulderChamber
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber
+> > > > > > - Begin found for:boulderchamber, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'boulderchamber'
+> > > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/BoulderChamber <> caves-1623/204/midlevel/BoulderChamber
+> > > > > > - LEGS: 26 (previous: 13799, now:13825)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/BoulderChamber
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > > - Begin found for:boulderchamber_upper, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'boulderchamber_upper'
+> > > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/BoulderChamber_upper <> caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > > - LEGS: 64 (previous: 13825, now:13889)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/BoulderChamber_upper
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > > - Begin found for:downfrombigboulderchamber, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'downfrombigboulderchamber'
+> > > > > > > - MEM:49.188 Reading. parent:caves-1623/204/midlevel/downfrombigboulderchamber <> caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > > - LEGS: 17 (previous: 13889, now:13906)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/downfrombigboulderchamber
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pretzelpassage1
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage1
+> > > > > > - Begin found for:pretzelpassage1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pretzelpassage1'
+> > > > > > > - MEM:49.191 Reading. parent:caves-1623/204/midlevel/pretzelpassage1 <> caves-1623/204/midlevel/pretzelpassage1
+> > > > > > - LEGS: 20 (previous: 13906, now:13926)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pretzelpassage1
+> > > > > - INCLUDE-go path found, including - caves-1623/204/midlevel/pretzelpassage2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/midlevel/midlevel <> caves-1623/204/midlevel/pretzelpassage2
+> > > > > > - Begin found for:pretzelpassage2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pretzelpassage2'
+> > > > > > > - MEM:49.191 Reading. parent:caves-1623/204/midlevel/pretzelpassage2 <> caves-1623/204/midlevel/pretzelpassage2
+> > > > > > - LEGS: 12 (previous: 13926, now:13938)
+> > > > > - INCLUDE-return from include - caves-1623/204/midlevel/pretzelpassage2
+> > > > > - LEGS: 621 (previous: 13317, now:13938)
+> > > > - INCLUDE-return from include - caves-1623/204/midlevel/midlevel
+> > > > - INCLUDE-go path found, including - caves-1623/204/domes/domes
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.191 Reading. parent:caves-1623/204/204 <> caves-1623/204/domes/domes
+> > > > > - Begin found for:domes, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'domes'
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/domes
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/millennium
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/millennium
+> > > > > > - Begin found for:millennium, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'millennium'
+> > > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/millennium <> caves-1623/204/domes/millennium
+> > > > > > - LEGS: 40 (previous: 13938, now:13978)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/millennium
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/pleasuredome
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/pleasuredome
+> > > > > > - Begin found for:pleasuredome, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pleasuredome'
+> > > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/pleasuredome <> caves-1623/204/domes/pleasuredome
+> > > > > > - LEGS: 16 (previous: 13978, now:13994)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/pleasuredome
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/loop22
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/loop22
+> > > > > > - Begin found for:loop22, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'loop22'
+> > > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/loop22 <> caves-1623/204/domes/loop22
+> > > > > > - LEGS: 3 (previous: 13994, now:13997)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/loop22
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/phat
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/phat
+> > > > > > - Begin found for:phat, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'phat'
+> > > > > > > - MEM:49.191 Reading. parent:caves-1623/204/domes/phat <> caves-1623/204/domes/phat
+> > > > > > - LEGS: 9 (previous: 13997, now:14006)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/phat
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/micturation
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.195 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/micturation
+> > > > > > - Begin found for:micturation, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'micturation'
+> > > > > > > - MEM:49.195 Reading. parent:caves-1623/204/domes/micturation <> caves-1623/204/domes/micturation
+> > > > > > - LEGS: 8 (previous: 14006, now:14014)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/micturation
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/obese
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.199 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/obese
+> > > > > > - Begin found for:obese, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'obese'
+> > > > > > > - MEM:49.199 Reading. parent:caves-1623/204/domes/obese <> caves-1623/204/domes/obese
+> > > > > > - LEGS: 3 (previous: 14014, now:14017)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/obese
+> > > > > - INCLUDE-go path found, including - caves-1623/204/domes/allroads
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.199 Reading. parent:caves-1623/204/domes/domes <> caves-1623/204/domes/allroads
+> > > > > > - Begin found for:allroads, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'allroads'
+> > > > > > > - MEM:49.199 Reading. parent:caves-1623/204/domes/allroads <> caves-1623/204/domes/allroads
+> > > > > > - LEGS: 6 (previous: 14017, now:14023)
+> > > > > - INCLUDE-return from include - caves-1623/204/domes/allroads
+> > > > > - LEGS: 85 (previous: 13938, now:14023)
+> > > > - INCLUDE-return from include - caves-1623/204/domes/domes
+> > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/deepsouth
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.199 Reading. parent:caves-1623/204/204 <> caves-1623/204/deepsouth/deepsouth
+> > > > > - Begin found for:deepsouth, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'deepsouth'
+> > > > > > - MEM:49.199 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/deepsouth
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/ariston1
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.199 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston1
+> > > > > > - Begin found for:ariston1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ariston1'
+> > > > > > > - MEM:49.199 Reading. parent:caves-1623/204/deepsouth/ariston1 <> caves-1623/204/deepsouth/ariston1
+> > > > > > - LEGS: 5 (previous: 14023, now:14028)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/ariston1
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/ariston2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.203 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/ariston2
+> > > > > > - Begin found for:ariston2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ariston2'
+> > > > > > > - MEM:49.203 Reading. parent:caves-1623/204/deepsouth/ariston2 <> caves-1623/204/deepsouth/ariston2
+> > > > > > - LEGS: 26 (previous: 14028, now:14054)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/ariston2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/fledermaus
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.207 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/fledermaus
+> > > > > > - Begin found for:fledermaus, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fledermaus'
+> > > > > > > - MEM:49.211 Reading. parent:caves-1623/204/deepsouth/fledermaus <> caves-1623/204/deepsouth/fledermaus
+> > > > > > - LEGS: 13 (previous: 14054, now:14067)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/fledermaus
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/kiwisuit
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.219 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/kiwisuit
+> > > > > > - Begin found for:kiwisuit, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'kiwisuit'
+> > > > > > > - MEM:49.219 Reading. parent:caves-1623/204/deepsouth/kiwisuit <> caves-1623/204/deepsouth/kiwisuit
+> > > > > > - LEGS: 13 (previous: 14067, now:14080)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/kiwisuit
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor1
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.219 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor1
+> > > > > > - Begin found for:razor1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor1'
+> > > > > > > - MEM:49.219 Reading. parent:caves-1623/204/deepsouth/razor1 <> caves-1623/204/deepsouth/razor1
+> > > > > > - LEGS: 29 (previous: 14080, now:14109)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor1
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.223 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor2
+> > > > > > - Begin found for:razor2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor2'
+> > > > > > > - MEM:49.223 Reading. parent:caves-1623/204/deepsouth/razor2 <> caves-1623/204/deepsouth/razor2
+> > > > > > - LEGS: 13 (previous: 14109, now:14122)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.223 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor3
+> > > > > > - Begin found for:razor3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor3'
+> > > > > > > - MEM:49.223 Reading. parent:caves-1623/204/deepsouth/razor3 <> caves-1623/204/deepsouth/razor3
+> > > > > > - LEGS: 4 (previous: 14122, now:14126)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor4
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.227 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor4
+> > > > > > - Begin found for:razor4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor4'
+> > > > > > > - MEM:49.227 Reading. parent:caves-1623/204/deepsouth/razor4 <> caves-1623/204/deepsouth/razor4
+> > > > > > - LEGS: 12 (previous: 14126, now:14138)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor4
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor5
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.230 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor5
+> > > > > > - Begin found for:razor5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor5'
+> > > > > > > - MEM:49.230 Reading. parent:caves-1623/204/deepsouth/razor5 <> caves-1623/204/deepsouth/razor5
+> > > > > > - LEGS: 15 (previous: 14138, now:14153)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor5
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor6
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.230 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor6
+> > > > > > - Begin found for:razor6, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor6'
+> > > > > > > - MEM:49.230 Reading. parent:caves-1623/204/deepsouth/razor6 <> caves-1623/204/deepsouth/razor6
+> > > > > > - LEGS: 1 (previous: 14153, now:14154)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor6
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor7
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.230 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor7
+> > > > > > - Begin found for:razor7, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor7'
+> > > > > > > - MEM:49.230 Reading. parent:caves-1623/204/deepsouth/razor7 <> caves-1623/204/deepsouth/razor7
+> > > > > > - LEGS: 26 (previous: 14154, now:14180)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor7
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor8
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.234 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor8
+> > > > > > - Begin found for:razor8, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor8'
+> > > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/razor8 <> caves-1623/204/deepsouth/razor8
+> > > > > > - LEGS: 20 (previous: 14180, now:14200)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor8
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor9
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor9
+> > > > > > - Begin found for:razor9, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor9'
+> > > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/razor9 <> caves-1623/204/deepsouth/razor9
+> > > > > > - LEGS: 21 (previous: 14200, now:14221)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor9
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor10
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor10
+> > > > > > - Begin found for:razor10, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor10'
+> > > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/razor10 <> caves-1623/204/deepsouth/razor10
+> > > > > > - LEGS: 21 (previous: 14221, now:14242)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor10
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor11
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor11
+> > > > > > - Begin found for:razor11, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor11'
+> > > > > > > - MEM:49.238 Reading. parent:caves-1623/204/deepsouth/razor11 <> caves-1623/204/deepsouth/razor11
+> > > > > > - LEGS: 14 (previous: 14242, now:14256)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor11
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/razor12
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.242 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/razor12
+> > > > > > - Begin found for:razor12, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'razor12'
+> > > > > > > - MEM:49.242 Reading. parent:caves-1623/204/deepsouth/razor12 <> caves-1623/204/deepsouth/razor12
+> > > > > > - LEGS: 15 (previous: 14256, now:14271)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/razor12
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/silkroad
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.242 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad
+> > > > > > - Begin found for:silkroad, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'silkroad'
+> > > > > > > - MEM:49.242 Reading. parent:caves-1623/204/deepsouth/silkroad <> caves-1623/204/deepsouth/silkroad
+> > > > > > - LEGS: 30 (previous: 14271, now:14301)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/silkroad
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/silkroad2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.250 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkroad2
+> > > > > > - Begin found for:silkroad2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'silkroad2'
+> > > > > > > - MEM:49.250 Reading. parent:caves-1623/204/deepsouth/silkroad2 <> caves-1623/204/deepsouth/silkroad2
+> > > > > > - LEGS: 22 (previous: 14301, now:14323)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/silkroad2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/entertheflagon
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.250 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/entertheflagon
+> > > > > > - Begin found for:entertheflagon, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'entertheflagon'
+> > > > > > > - MEM:49.250 Reading. parent:caves-1623/204/deepsouth/entertheflagon <> caves-1623/204/deepsouth/entertheflagon
+> > > > > > - LEGS: 13 (previous: 14323, now:14336)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/entertheflagon
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/silkworm
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.258 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/silkworm
+> > > > > > - Begin found for:silkworm, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'silkworm'
+> > > > > > > - MEM:49.258 Reading. parent:caves-1623/204/deepsouth/silkworm <> caves-1623/204/deepsouth/silkworm
+> > > > > > - LEGS: 4 (previous: 14336, now:14340)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/silkworm
+> > > > > - INCLUDE-go path found, including - caves-1623/204/deepsouth/crouching
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.258 Reading. parent:caves-1623/204/deepsouth/deepsouth <> caves-1623/204/deepsouth/crouching
+> > > > > > - Begin found for:crouching, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'crouching'
+> > > > > > > - MEM:49.262 Reading. parent:caves-1623/204/deepsouth/crouching <> caves-1623/204/deepsouth/crouching
+> > > > > > - LEGS: 22 (previous: 14340, now:14362)
+> > > > > - INCLUDE-return from include - caves-1623/204/deepsouth/crouching
+> > > > > - LEGS: 339 (previous: 14023, now:14362)
+> > > > - INCLUDE-return from include - caves-1623/204/deepsouth/deepsouth
+> > > > - INCLUDE-go path found, including - caves-1623/204/trunk/trunk
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.266 Reading. parent:caves-1623/204/204 <> caves-1623/204/trunk/trunk
+> > > > > - Begin found for:trunk, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'trunk'
+> > > > > > - MEM:49.266 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/trunk
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/nopainnogain
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.266 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/nopainnogain
+> > > > > > - Begin found for:nopainnogain, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'nopainnogain'
+> > > > > > > - MEM:49.273 Reading. parent:caves-1623/204/trunk/nopainnogain <> caves-1623/204/trunk/nopainnogain
+> > > > > > - LEGS: 24 (previous: 14362, now:14386)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/nopainnogain
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/insig
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.281 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig
+> > > > > > - Begin found for:insig, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'insig'
+> > > > > > > - MEM:49.281 Reading. parent:caves-1623/204/trunk/insig <> caves-1623/204/trunk/insig
+> > > > > > - LEGS: 7 (previous: 14386, now:14393)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/insig
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/bonsai
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/bonsai
+> > > > > > - Begin found for:bonsai, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bonsai'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/bonsai <> caves-1623/204/trunk/bonsai
+> > > > > > - LEGS: 6 (previous: 14393, now:14399)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/bonsai
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/treeumphant
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeumphant
+> > > > > > - Begin found for:treeumphant, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'treeumphant'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/treeumphant <> caves-1623/204/trunk/treeumphant
+> > > > > > - LEGS: 27 (previous: 14399, now:14426)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/treeumphant
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/colonade
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/colonade
+> > > > > > - Begin found for:colonade, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'colonade'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/colonade <> caves-1623/204/trunk/colonade
+> > > > > > - LEGS: 8 (previous: 14426, now:14434)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/colonade
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/scroat
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/scroat
+> > > > > > - Begin found for:scroat, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'scroat'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/scroat <> caves-1623/204/trunk/scroat
+> > > > > > - LEGS: 4 (previous: 14434, now:14438)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/scroat
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/crowningglory
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory
+> > > > > > - Begin found for:crowningglory, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'crowningglory'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/crowningglory <> caves-1623/204/trunk/crowningglory
+> > > > > > - LEGS: 40 (previous: 14438, now:14478)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/crowningglory
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/sucker
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sucker
+> > > > > > - Begin found for:sucker, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sucker'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/sucker <> caves-1623/204/trunk/sucker
+> > > > > > - LEGS: 30 (previous: 14478, now:14508)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/sucker
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/csballs
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/csballs
+> > > > > > - Begin found for:csballs, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'csballs'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/csballs <> caves-1623/204/trunk/csballs
+> > > > > > - LEGS: 13 (previous: 14508, now:14521)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/csballs
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/moreballs
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/moreballs
+> > > > > > - Begin found for:moreballs, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'moreballs'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/moreballs <> caves-1623/204/trunk/moreballs
+> > > > > > - LEGS: 22 (previous: 14521, now:14543)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/moreballs
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/backpassage
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/backpassage
+> > > > > > - Begin found for:backpassage, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'backpassage'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/backpassage <> caves-1623/204/trunk/backpassage
+> > > > > > - LEGS: 6 (previous: 14543, now:14549)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/backpassage
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/treeslope
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/treeslope
+> > > > > > - Begin found for:treeslope, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'treeslope'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/treeslope <> caves-1623/204/trunk/treeslope
+> > > > > > - LEGS: 4 (previous: 14549, now:14553)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/treeslope
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/tree15c
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree15c
+> > > > > > - Begin found for:tree15c, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'tree15c'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/tree15c <> caves-1623/204/trunk/tree15c
+> > > > > > - LEGS: 3 (previous: 14553, now:14556)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/tree15c
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/helterskelter
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterskelter
+> > > > > > - Begin found for:helterskelter, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'helterskelter'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/helterskelter <> caves-1623/204/trunk/helterskelter
+> > > > > > - LEGS: 9 (previous: 14556, now:14565)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/helterskelter
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/gknodel
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/gknodel
+> > > > > > - Begin found for:gknodel, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gknodel'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+> > > > > > - Begin found for:part1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'part1'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/gknodel <> caves-1623/204/trunk/gknodel
+> > > > > > - LEGS: 9 (previous: 14565, now:14574)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/gknodel
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/drillingdelight
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/drillingdelight
+> > > > > > - Begin found for:drillingdelight, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'drillingdelight'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/drillingdelight <> caves-1623/204/trunk/drillingdelight
+> > > > > > - LEGS: 8 (previous: 14574, now:14582)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/drillingdelight
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/insig2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2
+> > > > > > - Begin found for:insig2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'insig2'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/insig2 <> caves-1623/204/trunk/insig2
+> > > > > > - LEGS: 8 (previous: 14582, now:14590)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/insig2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/flopsy
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/flopsy
+> > > > > > - Begin found for:flopsy, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'flopsy'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/flopsy <> caves-1623/204/trunk/flopsy
+> > > > > > - LEGS: 7 (previous: 14590, now:14597)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/flopsy
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/greatoak
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak
+> > > > > > - Begin found for:greatoak, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'greatoak'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/greatoak <> caves-1623/204/trunk/greatoak
+> > > > > > - LEGS: 5 (previous: 14597, now:14602)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/greatoak
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/tree2glory
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/tree2glory
+> > > > > > - Begin found for:tree2glory, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'tree2glory'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/tree2glory <> caves-1623/204/trunk/tree2glory
+> > > > > > - LEGS: 8 (previous: 14602, now:14610)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/tree2glory
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/sandpit
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit
+> > > > > > - Begin found for:sandpit, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sandpit'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/sandpit <> caves-1623/204/trunk/sandpit
+> > > > > > - LEGS: 42 (previous: 14610, now:14652)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/sandpit
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/helterdig
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/helterdig
+> > > > > > - Begin found for:helterdig, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'helterdig'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/helterdig <> caves-1623/204/trunk/helterdig
+> > > > > > - LEGS: 4 (previous: 14652, now:14656)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/helterdig
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/dontstep
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dontstep
+> > > > > > - Begin found for:dontstep, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dontstep'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/dontstep <> caves-1623/204/trunk/dontstep
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 13 (previous: 14656, now:14669)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/dontstep
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/insig2rhino
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/insig2rhino
+> > > > > > - Begin found for:insig2rhino, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'insig2rhino'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/insig2rhino <> caves-1623/204/trunk/insig2rhino
+> > > > > > - LEGS: 4 (previous: 14669, now:14673)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/insig2rhino
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/twiglets
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/twiglets
+> > > > > > - Begin found for:twiglets, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'twiglets'
+> > > > > > > - MEM:49.285 Reading. parent:caves-1623/204/trunk/twiglets <> caves-1623/204/trunk/twiglets
+> > > > > > - LEGS: 14 (previous: 14673, now:14687)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/twiglets
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/stageleft
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.297 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/stageleft
+> > > > > > - Begin found for:stageleft, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stageleft'
+> > > > > > > - MEM:49.297 Reading. parent:caves-1623/204/trunk/stageleft <> caves-1623/204/trunk/stageleft
+> > > > > > - LEGS: 7 (previous: 14687, now:14694)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/stageleft
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/goesser
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.297 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser
+> > > > > > - Begin found for:goesser, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'goesser'
+> > > > > > > - MEM:49.297 Reading. parent:caves-1623/204/trunk/goesser <> caves-1623/204/trunk/goesser
+> > > > > > - LEGS: 10 (previous: 14694, now:14704)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/goesser
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/greatoak2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/greatoak2
+> > > > > > - Begin found for:greatoak2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'greatoak2'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/greatoak2 <> caves-1623/204/trunk/greatoak2
+> > > > > > - LEGS: 1 (previous: 14704, now:14705)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/greatoak2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/riverdance
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance
+> > > > > > - Begin found for:riverdance, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'riverdance'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/riverdance <> caves-1623/204/trunk/riverdance
+> > > > > > - LEGS: 8 (previous: 14705, now:14713)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/riverdance
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/riverdance2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance2
+> > > > > > - Begin found for:riverdance2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'riverdance2'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/riverdance2 <> caves-1623/204/trunk/riverdance2
+> > > > > > - LEGS: 5 (previous: 14713, now:14718)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/riverdance2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/riverdance3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/riverdance3
+> > > > > > - Begin found for:riverdance3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'riverdance3'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/riverdance3 <> caves-1623/204/trunk/riverdance3
+> > > > > > - LEGS: 15 (previous: 14718, now:14733)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/riverdance3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/fingerbang
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fingerbang
+> > > > > > - Begin found for:fingerbang, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fingerbang'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/fingerbang <> caves-1623/204/trunk/fingerbang
+> > > > > > - LEGS: 6 (previous: 14733, now:14739)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/fingerbang
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/fblink
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/fblink
+> > > > > > - Begin found for:fblink, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fblink'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/fblink <> caves-1623/204/trunk/fblink
+> > > > > > - LEGS: 1 (previous: 14739, now:14740)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/fblink
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/dutchelm
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm
+> > > > > > - Begin found for:dutchelm, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dutchelm'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/dutchelm <> caves-1623/204/trunk/dutchelm
+> > > > > > - LEGS: 12 (previous: 14740, now:14752)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/dutchelm
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/dutchelm2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/dutchelm2
+> > > > > > - Begin found for:dutchelm2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dutchelm2'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/dutchelm2 <> caves-1623/204/trunk/dutchelm2
+> > > > > > - LEGS: 2 (previous: 14752, now:14754)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/dutchelm2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/wotnosurvey
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wotnosurvey
+> > > > > > - Begin found for:wotnosurvey, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wotnosurvey'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/wotnosurvey <> caves-1623/204/trunk/wotnosurvey
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 5 (previous: 14754, now:14759)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/wotnosurvey
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/goesser2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser2
+> > > > > > - Begin found for:goesser2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'goesser2'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/goesser2 <> caves-1623/204/trunk/goesser2
+> > > > > > - LEGS: 2 (previous: 14759, now:14761)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/goesser2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/crowningglory2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory2
+> > > > > > - Begin found for:crowningglory2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'crowningglory2'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/crowningglory2 <> caves-1623/204/trunk/crowningglory2
+> > > > > > - LEGS: 10 (previous: 14761, now:14771)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/crowningglory2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/crowningglory3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/crowningglory3
+> > > > > > - Begin found for:crowningglory3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'crowningglory3'
+> > > > > > > - MEM:49.301 Reading. parent:caves-1623/204/trunk/crowningglory3 <> caves-1623/204/trunk/crowningglory3
+> > > > > > - LEGS: 3 (previous: 14771, now:14774)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/crowningglory3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/11sr
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/11sr
+> > > > > > - Begin found for:11sr, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '11sr'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/11sr <> caves-1623/204/trunk/11sr
+> > > > > > - LEGS: 23 (previous: 14774, now:14797)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/11sr
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/swisscheese
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/swisscheese
+> > > > > > - Begin found for:swisscheese, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swisscheese'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/swisscheese <> caves-1623/204/trunk/swisscheese
+> > > > > > - LEGS: 21 (previous: 14797, now:14818)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/swisscheese
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/wetdry
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/wetdry
+> > > > > > - Begin found for:wetdry, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wetdry'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/wetdry <> caves-1623/204/trunk/wetdry
+> > > > > > - LEGS: 8 (previous: 14818, now:14826)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/wetdry
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/goesser3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goesser3
+> > > > > > - Begin found for:goesser3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'goesser3'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/goesser3 <> caves-1623/204/trunk/goesser3
+> > > > > > - LEGS: 2 (previous: 14826, now:14828)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/goesser3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/godonlyknows
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/godonlyknows
+> > > > > > - Begin found for:godonlyknows, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'godonlyknows'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/godonlyknows <> caves-1623/204/trunk/godonlyknows
+> > > > > > - LEGS: 6 (previous: 14828, now:14834)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/godonlyknows
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/goodvibrations
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/goodvibrations
+> > > > > > - Begin found for:goodvibrations, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'goodvibrations'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/goodvibrations <> caves-1623/204/trunk/goodvibrations
+> > > > > > - LEGS: 5 (previous: 14834, now:14839)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/goodvibrations
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/sandpit2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit2
+> > > > > > - Begin found for:sandpit2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sandpit2'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/sandpit2 <> caves-1623/204/trunk/sandpit2
+> > > > > > - LEGS: 5 (previous: 14839, now:14844)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/sandpit2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/pingu
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu
+> > > > > > - Begin found for:pingu, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pingu'
+> > > > > > > - MEM:49.312 Reading. parent:caves-1623/204/trunk/pingu <> caves-1623/204/trunk/pingu
+> > > > > > - LEGS: 7 (previous: 14844, now:14851)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/pingu
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/noodnoodles
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/noodnoodles
+> > > > > > - Begin found for:noodnoodles, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'noodnoodles'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/noodnoodles <> caves-1623/204/trunk/noodnoodles
+> > > > > > - LEGS: 5 (previous: 14851, now:14856)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/noodnoodles
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/sandpit3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/sandpit3
+> > > > > > - Begin found for:sandpit3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sandpit3'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/sandpit3 <> caves-1623/204/trunk/sandpit3
+> > > > > > - LEGS: 2 (previous: 14856, now:14858)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/sandpit3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/pingu2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu2
+> > > > > > - Begin found for:pingu2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pingu2'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/pingu2 <> caves-1623/204/trunk/pingu2
+> > > > > > - LEGS: 7 (previous: 14858, now:14865)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/pingu2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/pingu3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/pingu3
+> > > > > > - Begin found for:pingu3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pingu3'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/pingu3 <> caves-1623/204/trunk/pingu3
+> > > > > > - LEGS: 6 (previous: 14865, now:14871)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/pingu3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/appendix
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/appendix
+> > > > > > - Begin found for:appendix, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'appendix'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/appendix <> caves-1623/204/trunk/appendix
+> > > > > > - LEGS: 4 (previous: 14871, now:14875)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/appendix
+> > > > > - INCLUDE-go path found, including - caves-1623/204/trunk/root
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/trunk <> caves-1623/204/trunk/root
+> > > > > > - Begin found for:root, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'root'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/trunk/root <> caves-1623/204/trunk/root
+> > > > > > - LEGS: 7 (previous: 14875, now:14882)
+> > > > > - INCLUDE-return from include - caves-1623/204/trunk/root
+> > > > > - LEGS: 520 (previous: 14362, now:14882)
+> > > > - INCLUDE-return from include - caves-1623/204/trunk/trunk
+> > > > - INCLUDE-go path found, including - caves-1623/204/swings/allswings
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.316 Reading. parent:caves-1623/204/204 <> caves-1623/204/swings/allswings
+> > > > > - Begin found for:allswings, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'allswings'
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/allswings
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/playground
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/playground
+> > > > > > - Begin found for:playground, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'playground'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/playground <> caves-1623/204/swings/playground
+> > > > > > - LEGS: 7 (previous: 14882, now:14889)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/playground
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings
+> > > > > > - Begin found for:swings, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/swings <> caves-1623/204/swings/swings
+> > > > > > - LEGS: 28 (previous: 14889, now:14917)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings2
+> > > > > > - Begin found for:swings2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings2'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/swings2 <> caves-1623/204/swings/swings2
+> > > > > > - LEGS: 7 (previous: 14917, now:14924)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings3
+> > > > > > - Begin found for:swings3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings3'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/swings3 <> caves-1623/204/swings/swings3
+> > > > > > - LEGS: 4 (previous: 14924, now:14928)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings4
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings4
+> > > > > > - Begin found for:swings4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings4'
+> > > > > > > - MEM:49.316 Reading. parent:caves-1623/204/swings/swings4 <> caves-1623/204/swings/swings4
+> > > > > > - LEGS: 10 (previous: 14928, now:14938)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings4
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings5
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings5
+> > > > > > - Begin found for:swings5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings5'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/swings5 <> caves-1623/204/swings/swings5
+> > > > > > - LEGS: 2 (previous: 14938, now:14940)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings5
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings6
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings6
+> > > > > > - Begin found for:swings6, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings6'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/swings6 <> caves-1623/204/swings/swings6
+> > > > > > - LEGS: 4 (previous: 14940, now:14944)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings6
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings7
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings7
+> > > > > > - Begin found for:swings7, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings7'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/swings7 <> caves-1623/204/swings/swings7
+> > > > > > - LEGS: 2 (previous: 14944, now:14946)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings7
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings8
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings8
+> > > > > > - Begin found for:swings8, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings8'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/swings8 <> caves-1623/204/swings/swings8
+> > > > > > - LEGS: 6 (previous: 14946, now:14952)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings8
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/swings9
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/swings9
+> > > > > > - Begin found for:swings9, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swings9'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/swings9 <> caves-1623/204/swings/swings9
+> > > > > > - LEGS: 12 (previous: 14952, now:14964)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/swings9
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/prettybits
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/prettybits
+> > > > > > - Begin found for:prettybits, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'prettybits'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/prettybits <> caves-1623/204/swings/prettybits
+> > > > > > - LEGS: 8 (previous: 14964, now:14972)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/prettybits
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/juicybits
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/juicybits
+> > > > > > - Begin found for:juicybits, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'juicybits'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/juicybits <> caves-1623/204/swings/juicybits
+> > > > > > - LEGS: 9 (previous: 14972, now:14981)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/juicybits
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/merrygoround
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround
+> > > > > > - Begin found for:merrygoround, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'merrygoround'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/merrygoround <> caves-1623/204/swings/merrygoround
+> > > > > > - LEGS: 7 (previous: 14981, now:14988)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/merrygoround
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/merrygoround2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround2
+> > > > > > - Begin found for:merrygoround2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'merrygoround2'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/merrygoround2 <> caves-1623/204/swings/merrygoround2
+> > > > > > - LEGS: 5 (previous: 14988, now:14993)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/merrygoround2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/merrygoround3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/merrygoround3
+> > > > > > - Begin found for:merrygoround3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'merrygoround3'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/merrygoround3 <> caves-1623/204/swings/merrygoround3
+> > > > > > - LEGS: 7 (previous: 14993, now:15000)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/merrygoround3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ermintrude
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude
+> > > > > > - Begin found for:ermintrude, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ermintrude'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ermintrude <> caves-1623/204/swings/ermintrude
+> > > > > > - LEGS: 6 (previous: 15000, now:15006)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ermintrude
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/trapeze
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/trapeze
+> > > > > > - Begin found for:trapeze, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'trapeze'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/trapeze <> caves-1623/204/swings/trapeze
+> > > > > > - LEGS: 8 (previous: 15006, now:15014)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/trapeze
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/crestarun
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/crestarun
+> > > > > > - Begin found for:crestarun, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'crestarun'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/crestarun <> caves-1623/204/swings/crestarun
+> > > > > > - LEGS: 16 (previous: 15014, now:15030)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/crestarun
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/piledriver
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/piledriver
+> > > > > > - Begin found for:piledriver, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'piledriver'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/piledriver <> caves-1623/204/swings/piledriver
+> > > > > > - LEGS: 6 (previous: 15030, now:15036)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/piledriver
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/toothless
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/toothless
+> > > > > > - Begin found for:toothless, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'toothless'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/toothless <> caves-1623/204/swings/toothless
+> > > > > > - LEGS: 12 (previous: 15036, now:15048)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/toothless
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/highhopes
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes
+> > > > > > - Begin found for:highhopes, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'highhopes'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/highhopes <> caves-1623/204/swings/highhopes
+> > > > > > - LEGS: 10 (previous: 15048, now:15058)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/highhopes
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/highhopes2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes2
+> > > > > > - Begin found for:highhopes2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'highhopes2'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/highhopes2 <> caves-1623/204/swings/highhopes2
+> > > > > > - LEGS: 16 (previous: 15058, now:15074)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/highhopes2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/highhopeslink
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopeslink
+> > > > > > - Begin found for:highhopeslink, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'highhopeslink'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/highhopeslink <> caves-1623/204/swings/highhopeslink
+> > > > > > - LEGS: 2 (previous: 15074, now:15076)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/highhopeslink
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/highhopes3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/highhopes3
+> > > > > > - Begin found for:highhopes3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'highhopes3'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/highhopes3 <> caves-1623/204/swings/highhopes3
+> > > > > > - LEGS: 9 (previous: 15076, now:15085)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/highhopes3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/enth
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enth
+> > > > > > - Begin found for:enth, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'enth'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/enth <> caves-1623/204/swings/enth
+> > > > > > - LEGS: 18 (previous: 15085, now:15103)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/enth
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/enti
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/enti
+> > > > > > - Begin found for:enti, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'enti'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/enti <> caves-1623/204/swings/enti
+> > > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > > - LEGS: 6 (previous: 15103, now:15109)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/enti
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ermintrude2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ermintrude2
+> > > > > > - Begin found for:ermintrude2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ermintrude2'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ermintrude2 <> caves-1623/204/swings/ermintrude2
+> > > > > > - LEGS: 9 (previous: 15109, now:15118)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ermintrude2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/entg
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/entg
+> > > > > > - Begin found for:entg, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'entg'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/entg <> caves-1623/204/swings/entg
+> > > > > > - LEGS: 7 (previous: 15118, now:15125)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/entg
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ubantu
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu
+> > > > > > - Begin found for:ubantu, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ubantu'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ubantu <> caves-1623/204/swings/ubantu
+> > > > > > - LEGS: 7 (previous: 15125, now:15132)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ubantu
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ubantu2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu2
+> > > > > > - Begin found for:ubantu2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ubantu2'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ubantu2 <> caves-1623/204/swings/ubantu2
+> > > > > > - LEGS: 7 (previous: 15132, now:15139)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ubantu2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/zebedee
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/zebedee
+> > > > > > - Begin found for:zebedee, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'zebedee'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/zebedee <> caves-1623/204/swings/zebedee
+> > > > > > - LEGS: 6 (previous: 15139, now:15145)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/zebedee
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ubantu3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu3
+> > > > > > - Begin found for:ubantu3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ubantu3'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ubantu3 <> caves-1623/204/swings/ubantu3
+> > > > > > - LEGS: 26 (previous: 15145, now:15171)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ubantu3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ubantu4
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu4
+> > > > > > - Begin found for:ubantu4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ubantu4'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ubantu4 <> caves-1623/204/swings/ubantu4
+> > > > > > - LEGS: 15 (previous: 15171, now:15186)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ubantu4
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/05-9cQMkilling
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/05-9cQMkilling
+> > > > > > - Begin found for:05-9cqmkilling, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '05-9cqmkilling'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/05-9cQMkilling <> caves-1623/204/swings/05-9cQMkilling
+> > > > > > - LEGS: 3 (previous: 15186, now:15189)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/05-9cQMkilling
+> > > > > - INCLUDE-go path found, including - caves-1623/204/swings/ubantu5
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/allswings <> caves-1623/204/swings/ubantu5
+> > > > > > - Begin found for:ubantu5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ubantu5'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/swings/ubantu5 <> caves-1623/204/swings/ubantu5
+> > > > > > - LEGS: 3 (previous: 15189, now:15192)
+> > > > > - INCLUDE-return from include - caves-1623/204/swings/ubantu5
+> > > > > - LEGS: 310 (previous: 14882, now:15192)
+> > > > - INCLUDE-return from include - caves-1623/204/swings/allswings
+> > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/allgaffered
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.324 Reading. parent:caves-1623/204/204 <> caves-1623/204/gaffered/allgaffered
+> > > > > - Begin found for:allgaffered, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'allgaffered'
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/allgaffered
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/plan
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/plan
+> > > > > > - Begin found for:plan, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'plan'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/gaffered/plan <> caves-1623/204/gaffered/plan
+> > > > > > - LEGS: 3 (previous: 15192, now:15195)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/plan
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/not
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.324 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/not
+> > > > > > - Begin found for:not, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'not'
+> > > > > > > - MEM:49.324 Reading. parent:caves-1623/204/gaffered/not <> caves-1623/204/gaffered/not
+> > > > > > - LEGS: 7 (previous: 15195, now:15202)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/not
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/interesting
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.328 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/interesting
+> > > > > > - Begin found for:interesting, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'interesting'
+> > > > > > > - MEM:49.328 Reading. parent:caves-1623/204/gaffered/interesting <> caves-1623/204/gaffered/interesting
+> > > > > > - LEGS: 3 (previous: 15202, now:15205)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/interesting
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/trihang
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.328 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/trihang
+> > > > > > - Begin found for:trihang, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'trihang'
+> > > > > > > - MEM:49.328 Reading. parent:caves-1623/204/gaffered/trihang <> caves-1623/204/gaffered/trihang
+> > > > > > - LEGS: 13 (previous: 15205, now:15218)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/trihang
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/eeyore
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.328 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/eeyore
+> > > > > > - Begin found for:eeyore, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'eeyore'
+> > > > > > > - MEM:49.328 Reading. parent:caves-1623/204/gaffered/eeyore <> caves-1623/204/gaffered/eeyore
+> > > > > > - LEGS: 4 (previous: 15218, now:15222)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/eeyore
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/poohstyx
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx
+> > > > > > - Begin found for:poohstyx, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'poohstyx'
+> > > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/poohstyx <> caves-1623/204/gaffered/poohstyx
+> > > > > > - LEGS: 9 (previous: 15222, now:15231)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/poohstyx
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/sirens
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens
+> > > > > > - Begin found for:sirens, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sirens'
+> > > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/sirens <> caves-1623/204/gaffered/sirens
+> > > > > > - LEGS: 6 (previous: 15231, now:15237)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/sirens
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/sirens2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/sirens2
+> > > > > > - Begin found for:sirens2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sirens2'
+> > > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/sirens2 <> caves-1623/204/gaffered/sirens2
+> > > > > > - LEGS: 17 (previous: 15237, now:15254)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/sirens2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/kanga
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/kanga
+> > > > > > - Begin found for:kanga, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'kanga'
+> > > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/kanga <> caves-1623/204/gaffered/kanga
+> > > > > > - LEGS: 5 (previous: 15254, now:15259)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/kanga
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/mudslope
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/mudslope
+> > > > > > - Begin found for:mudslope, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mudslope'
+> > > > > > > - MEM:49.332 Reading. parent:caves-1623/204/gaffered/mudslope <> caves-1623/204/gaffered/mudslope
+> > > > > > - LEGS: 3 (previous: 15259, now:15262)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/mudslope
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/gardenersworld
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/gardenersworld
+> > > > > > - Begin found for:gardenersworld, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gardenersworld'
+> > > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/gardenersworld <> caves-1623/204/gaffered/gardenersworld
+> > > > > > - LEGS: 3 (previous: 15262, now:15265)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/gardenersworld
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/uppertube
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/uppertube
+> > > > > > - Begin found for:uppertube, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'uppertube'
+> > > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/uppertube <> caves-1623/204/gaffered/uppertube
+> > > > > > - LEGS: 3 (previous: 15265, now:15268)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/uppertube
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/terrafirma
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/terrafirma
+> > > > > > - Begin found for:terrafirma, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'terrafirma'
+> > > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/terrafirma <> caves-1623/204/gaffered/terrafirma
+> > > > > > - LEGS: 2 (previous: 15268, now:15270)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/terrafirma
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/oxtailoxbow
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/oxtailoxbow
+> > > > > > - Begin found for:oxtailoxbow, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'oxtailoxbow'
+> > > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/oxtailoxbow <> caves-1623/204/gaffered/oxtailoxbow
+> > > > > > - LEGS: 5 (previous: 15270, now:15275)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/oxtailoxbow
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/blackmaria
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/blackmaria
+> > > > > > - Begin found for:blackmaria, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'blackmaria'
+> > > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/blackmaria <> caves-1623/204/gaffered/blackmaria
+> > > > > > - LEGS: 3 (previous: 15275, now:15278)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/blackmaria
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/poohstyx2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/poohstyx2
+> > > > > > - Begin found for:poohstyx2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'poohstyx2'
+> > > > > > > - MEM:49.336 Reading. parent:caves-1623/204/gaffered/poohstyx2 <> caves-1623/204/gaffered/poohstyx2
+> > > > > > - LEGS: 2 (previous: 15278, now:15280)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/poohstyx2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/shprinkles
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/shprinkles
+> > > > > > - Begin found for:shprinkles, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'shprinkles'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/shprinkles <> caves-1623/204/gaffered/shprinkles
+> > > > > > - LEGS: 5 (previous: 15280, now:15285)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/shprinkles
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/dangly
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangly
+> > > > > > - Begin found for:dangly, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dangly'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/dangly <> caves-1623/204/gaffered/dangly
+> > > > > > - LEGS: 5 (previous: 15285, now:15290)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/dangly
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/slimy1
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy1
+> > > > > > - Begin found for:slimy1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slimy1'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/slimy1 <> caves-1623/204/gaffered/slimy1
+> > > > > > - LEGS: 5 (previous: 15290, now:15295)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/slimy1
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/dangerous
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/dangerous
+> > > > > > - Begin found for:dangerous, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dangerous'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/dangerous <> caves-1623/204/gaffered/dangerous
+> > > > > > - LEGS: 24 (previous: 15295, now:15319)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/dangerous
+> > > > > - INCLUDE-go path found, including - caves-1623/204/gaffered/slimy2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/allgaffered <> caves-1623/204/gaffered/slimy2
+> > > > > > - Begin found for:slimy2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slimy2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/gaffered/slimy2 <> caves-1623/204/gaffered/slimy2
+> > > > > > - LEGS: 10 (previous: 15319, now:15329)
+> > > > > - INCLUDE-return from include - caves-1623/204/gaffered/slimy2
+> > > > > - LEGS: 137 (previous: 15192, now:15329)
+> > > > - INCLUDE-return from include - caves-1623/204/gaffered/allgaffered
+> > > > - INCLUDE-go path found, including - caves-1623/204/rhino/allrhino
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.340 Reading. parent:caves-1623/204/204 <> caves-1623/204/rhino/allrhino
+> > > > > - Begin found for:allrhino, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'allrhino'
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/allrhino
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/21boltsalute
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/21boltsalute
+> > > > > > - Begin found for:21boltsalute, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '21boltsalute'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/21boltsalute <> caves-1623/204/rhino/21boltsalute
+> > > > > > - LEGS: 9 (previous: 15329, now:15338)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/21boltsalute
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/rhinorift
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift
+> > > > > > - Begin found for:rhinorift, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rhinorift'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/rhinorift <> caves-1623/204/rhino/rhinorift
+> > > > > > - LEGS: 28 (previous: 15338, now:15366)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/rhinorift
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/onamission
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission
+> > > > > > - Begin found for:onamission, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'onamission'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/onamission <> caves-1623/204/rhino/onamission
+> > > > > > - LEGS: 35 (previous: 15366, now:15401)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/onamission
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/watnobutcombe
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/watnobutcombe
+> > > > > > - Begin found for:watnobutcombe, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'watnobutcombe'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/watnobutcombe <> caves-1623/204/rhino/watnobutcombe
+> > > > > > - LEGS: 6 (previous: 15401, now:15407)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/watnobutcombe
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/rhinorift2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift2
+> > > > > > - Begin found for:rhinorift2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rhinorift2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/rhinorift2 <> caves-1623/204/rhino/rhinorift2
+> > > > > > - LEGS: 12 (previous: 15407, now:15419)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/rhinorift2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/ratbiscuit
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/ratbiscuit
+> > > > > > - Begin found for:ratbiscuit, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ratbiscuit'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/ratbiscuit <> caves-1623/204/rhino/ratbiscuit
+> > > > > > - LEGS: 23 (previous: 15419, now:15442)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/ratbiscuit
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/crimper
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/crimper
+> > > > > > - Begin found for:crimper, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'crimper'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/crimper <> caves-1623/204/rhino/crimper
+> > > > > > - LEGS: 7 (previous: 15442, now:15449)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/crimper
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/swallowhard
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/swallowhard
+> > > > > > - Begin found for:swallowhard, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'swallowhard'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/swallowhard <> caves-1623/204/rhino/swallowhard
+> > > > > > - LEGS: 12 (previous: 15449, now:15461)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/swallowhard
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/takingthepiss
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/takingthepiss
+> > > > > > - Begin found for:takingthepiss, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'takingthepiss'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/takingthepiss <> caves-1623/204/rhino/takingthepiss
+> > > > > > - LEGS: 6 (previous: 15461, now:15467)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/takingthepiss
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/rhinorift3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/rhinorift3
+> > > > > > - Begin found for:rhinorift3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rhinorift3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/rhinorift3 <> caves-1623/204/rhino/rhinorift3
+> > > > > > - LEGS: 1 (previous: 15467, now:15468)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/rhinorift3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/unconformity
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity
+> > > > > > - Begin found for:unconformity, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'unconformity'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/unconformity <> caves-1623/204/rhino/unconformity
+> > > > > > - LEGS: 19 (previous: 15468, now:15487)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/unconformity
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/unconformity2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/unconformity2
+> > > > > > - Begin found for:unconformity2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'unconformity2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/unconformity2 <> caves-1623/204/rhino/unconformity2
+> > > > > > - LEGS: 9 (previous: 15487, now:15496)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/unconformity2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/belief
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/belief
+> > > > > > - Begin found for:belief, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'belief'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/belief <> caves-1623/204/rhino/belief
+> > > > > > - LEGS: 4 (previous: 15496, now:15500)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/belief
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/onamission2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission2
+> > > > > > - Begin found for:onamission2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'onamission2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/onamission2 <> caves-1623/204/rhino/onamission2
+> > > > > > - LEGS: 2 (previous: 15500, now:15502)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/onamission2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/onamission3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/onamission3
+> > > > > > - Begin found for:onamission3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'onamission3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/onamission3 <> caves-1623/204/rhino/onamission3
+> > > > > > - LEGS: 9 (previous: 15502, now:15511)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/onamission3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/faith
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/faith
+> > > > > > - Begin found for:faith, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'faith'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/faith <> caves-1623/204/rhino/faith
+> > > > > > - LEGS: 10 (previous: 15511, now:15521)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/faith
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/roundtrip
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/roundtrip
+> > > > > > - Begin found for:roundtrip, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'roundtrip'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/roundtrip <> caves-1623/204/rhino/roundtrip
+> > > > > > - LEGS: 6 (previous: 15521, now:15527)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/roundtrip
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/wotnoconnection
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/wotnoconnection
+> > > > > > - Begin found for:wotnoconnection, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wotnoconnection'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/wotnoconnection <> caves-1623/204/rhino/wotnoconnection
+> > > > > > - LEGS: 11 (previous: 15527, now:15538)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/wotnoconnection
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/grater
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/grater
+> > > > > > - Begin found for:grater, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'grater'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/grater <> caves-1623/204/rhino/grater
+> > > > > > - LEGS: 4 (previous: 15538, now:15542)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/grater
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/uncrimped
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/uncrimped
+> > > > > > - Begin found for:uncrimped, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'uncrimped'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/uncrimped <> caves-1623/204/rhino/uncrimped
+> > > > > > - LEGS: 0 (previous: 15542, now:15542)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/uncrimped
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/beyondbelief
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief
+> > > > > > - Begin found for:beyondbelief, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'beyondbelief'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/beyondbelief <> caves-1623/204/rhino/beyondbelief
+> > > > > > - LEGS: 10 (previous: 15542, now:15552)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/beyondbelief
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/beyondbelief2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief2
+> > > > > > - Begin found for:beyondbelief2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'beyondbelief2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/beyondbelief2 <> caves-1623/204/rhino/beyondbelief2
+> > > > > > - LEGS: 21 (previous: 15552, now:15573)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/beyondbelief2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/beyondbelief3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/beyondbelief3
+> > > > > > - Begin found for:beyondbelief3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'beyondbelief3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/beyondbelief3 <> caves-1623/204/rhino/beyondbelief3
+> > > > > > - LEGS: 8 (previous: 15573, now:15581)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/beyondbelief3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/hangingontofaith
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hangingontofaith
+> > > > > > - Begin found for:hangingontofaith, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hangingontofaith'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/hangingontofaith <> caves-1623/204/rhino/hangingontofaith
+> > > > > > - LEGS: 14 (previous: 15581, now:15595)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/hangingontofaith
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/shanks
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/shanks
+> > > > > > - Begin found for:shanks, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'shanks'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/shanks <> caves-1623/204/rhino/shanks
+> > > > > > - LEGS: 25 (previous: 15595, now:15620)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/shanks
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/nonconformism
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/nonconformism
+> > > > > > - Begin found for:nonconformism, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'nonconformism'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/nonconformism <> caves-1623/204/rhino/nonconformism
+> > > > > > - LEGS: 3 (previous: 15620, now:15623)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/nonconformism
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/spittersend
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/spittersend
+> > > > > > - Begin found for:spittersend, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'spittersend'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/spittersend <> caves-1623/204/rhino/spittersend
+> > > > > > - LEGS: 5 (previous: 15623, now:15628)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/spittersend
+> > > > > - INCLUDE-go path found, including - caves-1623/204/rhino/hollow
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/allrhino <> caves-1623/204/rhino/hollow
+> > > > > > - Begin found for:hollow, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hollow'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/rhino/hollow <> caves-1623/204/rhino/hollow
+> > > > > > - LEGS: 9 (previous: 15628, now:15637)
+> > > > > - INCLUDE-return from include - caves-1623/204/rhino/hollow
+> > > > > - LEGS: 308 (previous: 15329, now:15637)
+> > > > - INCLUDE-return from include - caves-1623/204/rhino/allrhino
+> > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/allsubsoil
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.340 Reading. parent:caves-1623/204/204 <> caves-1623/204/subsoil/allsubsoil
+> > > > > - Begin found for:allsubsoil, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'allsubsoil'
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/allsubsoil
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/subsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil
+> > > > > > - Begin found for:subsoil, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'subsoil'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/subsoil <> caves-1623/204/subsoil/subsoil
+> > > > > > - LEGS: 19 (previous: 15637, now:15656)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/subsoil
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/subsoil2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/subsoil2
+> > > > > > - Begin found for:subsoil2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'subsoil2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/subsoil2 <> caves-1623/204/subsoil/subsoil2
+> > > > > > - LEGS: 32 (previous: 15656, now:15688)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/subsoil2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/hippohollows
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippohollows
+> > > > > > - Begin found for:hippohollows, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hippohollows'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/hippohollows <> caves-1623/204/subsoil/hippohollows
+> > > > > > - LEGS: 12 (previous: 15688, now:15700)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/hippohollows
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/fatworm
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm
+> > > > > > - Begin found for:fatworm, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fatworm'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/fatworm <> caves-1623/204/subsoil/fatworm
+> > > > > > - LEGS: 12 (previous: 15700, now:15712)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/fatworm
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/heavilysoiled
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/heavilysoiled
+> > > > > > - Begin found for:heavilysoiled, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'heavilysoiled'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/heavilysoiled <> caves-1623/204/subsoil/heavilysoiled
+> > > > > > - LEGS: 12 (previous: 15712, now:15724)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/heavilysoiled
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/earthenware
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware
+> > > > > > - Begin found for:earthenware, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'earthenware'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/earthenware <> caves-1623/204/subsoil/earthenware
+> > > > > > - LEGS: 12 (previous: 15724, now:15736)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/earthenware
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/fatworm2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm2
+> > > > > > - Begin found for:fatworm2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fatworm2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/fatworm2 <> caves-1623/204/subsoil/fatworm2
+> > > > > > - LEGS: 21 (previous: 15736, now:15757)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/fatworm2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/fatworm3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/fatworm3
+> > > > > > - Begin found for:fatworm3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'fatworm3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/fatworm3 <> caves-1623/204/subsoil/fatworm3
+> > > > > > ! Wallet *REF '2004#34' - NOT found in DB search 'caves-1623/204/subsoil/fatworm3'
+> > > > > > - LEGS: 15 (previous: 15757, now:15772)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/fatworm3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/thinrift
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/thinrift
+> > > > > > - Begin found for:thinrift, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thinrift'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/thinrift <> caves-1623/204/subsoil/thinrift
+> > > > > > ! Wallet *REF '2004#35' - NOT found in DB search 'caves-1623/204/subsoil/thinrift'
+> > > > > > - LEGS: 6 (previous: 15772, now:15778)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/thinrift
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/earthenware2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware2
+> > > > > > - Begin found for:earthenware2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'earthenware2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/earthenware2 <> caves-1623/204/subsoil/earthenware2
+> > > > > > - LEGS: 24 (previous: 15778, now:15802)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/earthenware2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/earthenware3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/earthenware3
+> > > > > > - Begin found for:earthenware3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'earthenware3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/earthenware3 <> caves-1623/204/subsoil/earthenware3
+> > > > > > - LEGS: 18 (previous: 15802, now:15820)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/earthenware3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/chimney
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/chimney
+> > > > > > - Begin found for:chimney, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'chimney'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/chimney <> caves-1623/204/subsoil/chimney
+> > > > > > - LEGS: 7 (previous: 15820, now:15827)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/chimney
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/hardware
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware
+> > > > > > - Begin found for:hardware, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hardware'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/hardware <> caves-1623/204/subsoil/hardware
+> > > > > > - LEGS: 12 (previous: 15827, now:15839)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/hardware
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/someware
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/someware
+> > > > > > - Begin found for:someware, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'someware'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/someware <> caves-1623/204/subsoil/someware
+> > > > > > - LEGS: 33 (previous: 15839, now:15872)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/someware
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/software
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software
+> > > > > > - Begin found for:software, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'software'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/software <> caves-1623/204/subsoil/software
+> > > > > > - LEGS: 4 (previous: 15872, now:15876)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/software
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > > - Begin found for:qm04_43a, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'qm04_43a'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/hardware_QM04-43a <> caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > > - LEGS: 2 (previous: 15876, now:15878)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/hardware_QM04-43a
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > > - Begin found for:qm04_38b, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'qm04_38b'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/hardware_QM04-38b <> caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > > - LEGS: 4 (previous: 15878, now:15882)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/hardware_QM04-38b
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/nightsoil
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/nightsoil
+> > > > > > - Begin found for:nightsoil, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'nightsoil'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/nightsoil <> caves-1623/204/subsoil/nightsoil
+> > > > > > - LEGS: 6 (previous: 15882, now:15888)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/nightsoil
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/hippocratic
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic
+> > > > > > - Begin found for:hippocratic, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hippocratic'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/hippocratic <> caves-1623/204/subsoil/hippocratic
+> > > > > > - LEGS: 21 (previous: 15888, now:15909)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/hippocratic
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/hippocratic2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/hippocratic2
+> > > > > > - Begin found for:hippocratic2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hippocratic2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/hippocratic2 <> caves-1623/204/subsoil/hippocratic2
+> > > > > > - LEGS: 20 (previous: 15909, now:15929)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/hippocratic2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/software2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software2
+> > > > > > - Begin found for:software2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'software2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/software2 <> caves-1623/204/subsoil/software2
+> > > > > > - LEGS: 29 (previous: 15929, now:15958)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/software2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/software3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/software3
+> > > > > > - Begin found for:software3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'software3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/software3 <> caves-1623/204/subsoil/software3
+> > > > > > - LEGS: 7 (previous: 15958, now:15965)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/software3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/whereoware
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware
+> > > > > > - Begin found for:whereoware, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'whereoware'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/whereoware <> caves-1623/204/subsoil/whereoware
+> > > > > > - LEGS: 31 (previous: 15965, now:15996)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/whereoware
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/whereoware2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware2
+> > > > > > - Begin found for:whereoware2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'whereoware2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/whereoware2 <> caves-1623/204/subsoil/whereoware2
+> > > > > > - LEGS: 3 (previous: 15996, now:15999)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/whereoware2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/whereoware3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware3
+> > > > > > - Begin found for:whereoware3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'whereoware3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/whereoware3 <> caves-1623/204/subsoil/whereoware3
+> > > > > > - LEGS: 7 (previous: 15999, now:16006)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/whereoware3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/whereoware4
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware4
+> > > > > > - Begin found for:whereoware4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'whereoware4'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/whereoware4 <> caves-1623/204/subsoil/whereoware4
+> > > > > > - LEGS: 9 (previous: 16006, now:16015)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/whereoware4
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/whereoware5
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/whereoware5
+> > > > > > - Begin found for:whereoware5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'whereoware5'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/whereoware5 <> caves-1623/204/subsoil/whereoware5
+> > > > > > - LEGS: 2 (previous: 16015, now:16017)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/whereoware5
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/wareforartthou
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou
+> > > > > > - Begin found for:wareforartthou, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wareforartthou'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/wareforartthou <> caves-1623/204/subsoil/wareforartthou
+> > > > > > - LEGS: 28 (previous: 16017, now:16045)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/wareforartthou
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/wareforartthou2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/wareforartthou2
+> > > > > > - Begin found for:wareforartthou2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wareforartthou2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/wareforartthou2 <> caves-1623/204/subsoil/wareforartthou2
+> > > > > > - LEGS: 21 (previous: 16045, now:16066)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/wareforartthou2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/stupidhole
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole
+> > > > > > - Begin found for:stupidhole, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stupidhole'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/stupidhole <> caves-1623/204/subsoil/stupidhole
+> > > > > > - LEGS: 9 (previous: 16066, now:16075)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/stupidhole
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/stupidhole2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole2
+> > > > > > - Begin found for:stupidhole2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stupidhole2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/stupidhole2 <> caves-1623/204/subsoil/stupidhole2
+> > > > > > - LEGS: 21 (previous: 16075, now:16096)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/stupidhole2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/stupidhole3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/stupidhole3
+> > > > > > - Begin found for:stupidhole3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stupidhole3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/stupidhole3 <> caves-1623/204/subsoil/stupidhole3
+> > > > > > - LEGS: 7 (previous: 16096, now:16103)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/stupidhole3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/granddayout
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout
+> > > > > > - Begin found for:granddayout, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'granddayout'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/granddayout <> caves-1623/204/subsoil/granddayout
+> > > > > > - LEGS: 14 (previous: 16103, now:16117)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/granddayout
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/granddayout2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout2
+> > > > > > - Begin found for:granddayout2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'granddayout2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/granddayout2 <> caves-1623/204/subsoil/granddayout2
+> > > > > > - LEGS: 51 (previous: 16117, now:16168)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/granddayout2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/birdonawire
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire
+> > > > > > - Begin found for:birdonawire, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'birdonawire'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/birdonawire <> caves-1623/204/subsoil/birdonawire
+> > > > > > - LEGS: 6 (previous: 16168, now:16174)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/birdonawire
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/birdonawire2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/birdonawire2
+> > > > > > - Begin found for:birdonawire2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'birdonawire2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/birdonawire2 <> caves-1623/204/subsoil/birdonawire2
+> > > > > > - LEGS: 5 (previous: 16174, now:16179)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/birdonawire2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subsoil/granddayout3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/allsubsoil <> caves-1623/204/subsoil/granddayout3
+> > > > > > - Begin found for:granddayout3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'granddayout3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subsoil/granddayout3 <> caves-1623/204/subsoil/granddayout3
+> > > > > > - LEGS: 2 (previous: 16179, now:16181)
+> > > > > - INCLUDE-return from include - caves-1623/204/subsoil/granddayout3
+> > > > > - LEGS: 544 (previous: 15637, now:16181)
+> > > > - INCLUDE-return from include - caves-1623/204/subsoil/allsubsoil
+> > > > - INCLUDE-go path found, including - caves-1623/204/subway/subway
+> > > > - Match in DB (i) for cave 1623-204.
+> > > > > - MEM:49.340 Reading. parent:caves-1623/204/204 <> caves-1623/204/subway/subway
+> > > > > - Begin found for:subway, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'subway'
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/subway
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subway/apocalypse
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/apocalypse
+> > > > > > - Begin found for:apocalypse, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'apocalypse'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/apocalypse <> caves-1623/204/subway/apocalypse
+> > > > > > - LEGS: 13 (previous: 16181, now:16194)
+> > > > > - INCLUDE-return from include - caves-1623/204/subway/apocalypse
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subway/thetube
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube
+> > > > > > - Begin found for:thetube, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thetube'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/thetube <> caves-1623/204/subway/thetube
+> > > > > > - LEGS: 21 (previous: 16194, now:16215)
+> > > > > - INCLUDE-return from include - caves-1623/204/subway/thetube
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subway/thetube2
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube2
+> > > > > > - Begin found for:thetube2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thetube2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/thetube2 <> caves-1623/204/subway/thetube2
+> > > > > > - LEGS: 23 (previous: 16215, now:16238)
+> > > > > - INCLUDE-return from include - caves-1623/204/subway/thetube2
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subway/thetube3
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube3
+> > > > > > - Begin found for:thetube3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thetube3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/thetube3 <> caves-1623/204/subway/thetube3
+> > > > > > - LEGS: 28 (previous: 16238, now:16266)
+> > > > > - INCLUDE-return from include - caves-1623/204/subway/thetube3
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subway/thetube4
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/thetube4
+> > > > > > - Begin found for:thetube4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'thetube4'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/thetube4 <> caves-1623/204/subway/thetube4
+> > > > > > - LEGS: 35 (previous: 16266, now:16301)
+> > > > > - INCLUDE-return from include - caves-1623/204/subway/thetube4
+> > > > > - INCLUDE-go path found, including - caves-1623/204/subway/morningtoncrescent
+> > > > > - Match in DB (i) for cave 1623-204.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/subway <> caves-1623/204/subway/morningtoncrescent
+> > > > > > - Begin found for:morningtoncrescent, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'morningtoncrescent'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/204/subway/morningtoncrescent <> caves-1623/204/subway/morningtoncrescent
+> > > > > > - LEGS: 15 (previous: 16301, now:16316)
+> > > > > - INCLUDE-return from include - caves-1623/204/subway/morningtoncrescent
+> > > > > - LEGS: 135 (previous: 16181, now:16316)
+> > > > - INCLUDE-return from include - caves-1623/204/subway/subway
+> > > > - Begin found for:slimylink, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'slimylink'
+> > > > > - MEM:49.340 Reading. parent:caves-1623/204/204 <> caves-1623/204/204
+> > > > - LEGS: 0 (previous: 16316, now:16316)
+> > > - INCLUDE-return from include - caves-1623/204/204
+> > > - INCLUDE-go path found, including - caves-1623/258/258
+> > > - Match in DB (i) for cave 1623-258.
+> > > > - MEM:49.340 Reading. parent:kataster/1623 <> caves-1623/258/258
+> > > > - Begin found for:258, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '258'
+> > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/258
+> > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkeyall
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkeyall
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey
+> > > > > > - Begin found for:stonemonkey, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey <> caves-1623/258/stonemonkey/stonemonkey
+> > > > > > - LEGS: 17 (previous: 16316, now:16333)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey2
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey2
+> > > > > > - Begin found for:stonemonkey2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey2'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey2 <> caves-1623/258/stonemonkey/stonemonkey2
+> > > > > > - LEGS: 5 (previous: 16333, now:16338)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey2
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey3
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey3
+> > > > > > - Begin found for:stonemonkey3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey3'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey3 <> caves-1623/258/stonemonkey/stonemonkey3
+> > > > > > - LEGS: 14 (previous: 16338, now:16352)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey3
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey4
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey4
+> > > > > > - Begin found for:stonemonkey4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey4'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey4 <> caves-1623/258/stonemonkey/stonemonkey4
+> > > > > > - LEGS: 13 (previous: 16352, now:16365)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey4
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey5
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey5
+> > > > > > - Begin found for:stonemonkey5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey5'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey5 <> caves-1623/258/stonemonkey/stonemonkey5
+> > > > > > - LEGS: 9 (previous: 16365, now:16374)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey5
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey6
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey6
+> > > > > > - Begin found for:stonemonkey6, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey6'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey6 <> caves-1623/258/stonemonkey/stonemonkey6
+> > > > > > - LEGS: 5 (previous: 16374, now:16379)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey6
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey7
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey7
+> > > > > > - Begin found for:stonemonkey7, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey7'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey7 <> caves-1623/258/stonemonkey/stonemonkey7
+> > > > > > - LEGS: 5 (previous: 16379, now:16384)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey7
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey8
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey8
+> > > > > > - Begin found for:stonemonkey8, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey8'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey8 <> caves-1623/258/stonemonkey/stonemonkey8
+> > > > > > - LEGS: 10 (previous: 16384, now:16394)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey8
+> > > > > - INCLUDE-go path found, including - caves-1623/258/stonemonkey/stonemonkey9
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/stonemonkey/stonemonkey9
+> > > > > > - Begin found for:stonemonkey9, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'stonemonkey9'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/stonemonkey/stonemonkey9 <> caves-1623/258/stonemonkey/stonemonkey9
+> > > > > > - LEGS: 4 (previous: 16394, now:16398)
+> > > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkey9
+> > > > > - LEGS: 16398 (previous: 0, now:16398)
+> > > > - INCLUDE-return from include - caves-1623/258/stonemonkey/stonemonkeyall
+> > > > - INCLUDE-go path found, including - caves-1623/258/hydra/hydra
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hydra
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/kraken
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kraken
+> > > > > > - Begin found for:kraken, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'kraken'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/hydra/kraken <> caves-1623/258/hydra/kraken
+> > > > > > - LEGS: 14 (previous: 16398, now:16412)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/kraken
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/tentacle
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/tentacle
+> > > > > > - Begin found for:tentacle, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'tentacle'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/hydra/tentacle <> caves-1623/258/hydra/tentacle
+> > > > > > - LEGS: 8 (previous: 16412, now:16420)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/tentacle
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/livingthedream
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/livingthedream
+> > > > > > - Begin found for:livingthedream, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'livingthedream'
+> > > > > > > - MEM:49.340 Reading. parent:caves-1623/258/hydra/livingthedream <> caves-1623/258/hydra/livingthedream
+> > > > > > - LEGS: 30 (previous: 16420, now:16450)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/livingthedream
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.340 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers
+> > > > > > - Begin found for:slackers, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers <> caves-1623/258/hydra/slackers
+> > > > > > - LEGS: 75 (previous: 16450, now:16525)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers2
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers2
+> > > > > > - Begin found for:slackers2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers2'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers2 <> caves-1623/258/hydra/slackers2
+> > > > > > - LEGS: 18 (previous: 16525, now:16543)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers2
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers3
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers3
+> > > > > > - Begin found for:slackers3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers3'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers3 <> caves-1623/258/hydra/slackers3
+> > > > > > - LEGS: 6 (previous: 16543, now:16549)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers3
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers4
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers4
+> > > > > > - Begin found for:slackers4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers4'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers4 <> caves-1623/258/hydra/slackers4
+> > > > > > - LEGS: 26 (previous: 16549, now:16575)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers4
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers5
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers5
+> > > > > > - Begin found for:slackers5, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers5'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers5 <> caves-1623/258/hydra/slackers5
+> > > > > > - LEGS: 31 (previous: 16575, now:16606)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers5
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers6
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers6
+> > > > > > - Begin found for:slackers6, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers6'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers6 <> caves-1623/258/hydra/slackers6
+> > > > > > - LEGS: 4 (previous: 16606, now:16610)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers6
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/wrongcustard
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/wrongcustard
+> > > > > > - Begin found for:wrongcustard, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wrongcustard'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/wrongcustard <> caves-1623/258/hydra/wrongcustard
+> > > > > > - LEGS: 7 (previous: 16610, now:16617)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/wrongcustard
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackers7
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackers7
+> > > > > > - Begin found for:slackers7, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackers7'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackers7 <> caves-1623/258/hydra/slackers7
+> > > > > > - LEGS: 3 (previous: 16617, now:16620)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackers7
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/lobsterpot
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lobsterpot
+> > > > > > - Begin found for:lobsterpot, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lobsterpot'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/lobsterpot <> caves-1623/258/hydra/lobsterpot
+> > > > > > - LEGS: 10 (previous: 16620, now:16630)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/lobsterpot
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/kippercock
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/kippercock
+> > > > > > - Begin found for:kippercock, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'kippercock'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/kippercock <> caves-1623/258/hydra/kippercock
+> > > > > > - LEGS: 14 (previous: 16630, now:16644)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/kippercock
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/indianropetrick
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/indianropetrick
+> > > > > > - Begin found for:indianropetrick, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'indianropetrick'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/indianropetrick <> caves-1623/258/hydra/indianropetrick
+> > > > > > - LEGS: 6 (previous: 16644, now:16650)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/indianropetrick
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/songoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/songoftheearth
+> > > > > > - Begin found for:songoftheearth, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'songoftheearth'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+> > > > > > - Begin found for:part1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'part1'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/songoftheearth <> caves-1623/258/hydra/songoftheearth
+> > > > > > - LEGS: 13 (previous: 16650, now:16663)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/songoftheearth
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/dontstopmenow
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/dontstopmenow
+> > > > > > - Begin found for:dontstopmenow, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'dontstopmenow'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/dontstopmenow <> caves-1623/258/hydra/dontstopmenow
+> > > > > > - LEGS: 24 (previous: 16663, now:16687)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/dontstopmenow
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/screamer
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/screamer
+> > > > > > - Begin found for:screamer, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'screamer'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/screamer <> caves-1623/258/hydra/screamer
+> > > > > > - LEGS: 5 (previous: 16687, now:16692)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/screamer
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/papawpassage
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/papawpassage
+> > > > > > - Begin found for:papawpassage, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'papawpassage'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/papawpassage <> caves-1623/258/hydra/papawpassage
+> > > > > > - LEGS: 3 (previous: 16692, now:16695)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/papawpassage
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/therestherub
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/therestherub
+> > > > > > - Begin found for:therestherub, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'therestherub'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/therestherub <> caves-1623/258/hydra/therestherub
+> > > > > > - LEGS: 12 (previous: 16695, now:16707)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/therestherub
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/biglad
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/biglad
+> > > > > > - Begin found for:biglad, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'biglad'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/biglad <> caves-1623/258/hydra/biglad
+> > > > > > - LEGS: 28 (previous: 16707, now:16735)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/biglad
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackerstidyup1
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup1
+> > > > > > - Begin found for:slackerstidyup1, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackerstidyup1'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackerstidyup1 <> caves-1623/258/hydra/slackerstidyup1
+> > > > > > - LEGS: 6 (previous: 16735, now:16741)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackerstidyup1
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/slackerstidyup2
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/slackerstidyup2
+> > > > > > - Begin found for:slackerstidyup2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'slackerstidyup2'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/slackerstidyup2 <> caves-1623/258/hydra/slackerstidyup2
+> > > > > > - LEGS: 7 (previous: 16741, now:16748)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/slackerstidyup2
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/snakecharmer
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer
+> > > > > > - Begin found for:snakecharmer, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snakecharmer'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/snakecharmer <> caves-1623/258/hydra/snakecharmer
+> > > > > > - LEGS: 27 (previous: 16748, now:16775)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/snakecharmer
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/mastercave
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/mastercave
+> > > > > > - Begin found for:mastercave, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mastercave'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/mastercave <> caves-1623/258/hydra/mastercave
+> > > > > > - LEGS: 4 (previous: 16775, now:16779)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/mastercave
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/gryke-of-the-earth
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/gryke-of-the-earth
+> > > > > > - Begin found for:gryke-of-the-earth, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'gryke-of-the-earth'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/gryke-of-the-earth <> caves-1623/258/hydra/gryke-of-the-earth
+> > > > > > - LEGS: 12 (previous: 16779, now:16791)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/gryke-of-the-earth
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/snakecharmer2
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer2
+> > > > > > - Begin found for:snakecharmer2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snakecharmer2'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/snakecharmer2 <> caves-1623/258/hydra/snakecharmer2
+> > > > > > - LEGS: 22 (previous: 16791, now:16813)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/snakecharmer2
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/snakecharmer3
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/snakecharmer3
+> > > > > > - Begin found for:snakecharmer3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snakecharmer3'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/snakecharmer3 <> caves-1623/258/hydra/snakecharmer3
+> > > > > > - LEGS: 15 (previous: 16813, now:16828)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/snakecharmer3
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/hipstersreturn
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/hipstersreturn
+> > > > > > - Begin found for:hipstersreturn, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hipstersreturn'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/hipstersreturn <> caves-1623/258/hydra/hipstersreturn
+> > > > > > - LEGS: 10 (previous: 16828, now:16838)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/hipstersreturn
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/beckoning_silence
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/beckoning_silence
+> > > > > > - Begin found for:beckoning_silence, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'beckoning_silence'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/beckoning_silence <> caves-1623/258/hydra/beckoning_silence
+> > > > > > - LEGS: 22 (previous: 16838, now:16860)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/beckoning_silence
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/theloserlido
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/theloserlido
+> > > > > > - Begin found for:theloserlido, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'theloserlido'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/theloserlido <> caves-1623/258/hydra/theloserlido
+> > > > > > - LEGS: 22 (previous: 16860, now:16882)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/theloserlido
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/bahamastunnel
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/bahamastunnel
+> > > > > > - Begin found for:bahamastunnel, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'bahamastunnel'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/bahamastunnel <> caves-1623/258/hydra/bahamastunnel
+> > > > > > - LEGS: 7 (previous: 16882, now:16889)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/bahamastunnel
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/unfathomablestupidity
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/unfathomablestupidity
+> > > > > > - Begin found for:unfathomablestupidity, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'unfathomablestupidity'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/unfathomablestupidity <> caves-1623/258/hydra/unfathomablestupidity
+> > > > > > - LEGS: 5 (previous: 16889, now:16894)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/unfathomablestupidity
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/lower_snakebite
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/lower_snakebite
+> > > > > > - Begin found for:lower_snakebite, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lower_snakebite'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/lower_snakebite <> caves-1623/258/hydra/lower_snakebite
+> > > > > > - LEGS: 10 (previous: 16894, now:16904)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/lower_snakebite
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/radiosilence
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/radiosilence
+> > > > > > - Begin found for:radiosilence, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'radiosilence'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/radiosilence <> caves-1623/258/hydra/radiosilence
+> > > > > > - LEGS: 7 (previous: 16904, now:16911)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/radiosilence
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/scumoftheearth
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scumoftheearth
+> > > > > > - Begin found for:scumoftheearth, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'scumoftheearth'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/scumoftheearth <> caves-1623/258/hydra/scumoftheearth
+> > > > > > - LEGS: 512 (previous: 16911, now:17423)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/scumoftheearth
+> > > > > - INCLUDE-go path found, including - caves-1623/258/hydra/scum2
+> > > > > - Match in DB (i) for cave 1623-258.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hydra/scum2
+> > > > > > - Begin found for:scum2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'scum2'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hydra/scum2 <> caves-1623/258/hydra/scum2
+> > > > > > - LEGS: 75 (previous: 17423, now:17498)
+> > > > > - INCLUDE-return from include - caves-1623/258/hydra/scum2
+> > > > > - LEGS: 17498 (previous: 0, now:17498)
+> > > > - INCLUDE-return from include - caves-1623/258/hydra/hydra
+> > > > - INCLUDE-go path found, including - caves-1623/258/1
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/1
+> > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/1 <> caves-1623/258/1
+> > > > > - LEGS: 2 (previous: 17498, now:17500)
+> > > > - INCLUDE-return from include - caves-1623/258/1
+> > > > - INCLUDE-go path found, including - caves-1623/258/2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/2
+> > > > > - Begin found for:2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/2 <> caves-1623/258/2
+> > > > > - LEGS: 24 (previous: 17500, now:17524)
+> > > > - INCLUDE-return from include - caves-1623/258/2
+> > > > - INCLUDE-go path found, including - caves-1623/258/ribsknodel
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel
+> > > > > - Begin found for:ribsknodel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'ribsknodel'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/ribsknodel <> caves-1623/258/ribsknodel
+> > > > > - LEGS: 18 (previous: 17524, now:17542)
+> > > > - INCLUDE-return from include - caves-1623/258/ribsknodel
+> > > > - INCLUDE-go path found, including - caves-1623/258/ribsknodel2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/ribsknodel2
+> > > > > - Begin found for:ribsknodel2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'ribsknodel2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/ribsknodel2 <> caves-1623/258/ribsknodel2
+> > > > > - LEGS: 3 (previous: 17542, now:17545)
+> > > > - INCLUDE-return from include - caves-1623/258/ribsknodel2
+> > > > - INCLUDE-go path found, including - caves-1623/258/skrautlink
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/skrautlink
+> > > > > - Begin found for:skrautlink, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'skrautlink'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/skrautlink <> caves-1623/258/skrautlink
+> > > > > - LEGS: 1 (previous: 17545, now:17546)
+> > > > - INCLUDE-return from include - caves-1623/258/skrautlink
+> > > > - INCLUDE-go path found, including - caves-1623/258/sauerkraut
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/sauerkraut
+> > > > > - Begin found for:sauerkraut, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sauerkraut'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/sauerkraut <> caves-1623/258/sauerkraut
+> > > > > - LEGS: 4 (previous: 17546, now:17550)
+> > > > - INCLUDE-return from include - caves-1623/258/sauerkraut
+> > > > - INCLUDE-go path found, including - caves-1623/258/gknodel
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/gknodel
+> > > > > - Begin found for:gknodel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gknodel'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/gknodel <> caves-1623/258/gknodel
+> > > > > - LEGS: 16 (previous: 17550, now:17566)
+> > > > - INCLUDE-return from include - caves-1623/258/gknodel
+> > > > - INCLUDE-go path found, including - caves-1623/258/literalnorth
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth
+> > > > > - Begin found for:literalnorth, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'literalnorth'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/literalnorth <> caves-1623/258/literalnorth
+> > > > > - LEGS: 17 (previous: 17566, now:17583)
+> > > > - INCLUDE-return from include - caves-1623/258/literalnorth
+> > > > - INCLUDE-go path found, including - caves-1623/258/squirrel
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/squirrel
+> > > > > - Begin found for:squirrel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'squirrel'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/squirrel <> caves-1623/258/squirrel
+> > > > > - LEGS: 10 (previous: 17583, now:17593)
+> > > > - INCLUDE-return from include - caves-1623/258/squirrel
+> > > > - INCLUDE-go path found, including - caves-1623/258/oompah
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/oompah
+> > > > > - Begin found for:oompah, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'oompah'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/oompah <> caves-1623/258/oompah
+> > > > > - LEGS: 5 (previous: 17593, now:17598)
+> > > > - INCLUDE-return from include - caves-1623/258/oompah
+> > > > - INCLUDE-go path found, including - caves-1623/258/apfelstrudel
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/apfelstrudel
+> > > > > - Begin found for:apfelstrudel, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'apfelstrudel'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/apfelstrudel <> caves-1623/258/apfelstrudel
+> > > > > - LEGS: 18 (previous: 17598, now:17616)
+> > > > - INCLUDE-return from include - caves-1623/258/apfelstrudel
+> > > > - INCLUDE-go path found, including - caves-1623/258/literalnorth2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth2
+> > > > > - Begin found for:literalnorth2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'literalnorth2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/literalnorth2 <> caves-1623/258/literalnorth2
+> > > > > - LEGS: 2 (previous: 17616, now:17618)
+> > > > - INCLUDE-return from include - caves-1623/258/literalnorth2
+> > > > - INCLUDE-go path found, including - caves-1623/258/literalnorth3
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth3
+> > > > > - Begin found for:literalnorth3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'literalnorth3'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/literalnorth3 <> caves-1623/258/literalnorth3
+> > > > > - LEGS: 4 (previous: 17618, now:17622)
+> > > > - INCLUDE-return from include - caves-1623/258/literalnorth3
+> > > > - INCLUDE-go path found, including - caves-1623/258/maxpleasure1
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure1
+> > > > > - Begin found for:maxpleasure1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'maxpleasure1'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/maxpleasure1 <> caves-1623/258/maxpleasure1
+> > > > > - LEGS: 24 (previous: 17622, now:17646)
+> > > > - INCLUDE-return from include - caves-1623/258/maxpleasure1
+> > > > - INCLUDE-go path found, including - caves-1623/258/dubiouspleasure
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/dubiouspleasure
+> > > > > - Begin found for:dubiouspleasure, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'dubiouspleasure'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/dubiouspleasure <> caves-1623/258/dubiouspleasure
+> > > > > - LEGS: 10 (previous: 17646, now:17656)
+> > > > - INCLUDE-return from include - caves-1623/258/dubiouspleasure
+> > > > - INCLUDE-go path found, including - caves-1623/258/maxpleasure2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure2
+> > > > > - Begin found for:maxpleasure2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'maxpleasure2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/maxpleasure2 <> caves-1623/258/maxpleasure2
+> > > > > - LEGS: 37 (previous: 17656, now:17693)
+> > > > - INCLUDE-return from include - caves-1623/258/maxpleasure2
+> > > > - INCLUDE-go path found, including - caves-1623/258/hedonismhighway
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hedonismhighway
+> > > > > - Begin found for:hedonismhighway, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hedonismhighway'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hedonismhighway <> caves-1623/258/hedonismhighway
+> > > > > - LEGS: 4 (previous: 17693, now:17697)
+> > > > - INCLUDE-return from include - caves-1623/258/hedonismhighway
+> > > > - INCLUDE-go path found, including - caves-1623/258/flyinghigh
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh
+> > > > > - Begin found for:flyinghigh, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flyinghigh'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/flyinghigh <> caves-1623/258/flyinghigh
+> > > > > - LEGS: 23 (previous: 17697, now:17720)
+> > > > - INCLUDE-return from include - caves-1623/258/flyinghigh
+> > > > - INCLUDE-go path found, including - caves-1623/258/flyinghigh2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh2
+> > > > > - Begin found for:flyinghigh2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flyinghigh2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/flyinghigh2 <> caves-1623/258/flyinghigh2
+> > > > > - LEGS: 5 (previous: 17720, now:17725)
+> > > > - INCLUDE-return from include - caves-1623/258/flyinghigh2
+> > > > - INCLUDE-go path found, including - caves-1623/258/pantinsales
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/pantinsales
+> > > > > - Begin found for:pantinsales, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pantinsales'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/pantinsales <> caves-1623/258/pantinsales
+> > > > > - LEGS: 5 (previous: 17725, now:17730)
+> > > > - INCLUDE-return from include - caves-1623/258/pantinsales
+> > > > - INCLUDE-go path found, including - caves-1623/258/maxpleasure3
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure3
+> > > > > - Begin found for:maxpleasure3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'maxpleasure3'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/maxpleasure3 <> caves-1623/258/maxpleasure3
+> > > > > - LEGS: 42 (previous: 17730, now:17772)
+> > > > - INCLUDE-return from include - caves-1623/258/maxpleasure3
+> > > > - INCLUDE-go path found, including - caves-1623/258/maxpleasure4
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure4
+> > > > > - Begin found for:maxpleasure4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'maxpleasure4'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/maxpleasure4 <> caves-1623/258/maxpleasure4
+> > > > > - LEGS: 3 (previous: 17772, now:17775)
+> > > > - INCLUDE-return from include - caves-1623/258/maxpleasure4
+> > > > - INCLUDE-go path found, including - caves-1623/258/literalnorth4
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth4
+> > > > > - Begin found for:literalnorth4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'literalnorth4'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/literalnorth4 <> caves-1623/258/literalnorth4
+> > > > > - LEGS: 6 (previous: 17775, now:17781)
+> > > > - INCLUDE-return from include - caves-1623/258/literalnorth4
+> > > > - INCLUDE-go path found, including - caves-1623/258/maxpleasure5
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure5
+> > > > > - Begin found for:maxpleasure5, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'maxpleasure5'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/maxpleasure5 <> caves-1623/258/maxpleasure5
+> > > > > - LEGS: 3 (previous: 17781, now:17784)
+> > > > - INCLUDE-return from include - caves-1623/258/maxpleasure5
+> > > > - INCLUDE-go path found, including - caves-1623/258/justforalaugh
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh
+> > > > > - Begin found for:justforalaugh, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'justforalaugh'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/justforalaugh <> caves-1623/258/justforalaugh
+> > > > > - LEGS: 23 (previous: 17784, now:17807)
+> > > > - INCLUDE-return from include - caves-1623/258/justforalaugh
+> > > > - INCLUDE-go path found, including - caves-1623/258/letsgetnaked
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/letsgetnaked
+> > > > > - Begin found for:letsgetnaked, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'letsgetnaked'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/letsgetnaked <> caves-1623/258/letsgetnaked
+> > > > > - LEGS: 22 (previous: 17807, now:17829)
+> > > > - INCLUDE-return from include - caves-1623/258/letsgetnaked
+> > > > - INCLUDE-go path found, including - caves-1623/258/maxpleasure6
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/maxpleasure6
+> > > > > - Begin found for:maxpleasure6, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'maxpleasure6'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/maxpleasure6 <> caves-1623/258/maxpleasure6
+> > > > > - LEGS: 3 (previous: 17829, now:17832)
+> > > > - INCLUDE-return from include - caves-1623/258/maxpleasure6
+> > > > - INCLUDE-go path found, including - caves-1623/258/justforalaugh2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/justforalaugh2
+> > > > > - Begin found for:justforalaugh2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'justforalaugh2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/justforalaugh2 <> caves-1623/258/justforalaugh2
+> > > > > - LEGS: 6 (previous: 17832, now:17838)
+> > > > - INCLUDE-return from include - caves-1623/258/justforalaugh2
+> > > > - INCLUDE-go path found, including - caves-1623/258/loompah
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/loompah
+> > > > > - Begin found for:loompah, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'loompah'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/loompah <> caves-1623/258/loompah
+> > > > > - LEGS: 5 (previous: 17838, now:17843)
+> > > > - INCLUDE-return from include - caves-1623/258/loompah
+> > > > - INCLUDE-go path found, including - caves-1623/258/delicious1
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious1
+> > > > > - Begin found for:delicious1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'delicious1'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/delicious1 <> caves-1623/258/delicious1
+> > > > > - LEGS: 2 (previous: 17843, now:17845)
+> > > > - INCLUDE-return from include - caves-1623/258/delicious1
+> > > > - INCLUDE-go path found, including - caves-1623/258/delicious2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/delicious2
+> > > > > - Begin found for:delicious2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'delicious2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/delicious2 <> caves-1623/258/delicious2
+> > > > > - LEGS: 10 (previous: 17845, now:17855)
+> > > > - INCLUDE-return from include - caves-1623/258/delicious2
+> > > > - INCLUDE-go path found, including - caves-1623/258/darkfumblings
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/darkfumblings
+> > > > > - Begin found for:darkfumblings, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkfumblings'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/darkfumblings <> caves-1623/258/darkfumblings
+> > > > > - LEGS: 6 (previous: 17855, now:17861)
+> > > > - INCLUDE-return from include - caves-1623/258/darkfumblings
+> > > > - INCLUDE-go path found, including - caves-1623/258/bouldersurfer
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/bouldersurfer
+> > > > > - Begin found for:bouldersurfer, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bouldersurfer'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/bouldersurfer <> caves-1623/258/bouldersurfer
+> > > > > - LEGS: 21 (previous: 17861, now:17882)
+> > > > - INCLUDE-return from include - caves-1623/258/bouldersurfer
+> > > > - INCLUDE-go path found, including - caves-1623/258/naughtynaughty
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty
+> > > > > - Begin found for:naughtynaughty, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'naughtynaughty'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/naughtynaughty <> caves-1623/258/naughtynaughty
+> > > > > - LEGS: 37 (previous: 17882, now:17919)
+> > > > - INCLUDE-return from include - caves-1623/258/naughtynaughty
+> > > > - INCLUDE-go path found, including - caves-1623/258/flapjackchoke
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/flapjackchoke
+> > > > > - Begin found for:flapjackchoke, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flapjackchoke'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/flapjackchoke <> caves-1623/258/flapjackchoke
+> > > > > - LEGS: 11 (previous: 17919, now:17930)
+> > > > - INCLUDE-return from include - caves-1623/258/flapjackchoke
+> > > > - INCLUDE-go path found, including - caves-1623/258/rockyroad
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/rockyroad
+> > > > > - Begin found for:rockyroad, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rockyroad'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/rockyroad <> caves-1623/258/rockyroad
+> > > > > - LEGS: 46 (previous: 17930, now:17976)
+> > > > - INCLUDE-return from include - caves-1623/258/rockyroad
+> > > > - INCLUDE-go path found, including - caves-1623/258/flyinghigh3
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh3
+> > > > > - Begin found for:flyinghigh3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flyinghigh3'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/flyinghigh3 <> caves-1623/258/flyinghigh3
+> > > > > - LEGS: 10 (previous: 17976, now:17986)
+> > > > - INCLUDE-return from include - caves-1623/258/flyinghigh3
+> > > > - INCLUDE-go path found, including - caves-1623/258/gravityalwayswins
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/gravityalwayswins
+> > > > > - Begin found for:gravityalwayswins, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gravityalwayswins'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/gravityalwayswins <> caves-1623/258/gravityalwayswins
+> > > > > - LEGS: 21 (previous: 17986, now:18007)
+> > > > - INCLUDE-return from include - caves-1623/258/gravityalwayswins
+> > > > - INCLUDE-go path found, including - caves-1623/258/thinredline
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline
+> > > > > - Begin found for:thinredline, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'thinredline'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/thinredline <> caves-1623/258/thinredline
+> > > > > - LEGS: 6 (previous: 18007, now:18013)
+> > > > - INCLUDE-return from include - caves-1623/258/thinredline
+> > > > - INCLUDE-go path found, including - caves-1623/258/blindandbroken
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/blindandbroken
+> > > > > - Begin found for:blindandbroken, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'blindandbroken'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/blindandbroken <> caves-1623/258/blindandbroken
+> > > > > - LEGS: 8 (previous: 18013, now:18021)
+> > > > - INCLUDE-return from include - caves-1623/258/blindandbroken
+> > > > - INCLUDE-go path found, including - caves-1623/258/franklyfreezing
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing
+> > > > > - Begin found for:franklyfreezing, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'franklyfreezing'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/franklyfreezing <> caves-1623/258/franklyfreezing
+> > > > > - LEGS: 8 (previous: 18021, now:18029)
+> > > > - INCLUDE-return from include - caves-1623/258/franklyfreezing
+> > > > - INCLUDE-go path found, including - caves-1623/258/franklyfreezing2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/franklyfreezing2
+> > > > > - Begin found for:franklyfreezing2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'franklyfreezing2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/franklyfreezing2 <> caves-1623/258/franklyfreezing2
+> > > > > - LEGS: 16 (previous: 18029, now:18045)
+> > > > - INCLUDE-return from include - caves-1623/258/franklyfreezing2
+> > > > - INCLUDE-go path found, including - caves-1623/258/literalnorth5
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/literalnorth5
+> > > > > - Begin found for:literalnorth5, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'literalnorth5'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/literalnorth5 <> caves-1623/258/literalnorth5
+> > > > > - LEGS: 4 (previous: 18045, now:18049)
+> > > > - INCLUDE-return from include - caves-1623/258/literalnorth5
+> > > > - INCLUDE-go path found, including - caves-1623/258/naughtynaughty2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/naughtynaughty2
+> > > > > - Begin found for:naughtynaughty2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'naughtynaughty2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/naughtynaughty2 <> caves-1623/258/naughtynaughty2
+> > > > > - LEGS: 26 (previous: 18049, now:18075)
+> > > > - INCLUDE-return from include - caves-1623/258/naughtynaughty2
+> > > > - INCLUDE-go path found, including - caves-1623/258/thinredline2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/thinredline2
+> > > > > - Begin found for:thinredline2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'thinredline2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/thinredline2 <> caves-1623/258/thinredline2
+> > > > > - LEGS: 10 (previous: 18075, now:18085)
+> > > > - INCLUDE-return from include - caves-1623/258/thinredline2
+> > > > - INCLUDE-go path found, including - caves-1623/258/toomuch
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/toomuch
+> > > > > - Begin found for:toomuch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'toomuch'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/toomuch <> caves-1623/258/toomuch
+> > > > > - LEGS: 12 (previous: 18085, now:18097)
+> > > > - INCLUDE-return from include - caves-1623/258/toomuch
+> > > > - INCLUDE-go path found, including - caves-1623/258/sleepingbeauty
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/sleepingbeauty
+> > > > > - Begin found for:sleepingbeauty, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sleepingbeauty'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/sleepingbeauty <> caves-1623/258/sleepingbeauty
+> > > > > - LEGS: 4 (previous: 18097, now:18101)
+> > > > - INCLUDE-return from include - caves-1623/258/sleepingbeauty
+> > > > - INCLUDE-go path found, including - caves-1623/258/usualsuspects
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects
+> > > > > - Begin found for:usualsuspects, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'usualsuspects'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+> > > > > - Begin found for:1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: '1'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/usualsuspects <> caves-1623/258/usualsuspects
+> > > > > - LEGS: 27 (previous: 18101, now:18128)
+> > > > - INCLUDE-return from include - caves-1623/258/usualsuspects
+> > > > - INCLUDE-go path found, including - caves-1623/258/marconianempire1
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/marconianempire1
+> > > > > - Begin found for:marconianempire1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'marconianempire1'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/marconianempire1 <> caves-1623/258/marconianempire1
+> > > > > - LEGS: 14 (previous: 18128, now:18142)
+> > > > - INCLUDE-return from include - caves-1623/258/marconianempire1
+> > > > - INCLUDE-go path found, including - caves-1623/258/stomachulsa
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa
+> > > > > - Begin found for:stomachulsa, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'stomachulsa'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/stomachulsa <> caves-1623/258/stomachulsa
+> > > > > - LEGS: 17 (previous: 18142, now:18159)
+> > > > - INCLUDE-return from include - caves-1623/258/stomachulsa
+> > > > - INCLUDE-go path found, including - caves-1623/258/dampsquib
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/dampsquib
+> > > > > - Begin found for:dampsquib, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'dampsquib'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/dampsquib <> caves-1623/258/dampsquib
+> > > > > - LEGS: 7 (previous: 18159, now:18166)
+> > > > - INCLUDE-return from include - caves-1623/258/dampsquib
+> > > > - INCLUDE-go path found, including - caves-1623/258/stomachulsa2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/stomachulsa2
+> > > > > - Begin found for:stomachulsa2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'stomachulsa2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/stomachulsa2 <> caves-1623/258/stomachulsa2
+> > > > > - LEGS: 8 (previous: 18166, now:18174)
+> > > > - INCLUDE-return from include - caves-1623/258/stomachulsa2
+> > > > - INCLUDE-go path found, including - caves-1623/258/cleadjackpot
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/cleadjackpot
+> > > > > - Begin found for:cleadjackpot, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cleadjackpot'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/cleadjackpot <> caves-1623/258/cleadjackpot
+> > > > > - LEGS: 14 (previous: 18174, now:18188)
+> > > > - INCLUDE-return from include - caves-1623/258/cleadjackpot
+> > > > - INCLUDE-go path found, including - caves-1623/258/alphabetsoup
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/alphabetsoup
+> > > > > - Begin found for:alphabetsoup, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'alphabetsoup'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/alphabetsoup <> caves-1623/258/alphabetsoup
+> > > > > - LEGS: 11 (previous: 18188, now:18199)
+> > > > - INCLUDE-return from include - caves-1623/258/alphabetsoup
+> > > > - INCLUDE-go path found, including - caves-1623/258/goodygoody
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/goodygoody
+> > > > > - Begin found for:goodygoody, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'goodygoody'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/goodygoody <> caves-1623/258/goodygoody
+> > > > > - LEGS: 63 (previous: 18199, now:18262)
+> > > > - INCLUDE-return from include - caves-1623/258/goodygoody
+> > > > - INCLUDE-go path found, including - caves-1623/258/atobtoc
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/atobtoc
+> > > > > - Begin found for:atobtoc, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'atobtoc'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/atobtoc <> caves-1623/258/atobtoc
+> > > > > - LEGS: 11 (previous: 18262, now:18273)
+> > > > - INCLUDE-return from include - caves-1623/258/atobtoc
+> > > > - INCLUDE-go path found, including - caves-1623/258/stringtheory
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/stringtheory
+> > > > > - Begin found for:stringtheory, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'stringtheory'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/stringtheory <> caves-1623/258/stringtheory
+> > > > > - LEGS: 21 (previous: 18273, now:18294)
+> > > > - INCLUDE-return from include - caves-1623/258/stringtheory
+> > > > - INCLUDE-go path found, including - caves-1623/258/konigsbergpassage
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsbergpassage
+> > > > > - Begin found for:konigsbergpassage, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'konigsbergpassage'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/konigsbergpassage <> caves-1623/258/konigsbergpassage
+> > > > > - LEGS: 35 (previous: 18294, now:18329)
+> > > > - INCLUDE-return from include - caves-1623/258/konigsbergpassage
+> > > > - INCLUDE-go path found, including - caves-1623/258/usualsuspects4
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects4
+> > > > > - Begin found for:usualsuspects4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'usualsuspects4'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/usualsuspects4 <> caves-1623/258/usualsuspects4
+> > > > > - LEGS: 14 (previous: 18329, now:18343)
+> > > > - INCLUDE-return from include - caves-1623/258/usualsuspects4
+> > > > - INCLUDE-go path found, including - caves-1623/258/usualsuspects5
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects5
+> > > > > - Begin found for:usualsuspects5, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'usualsuspects5'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/usualsuspects5 <> caves-1623/258/usualsuspects5
+> > > > > - LEGS: 8 (previous: 18343, now:18351)
+> > > > - INCLUDE-return from include - caves-1623/258/usualsuspects5
+> > > > - INCLUDE-go path found, including - caves-1623/258/usualsuspects6
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/usualsuspects6
+> > > > > - Begin found for:usualsuspects6, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'usualsuspects6'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/usualsuspects6 <> caves-1623/258/usualsuspects6
+> > > > > - LEGS: 13 (previous: 18351, now:18364)
+> > > > - INCLUDE-return from include - caves-1623/258/usualsuspects6
+> > > > - INCLUDE-go path found, including - caves-1623/258/sovein
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein
+> > > > > - Begin found for:sovein, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sovein'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/sovein <> caves-1623/258/sovein
+> > > > > - LEGS: 17 (previous: 18364, now:18381)
+> > > > - INCLUDE-return from include - caves-1623/258/sovein
+> > > > - INCLUDE-go path found, including - caves-1623/258/konigsberg2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg2
+> > > > > - Begin found for:konigsberg2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'konigsberg2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/konigsberg2 <> caves-1623/258/konigsberg2
+> > > > > - LEGS: 10 (previous: 18381, now:18391)
+> > > > - INCLUDE-return from include - caves-1623/258/konigsberg2
+> > > > - INCLUDE-go path found, including - caves-1623/258/konigsberg3
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg3
+> > > > > - Begin found for:konigsberg3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'konigsberg3'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/konigsberg3 <> caves-1623/258/konigsberg3
+> > > > > - LEGS: 19 (previous: 18391, now:18410)
+> > > > - INCLUDE-return from include - caves-1623/258/konigsberg3
+> > > > - INCLUDE-go path found, including - caves-1623/258/fallempire
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/fallempire
+> > > > > - Begin found for:fallempire, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fallempire'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/fallempire <> caves-1623/258/fallempire
+> > > > > - LEGS: 7 (previous: 18410, now:18417)
+> > > > - INCLUDE-return from include - caves-1623/258/fallempire
+> > > > - INCLUDE-go path found, including - caves-1623/258/pigeondroppings
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings
+> > > > > - Begin found for:pigeondroppings, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pigeondroppings'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/pigeondroppings <> caves-1623/258/pigeondroppings
+> > > > > - LEGS: 17 (previous: 18417, now:18434)
+> > > > - INCLUDE-return from include - caves-1623/258/pigeondroppings
+> > > > - INCLUDE-go path found, including - caves-1623/258/pigeondroppings2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings2
+> > > > > - Begin found for:pigeondroppings2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pigeondroppings2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/pigeondroppings2 <> caves-1623/258/pigeondroppings2
+> > > > > - LEGS: 17 (previous: 18434, now:18451)
+> > > > - INCLUDE-return from include - caves-1623/258/pigeondroppings2
+> > > > - INCLUDE-go path found, including - caves-1623/258/pigeondroppings3
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/pigeondroppings3
+> > > > > - Begin found for:pigeondroppings3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pigeondroppings3'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/pigeondroppings3 <> caves-1623/258/pigeondroppings3
+> > > > > - LEGS: 26 (previous: 18451, now:18477)
+> > > > - INCLUDE-return from include - caves-1623/258/pigeondroppings3
+> > > > - INCLUDE-go path found, including - caves-1623/258/trident
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident
+> > > > > - Begin found for:trident, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'trident'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/trident <> caves-1623/258/trident
+> > > > > - LEGS: 15 (previous: 18477, now:18492)
+> > > > - INCLUDE-return from include - caves-1623/258/trident
+> > > > - INCLUDE-go path found, including - caves-1623/258/hastespeed
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/hastespeed
+> > > > > - Begin found for:hastespeed, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hastespeed'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/hastespeed <> caves-1623/258/hastespeed
+> > > > > - LEGS: 22 (previous: 18492, now:18514)
+> > > > - INCLUDE-return from include - caves-1623/258/hastespeed
+> > > > - INCLUDE-go path found, including - caves-1623/258/straightchoice
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoice
+> > > > > - Begin found for:straightchoice, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'straightchoice'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/straightchoice <> caves-1623/258/straightchoice
+> > > > > - LEGS: 25 (previous: 18514, now:18539)
+> > > > - INCLUDE-return from include - caves-1623/258/straightchoice
+> > > > - INCLUDE-go path found, including - caves-1623/258/arcticangle
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/arcticangle
+> > > > > - Begin found for:arcticangle, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'arcticangle'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/arcticangle <> caves-1623/258/arcticangle
+> > > > > - LEGS: 19 (previous: 18539, now:18558)
+> > > > - INCLUDE-return from include - caves-1623/258/arcticangle
+> > > > - INCLUDE-go path found, including - caves-1623/258/straightchoiceexposed
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/straightchoiceexposed
+> > > > > - Begin found for:straightchoiceexposed, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'straightchoiceexposed'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/straightchoiceexposed <> caves-1623/258/straightchoiceexposed
+> > > > > - LEGS: 5 (previous: 18558, now:18563)
+> > > > - INCLUDE-return from include - caves-1623/258/straightchoiceexposed
+> > > > - INCLUDE-go path found, including - caves-1623/258/beerandsunshine
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/beerandsunshine
+> > > > > - Begin found for:beerandsunshine, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'beerandsunshine'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/beerandsunshine <> caves-1623/258/beerandsunshine
+> > > > > - LEGS: 3 (previous: 18563, now:18566)
+> > > > - INCLUDE-return from include - caves-1623/258/beerandsunshine
+> > > > - INCLUDE-go path found, including - caves-1623/258/trident2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/trident2
+> > > > > - Begin found for:trident2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'trident2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/trident2 <> caves-1623/258/trident2
+> > > > > - LEGS: 7 (previous: 18566, now:18573)
+> > > > - INCLUDE-return from include - caves-1623/258/trident2
+> > > > - INCLUDE-go path found, including - caves-1623/258/konigsberg4
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg4
+> > > > > - Begin found for:konigsberg4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'konigsberg4'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/konigsberg4 <> caves-1623/258/konigsberg4
+> > > > > - LEGS: 22 (previous: 18573, now:18595)
+> > > > - INCLUDE-return from include - caves-1623/258/konigsberg4
+> > > > - INCLUDE-go path found, including - caves-1623/258/sovein2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/sovein2
+> > > > > - Begin found for:sovein2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sovein2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/sovein2 <> caves-1623/258/sovein2
+> > > > > - LEGS: 7 (previous: 18595, now:18602)
+> > > > - INCLUDE-return from include - caves-1623/258/sovein2
+> > > > - INCLUDE-go path found, including - caves-1623/258/downtoearth
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth
+> > > > > - Begin found for:downtoearth, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'downtoearth'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/downtoearth <> caves-1623/258/downtoearth
+> > > > > - LEGS: 3 (previous: 18602, now:18605)
+> > > > - INCLUDE-return from include - caves-1623/258/downtoearth
+> > > > - INCLUDE-go path found, including - caves-1623/258/konigsberg5
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/konigsberg5
+> > > > > - Begin found for:konigsberg5, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'konigsberg5'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/konigsberg5 <> caves-1623/258/konigsberg5
+> > > > > - LEGS: 29 (previous: 18605, now:18634)
+> > > > - INCLUDE-return from include - caves-1623/258/konigsberg5
+> > > > - INCLUDE-go path found, including - caves-1623/258/downtoearth2
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/downtoearth2
+> > > > > - Begin found for:downtoearth2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'downtoearth2'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/downtoearth2 <> caves-1623/258/downtoearth2
+> > > > > - LEGS: 11 (previous: 18634, now:18645)
+> > > > - INCLUDE-return from include - caves-1623/258/downtoearth2
+> > > > - INCLUDE-go path found, including - caves-1623/258/flyinghigh4
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh4
+> > > > > - Begin found for:flyinghigh4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flyinghigh4'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/flyinghigh4 <> caves-1623/258/flyinghigh4
+> > > > > - LEGS: 4 (previous: 18645, now:18649)
+> > > > - INCLUDE-return from include - caves-1623/258/flyinghigh4
+> > > > - INCLUDE-go path found, including - caves-1623/258/flyinghigh5
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/flyinghigh5
+> > > > > - Begin found for:flyinghigh5, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'flyinghigh5'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/flyinghigh5 <> caves-1623/258/flyinghigh5
+> > > > > - LEGS: 11 (previous: 18649, now:18660)
+> > > > - INCLUDE-return from include - caves-1623/258/flyinghigh5
+> > > > - INCLUDE-go path found, including - caves-1623/258/gawbypass
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/gawbypass
+> > > > > - Begin found for:gawbypass, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gawbypass'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/gawbypass <> caves-1623/258/gawbypass
+> > > > > - LEGS: 8 (previous: 18660, now:18668)
+> > > > - INCLUDE-return from include - caves-1623/258/gawbypass
+> > > > - INCLUDE-go path found, including - caves-1623/258/iceflow
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/iceflow
+> > > > > - Begin found for:iceflow, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'iceflow'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/iceflow <> caves-1623/258/iceflow
+> > > > > - LEGS: 20 (previous: 18668, now:18688)
+> > > > - INCLUDE-return from include - caves-1623/258/iceflow
+> > > > - INCLUDE-go path found, including - caves-1623/258/rampant
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/rampant
+> > > > > - Begin found for:rampant, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rampant'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/rampant <> caves-1623/258/rampant
+> > > > > - LEGS: 12 (previous: 18688, now:18700)
+> > > > - INCLUDE-return from include - caves-1623/258/rampant
+> > > > - INCLUDE-go path found, including - caves-1623/258/tagbolts
+> > > > - Match in DB (i) for cave 1623-258.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/258/258 <> caves-1623/258/tagbolts
+> > > > > - Begin found for:tagbolta, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'tagbolta'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/258/tagbolts <> caves-1623/258/tagbolts
+> > > > > - LEGS: 1 (previous: 18700, now:18701)
+> > > > - INCLUDE-return from include - caves-1623/258/tagbolts
+> > > > - LEGS: 2385 (previous: 16316, now:18701)
+> > > - INCLUDE-return from include - caves-1623/258/258
+> > > - INCLUDE-go path found, including - caves-1623/264/264
+> > > - Match in DB (i) for cave 1623-264.
+> > > > - MEM:49.344 Reading. parent:kataster/1623 <> caves-1623/264/264
+> > > > - Begin found for:264, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '264'
+> > > > > - MEM:49.344 Reading. parent:caves-1623/264/264 <> caves-1623/264/264
+> > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/lower_balkon
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.344 Reading. parent:caves-1623/264/264 <> caves-1623/264/lower_balkon/lower_balkon
+> > > > > - Begin found for:lower_balkon, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lower_balkon'
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lower_balkon
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/naturecalls
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/naturecalls
+> > > > > > - Begin found for:naturecalls, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'naturecalls'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/naturecalls <> caves-1623/264/lower_balkon/naturecalls
+> > > > > > - LEGS: 9 (previous: 18701, now:18710)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/naturecalls
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/mash
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash
+> > > > > > - Begin found for:mash, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mash'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/mash <> caves-1623/264/lower_balkon/mash
+> > > > > > - LEGS: 48 (previous: 18710, now:18758)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/mash
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/mash2
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mash2
+> > > > > > - Begin found for:mash2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mash2'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/mash2 <> caves-1623/264/lower_balkon/mash2
+> > > > > > - LEGS: 65 (previous: 18758, now:18823)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/mash2
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/hangman
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangman
+> > > > > > - Begin found for:hangman, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hangman'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/hangman <> caves-1623/264/lower_balkon/hangman
+> > > > > > - LEGS: 145 (previous: 18823, now:18968)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/hangman
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > > - Begin found for:hangmansdaughter, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'hangmansdaughter'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/hangmansdaughter <> caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > > - LEGS: 217 (previous: 18968, now:19185)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/hangmansdaughter
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/prangman
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/prangman
+> > > > > > - Begin found for:prangman, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'prangman'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/prangman <> caves-1623/264/lower_balkon/prangman
+> > > > > > - LEGS: 55 (previous: 19185, now:19240)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/prangman
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/snailtrail
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/snailtrail
+> > > > > > - Begin found for:snailtrail, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'snailtrail'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/snailtrail <> caves-1623/264/lower_balkon/snailtrail
+> > > > > > - LEGS: 206 (previous: 19240, now:19446)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/snailtrail
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/sluggish
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/sluggish
+> > > > > > - Begin found for:sluggish, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'sluggish'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/sluggish <> caves-1623/264/lower_balkon/sluggish
+> > > > > > - LEGS: 173 (previous: 19446, now:19619)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/sluggish
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/mudslope
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope
+> > > > > > - Begin found for:mudslope, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mudslope'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/mudslope <> caves-1623/264/lower_balkon/mudslope
+> > > > > > - LEGS: 241 (previous: 19619, now:19860)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/mudslope
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/choked
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/choked
+> > > > > > - Begin found for:choked, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'choked'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/choked <> caves-1623/264/lower_balkon/choked
+> > > > > > - LEGS: 152 (previous: 19860, now:20012)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/choked
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/mudslope2
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mudslope2
+> > > > > > - Begin found for:mudslope2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mudslope2'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/mudslope2 <> caves-1623/264/lower_balkon/mudslope2
+> > > > > > - LEGS: 255 (previous: 20012, now:20267)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/mudslope2
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/mongolrally
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mongolrally
+> > > > > > - Begin found for:mongolrally, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mongolrally'
+> > > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/mongolrally <> caves-1623/264/lower_balkon/mongolrally
+> > > > > > - LEGS: 398 (previous: 20267, now:20665)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/mongolrally
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/littleboy
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.344 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboy
+> > > > > > - Begin found for:littleboy, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'littleboy'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/littleboy <> caves-1623/264/lower_balkon/littleboy
+> > > > > > - LEGS: 1169 (previous: 20665, now:21834)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/littleboy
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/floodland
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/floodland
+> > > > > > - Begin found for:floodland, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'floodland'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/floodland <> caves-1623/264/lower_balkon/floodland
+> > > > > > - LEGS: 93 (previous: 21834, now:21927)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/floodland
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/catlitter
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/catlitter
+> > > > > > - Begin found for:catlitter, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'catlitter'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/catlitter <> caves-1623/264/lower_balkon/catlitter
+> > > > > > - LEGS: 7 (previous: 21927, now:21934)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/catlitter
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/myopia
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia
+> > > > > > - Begin found for:myopia, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'myopia'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/myopia <> caves-1623/264/lower_balkon/myopia
+> > > > > > - LEGS: 11 (previous: 21934, now:21945)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/myopia
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/pitstop
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop
+> > > > > > - Begin found for:pitstop, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pitstop'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/pitstop <> caves-1623/264/lower_balkon/pitstop
+> > > > > > - LEGS: 56 (previous: 21945, now:22001)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/pitstop
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/safencomfortable
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/safencomfortable
+> > > > > > - Begin found for:safencomfortable, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'safencomfortable'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/safencomfortable <> caves-1623/264/lower_balkon/safencomfortable
+> > > > > > - LEGS: 43 (previous: 22001, now:22044)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/safencomfortable
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/turnbacktime
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/turnbacktime
+> > > > > > - Begin found for:turnbacktime, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'turnbacktime'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/turnbacktime <> caves-1623/264/lower_balkon/turnbacktime
+> > > > > > - LEGS: 21 (previous: 22044, now:22065)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/turnbacktime
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/pitstop_2
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_2
+> > > > > > - Begin found for:pitstop_2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pitstop_2'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/pitstop_2 <> caves-1623/264/lower_balkon/pitstop_2
+> > > > > > - LEGS: 2 (previous: 22065, now:22067)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/pitstop_2
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/pitstop_3
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_3
+> > > > > > - Begin found for:pitstop_3, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pitstop_3'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/pitstop_3 <> caves-1623/264/lower_balkon/pitstop_3
+> > > > > > - LEGS: 7 (previous: 22067, now:22074)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/pitstop_3
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/pitstop_4
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/pitstop_4
+> > > > > > - Begin found for:pitstop_4, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'pitstop_4'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/pitstop_4 <> caves-1623/264/lower_balkon/pitstop_4
+> > > > > > - LEGS: 9 (previous: 22074, now:22083)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/pitstop_4
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/suctioncup
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/suctioncup
+> > > > > > - Begin found for:suctioncup, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'suctioncup'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/suctioncup <> caves-1623/264/lower_balkon/suctioncup
+> > > > > > - LEGS: 371 (previous: 22083, now:22454)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/suctioncup
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/onedirection
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/onedirection
+> > > > > > - Begin found for:onedirection, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'onedirection'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/onedirection <> caves-1623/264/lower_balkon/onedirection
+> > > > > > - LEGS: 28 (previous: 22454, now:22482)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/onedirection
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/scoopyloopy
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/scoopyloopy
+> > > > > > - Begin found for:scoopyloopy, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'scoopyloopy'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/scoopyloopy <> caves-1623/264/lower_balkon/scoopyloopy
+> > > > > > - LEGS: 12 (previous: 22482, now:22494)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/scoopyloopy
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/2cold2think
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/2cold2think
+> > > > > > - Begin found for:2cold2think, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: '2cold2think'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/2cold2think <> caves-1623/264/lower_balkon/2cold2think
+> > > > > > - LEGS: 64 (previous: 22494, now:22558)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/2cold2think
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/mush
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/mush
+> > > > > > - Begin found for:mush, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'mush'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/mush <> caves-1623/264/lower_balkon/mush
+> > > > > > - LEGS: 465 (previous: 22558, now:23023)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/mush
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/rubberman
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubberman
+> > > > > > - Begin found for:rubberman, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rubberman'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/rubberman <> caves-1623/264/lower_balkon/rubberman
+> > > > > > - LEGS: 217 (previous: 23023, now:23240)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/rubberman
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/rubbermanstream
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/rubbermanstream
+> > > > > > - Begin found for:rubbermanstream, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'rubbermanstream'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/rubbermanstream <> caves-1623/264/lower_balkon/rubbermanstream
+> > > > > > - LEGS: 86 (previous: 23240, now:23326)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/rubbermanstream
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/camploop
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/camploop
+> > > > > > - Begin found for:camploop, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'camploop'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/camploop <> caves-1623/264/lower_balkon/camploop
+> > > > > > - LEGS: 35 (previous: 23326, now:23361)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/camploop
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/waterhole
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/waterhole
+> > > > > > - Begin found for:waterhole, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'waterhole'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/waterhole <> caves-1623/264/lower_balkon/waterhole
+> > > > > > - LEGS: 18 (previous: 23361, now:23379)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/waterhole
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > > - Begin found for:littleboyboltclimbs, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'littleboyboltclimbs'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/littleboyboltclimbs <> caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > > - LEGS: 4 (previous: 23379, now:23383)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/littleboyboltclimbs
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > > - Begin found for:lbbeneaththeboulders, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lbbeneaththeboulders'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lbbeneaththeboulders <> caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > > - LEGS: 10 (previous: 23383, now:23393)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/lbbeneaththeboulders
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/ntdwyt
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ntdwyt
+> > > > > > - Begin found for:ntdwyt, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ntdwyt'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/ntdwyt <> caves-1623/264/lower_balkon/ntdwyt
+> > > > > > - LEGS: 6 (previous: 23393, now:23399)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/ntdwyt
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > > - Begin found for:northernpowerhouse, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'northernpowerhouse'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/northernpowerhouse <> caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > > - LEGS: 202 (previous: 23399, now:23601)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/northernpowerhouse
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > > - Begin found for:youdontknowyourebeautiful, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'youdontknowyourebeautiful'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/youdontknowyourebeautiful <> caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > > - LEGS: 237 (previous: 23601, now:23838)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/youdontknowyourebeautiful
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/microscopicthunder
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/microscopicthunder
+> > > > > > - Begin found for:microscopicthunder, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'microscopicthunder'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/microscopicthunder <> caves-1623/264/lower_balkon/microscopicthunder
+> > > > > > - LEGS: 62 (previous: 23838, now:23900)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/microscopicthunder
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > > - Begin found for:ichfuhlenichts, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'ichfuhlenichts'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/ichfuhlenichts <> caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > > - LEGS: 118 (previous: 23900, now:24018)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/ichfuhlenichts
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/einfach
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/einfach
+> > > > > > - Begin found for:einfach, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'einfach'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/einfach <> caves-1623/264/lower_balkon/einfach
+> > > > > > - LEGS: 20 (previous: 24018, now:24038)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/einfach
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > > - Begin found for:lipstickdipstick, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'lipstickdipstick'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lipstickdipstick <> caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > > - LEGS: 19 (previous: 24038, now:24057)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/lipstickdipstick
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/medusasmaze
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze
+> > > > > > - Begin found for:medusasmaze, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'medusasmaze'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/medusasmaze <> caves-1623/264/lower_balkon/medusasmaze
+> > > > > > - LEGS: 32 (previous: 24057, now:24089)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/medusasmaze
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/medusasmaze2
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/medusasmaze2
+> > > > > > - Begin found for:medusasmaze2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'medusasmaze2'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/medusasmaze2 <> caves-1623/264/lower_balkon/medusasmaze2
+> > > > > > - LEGS: 33 (previous: 24089, now:24122)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/medusasmaze2
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/wheresthemilk
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/wheresthemilk
+> > > > > > - Begin found for:wheresthemilk, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'wheresthemilk'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/wheresthemilk <> caves-1623/264/lower_balkon/wheresthemilk
+> > > > > > - LEGS: 6 (previous: 24122, now:24128)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/wheresthemilk
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/drunkdrivers
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/drunkdrivers
+> > > > > > - Begin found for:drunkdrivers, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'drunkdrivers'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/drunkdrivers <> caves-1623/264/lower_balkon/drunkdrivers
+> > > > > > - LEGS: 3 (previous: 24128, now:24131)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/drunkdrivers
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/custardcavalry
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/custardcavalry
+> > > > > > - Begin found for:custardcavalry, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'custardcavalry'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/custardcavalry <> caves-1623/264/lower_balkon/custardcavalry
+> > > > > > - LEGS: 2 (previous: 24131, now:24133)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/custardcavalry
+> > > > > - INCLUDE-go path found, including - caves-1623/264/lower_balkon/myopia2
+> > > > > - Match in DB (i) for cave 1623-264.
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/lower_balkon <> caves-1623/264/lower_balkon/myopia2
+> > > > > > - Begin found for:myopia2, creating new SurvexBlock
+> > > > > > - BLOCK-enter nested *begin/*end block: 'myopia2'
+> > > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lower_balkon/myopia2 <> caves-1623/264/lower_balkon/myopia2
+> > > > > > - LEGS: 3 (previous: 24133, now:24136)
+> > > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/myopia2
+> > > > > - LEGS: 5435 (previous: 18701, now:24136)
+> > > > - INCLUDE-return from include - caves-1623/264/lower_balkon/lower_balkon
+> > > > - INCLUDE-go path found, including - caves-1623/264/horizontalentrance
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/horizontalentrance
+> > > > > - Begin found for:horizontalentrance, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'horizontalentrance'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/horizontalentrance <> caves-1623/264/horizontalentrance
+> > > > > - LEGS: 8 (previous: 24136, now:24144)
+> > > > - INCLUDE-return from include - caves-1623/264/horizontalentrance
+> > > > - INCLUDE-go path found, including - caves-1623/264/entrancepitch1
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch1
+> > > > > - Begin found for:entrancepitch1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'entrancepitch1'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/entrancepitch1 <> caves-1623/264/entrancepitch1
+> > > > > - LEGS: 3 (previous: 24144, now:24147)
+> > > > - INCLUDE-return from include - caves-1623/264/entrancepitch1
+> > > > - INCLUDE-go path found, including - caves-1623/264/entrancepitch2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/entrancepitch2
+> > > > > - Begin found for:entrancepitch2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'entrancepitch2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/entrancepitch2 <> caves-1623/264/entrancepitch2
+> > > > > - LEGS: 5 (previous: 24147, now:24152)
+> > > > - INCLUDE-return from include - caves-1623/264/entrancepitch2
+> > > > - INCLUDE-go path found, including - caves-1623/264/roomwithaview
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview
+> > > > > - Begin found for:roomwithaview, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'roomwithaview'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/roomwithaview <> caves-1623/264/roomwithaview
+> > > > > - LEGS: 10 (previous: 24152, now:24162)
+> > > > - INCLUDE-return from include - caves-1623/264/roomwithaview
+> > > > - INCLUDE-go path found, including - caves-1623/264/roommop
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/roommop
+> > > > > - Begin found for:roommop, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'roommop'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/roommop <> caves-1623/264/roommop
+> > > > > - LEGS: 3 (previous: 24162, now:24165)
+> > > > - INCLUDE-return from include - caves-1623/264/roommop
+> > > > - INCLUDE-go path found, including - caves-1623/264/roomwithaview2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/roomwithaview2
+> > > > > - Begin found for:roomwithaview2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'roomwithaview2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/roomwithaview2 <> caves-1623/264/roomwithaview2
+> > > > > - LEGS: 20 (previous: 24165, now:24185)
+> > > > - INCLUDE-return from include - caves-1623/264/roomwithaview2
+> > > > - INCLUDE-go path found, including - caves-1623/264/smashcrashpassage
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/smashcrashpassage
+> > > > > - Begin found for:smashcrashpassage, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'smashcrashpassage'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/smashcrashpassage <> caves-1623/264/smashcrashpassage
+> > > > > - LEGS: 12 (previous: 24185, now:24197)
+> > > > - INCLUDE-return from include - caves-1623/264/smashcrashpassage
+> > > > - INCLUDE-go path found, including - caves-1623/264/crashmop
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/crashmop
+> > > > > - Begin found for:crashmop, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'crashmop'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/crashmop <> caves-1623/264/crashmop
+> > > > > - LEGS: 26 (previous: 24197, now:24223)
+> > > > - INCLUDE-return from include - caves-1623/264/crashmop
+> > > > - INCLUDE-go path found, including - caves-1623/264/liarsbakery
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/liarsbakery
+> > > > > - Begin found for:liarsbakery, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'liarsbakery'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/liarsbakery <> caves-1623/264/liarsbakery
+> > > > > - LEGS: 15 (previous: 24223, now:24238)
+> > > > - INCLUDE-return from include - caves-1623/264/liarsbakery
+> > > > - INCLUDE-go path found, including - caves-1623/264/pitpot
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot
+> > > > > - Begin found for:pitpot, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pitpot'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pitpot <> caves-1623/264/pitpot
+> > > > > - LEGS: 2 (previous: 24238, now:24240)
+> > > > - INCLUDE-return from include - caves-1623/264/pitpot
+> > > > - INCLUDE-go path found, including - caves-1623/264/lemonsnout
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnout
+> > > > > - Begin found for:lemonsnout, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lemonsnout'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lemonsnout <> caves-1623/264/lemonsnout
+> > > > > - LEGS: 27 (previous: 24240, now:24267)
+> > > > - INCLUDE-return from include - caves-1623/264/lemonsnout
+> > > > - INCLUDE-go path found, including - caves-1623/264/leedsbypass
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass
+> > > > > - Begin found for:leedsbypass, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'leedsbypass'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/leedsbypass <> caves-1623/264/leedsbypass
+> > > > > - LEGS: 37 (previous: 24267, now:24304)
+> > > > - INCLUDE-return from include - caves-1623/264/leedsbypass
+> > > > - INCLUDE-go path found, including - caves-1623/264/pitpot2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot2
+> > > > > - Begin found for:pitpot2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pitpot2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pitpot2 <> caves-1623/264/pitpot2
+> > > > > - LEGS: 13 (previous: 24304, now:24317)
+> > > > - INCLUDE-return from include - caves-1623/264/pitpot2
+> > > > - INCLUDE-go path found, including - caves-1623/264/pitpot3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitpot3
+> > > > > - Begin found for:pitpot3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pitpot3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pitpot3 <> caves-1623/264/pitpot3
+> > > > > - LEGS: 5 (previous: 24317, now:24322)
+> > > > - INCLUDE-return from include - caves-1623/264/pitpot3
+> > > > - INCLUDE-go path found, including - caves-1623/264/amalgamation
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/amalgamation
+> > > > > - Begin found for:amalgamation, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'amalgamation'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/amalgamation <> caves-1623/264/amalgamation
+> > > > > - LEGS: 48 (previous: 24322, now:24370)
+> > > > - INCLUDE-return from include - caves-1623/264/amalgamation
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkarts
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkarts
+> > > > > - Begin found for:darkarts, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkarts'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkarts <> caves-1623/264/darkarts
+> > > > > - LEGS: 11 (previous: 24370, now:24381)
+> > > > - INCLUDE-return from include - caves-1623/264/darkarts
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkartsII
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsII
+> > > > > - Begin found for:darkartsii, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkartsii'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkartsII <> caves-1623/264/darkartsII
+> > > > > - LEGS: 10 (previous: 24381, now:24391)
+> > > > - INCLUDE-return from include - caves-1623/264/darkartsII
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkartsI
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsI
+> > > > > - Begin found for:darkartsi, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkartsi'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkartsI <> caves-1623/264/darkartsI
+> > > > > - LEGS: 15 (previous: 24391, now:24406)
+> > > > - INCLUDE-return from include - caves-1623/264/darkartsI
+> > > > - INCLUDE-go path found, including - caves-1623/264/leedsbypass2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass2
+> > > > > - Begin found for:leedsbypass2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'leedsbypass2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/leedsbypass2 <> caves-1623/264/leedsbypass2
+> > > > > - LEGS: 12 (previous: 24406, now:24418)
+> > > > - INCLUDE-return from include - caves-1623/264/leedsbypass2
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkartsiii
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiii
+> > > > > - Begin found for:darkartsiii, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkartsiii'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkartsiii <> caves-1623/264/darkartsiii
+> > > > > - LEGS: 5 (previous: 24418, now:24423)
+> > > > - INCLUDE-return from include - caves-1623/264/darkartsiii
+> > > > - INCLUDE-go path found, including - caves-1623/264/scrottytubei
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubei
+> > > > > - Begin found for:scrottytubei, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'scrottytubei'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/scrottytubei <> caves-1623/264/scrottytubei
+> > > > > - LEGS: 3 (previous: 24423, now:24426)
+> > > > - INCLUDE-return from include - caves-1623/264/scrottytubei
+> > > > - INCLUDE-go path found, including - caves-1623/264/scrottytubeii
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/scrottytubeii
+> > > > > - Begin found for:scrottytubeii, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'scrottytubeii'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/scrottytubeii <> caves-1623/264/scrottytubeii
+> > > > > - LEGS: 7 (previous: 24426, now:24433)
+> > > > - INCLUDE-return from include - caves-1623/264/scrottytubeii
+> > > > - INCLUDE-go path found, including - caves-1623/264/lemonsnoutrosyringpiece
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemonsnoutrosyringpiece
+> > > > > - Begin found for:lemonsnoutrosyringpiece, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lemonsnoutrosyringpiece'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lemonsnoutrosyringpiece <> caves-1623/264/lemonsnoutrosyringpiece
+> > > > > - LEGS: 6 (previous: 24433, now:24439)
+> > > > - INCLUDE-return from include - caves-1623/264/lemonsnoutrosyringpiece
+> > > > - INCLUDE-go path found, including - caves-1623/264/pointlesssniffing
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointlesssniffing
+> > > > > - Begin found for:pointlesssniffing, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pointlesssniffing'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pointlesssniffing <> caves-1623/264/pointlesssniffing
+> > > > > - LEGS: 2 (previous: 24439, now:24441)
+> > > > - INCLUDE-return from include - caves-1623/264/pointlesssniffing
+> > > > - INCLUDE-go path found, including - caves-1623/264/deadbatpitch
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitch
+> > > > > - Begin found for:deadbatpitch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'deadbatpitch'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/deadbatpitch <> caves-1623/264/deadbatpitch
+> > > > > - LEGS: 7 (previous: 24441, now:24448)
+> > > > - INCLUDE-return from include - caves-1623/264/deadbatpitch
+> > > > - INCLUDE-go path found, including - caves-1623/264/deadbatpitchconn
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/deadbatpitchconn
+> > > > > - Begin found for:deadbatpitchconn, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'deadbatpitchconn'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/deadbatpitchconn <> caves-1623/264/deadbatpitchconn
+> > > > > - LEGS: 1 (previous: 24448, now:24449)
+> > > > - INCLUDE-return from include - caves-1623/264/deadbatpitchconn
+> > > > - INCLUDE-go path found, including - caves-1623/264/lemoncrapout
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/lemoncrapout
+> > > > > - Begin found for:lemoncrapout, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lemoncrapout'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lemoncrapout <> caves-1623/264/lemoncrapout
+> > > > > - LEGS: 16 (previous: 24449, now:24465)
+> > > > - INCLUDE-return from include - caves-1623/264/lemoncrapout
+> > > > - INCLUDE-go path found, including - caves-1623/264/farside
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/farside
+> > > > > - Begin found for:farside, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'farside'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/farside <> caves-1623/264/farside
+> > > > > - LEGS: 77 (previous: 24465, now:24542)
+> > > > - INCLUDE-return from include - caves-1623/264/farside
+> > > > - INCLUDE-go path found, including - caves-1623/264/turtlehead
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtlehead
+> > > > > - Begin found for:turtlehead, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'turtlehead'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/turtlehead <> caves-1623/264/turtlehead
+> > > > > - LEGS: 48 (previous: 24542, now:24590)
+> > > > - INCLUDE-return from include - caves-1623/264/turtlehead
+> > > > - INCLUDE-go path found, including - caves-1623/264/turtleheadco
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/turtleheadco
+> > > > > - Begin found for:turtleheadco, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'turtleheadco'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/turtleheadco <> caves-1623/264/turtleheadco
+> > > > > - LEGS: 6 (previous: 24590, now:24596)
+> > > > - INCLUDE-return from include - caves-1623/264/turtleheadco
+> > > > - INCLUDE-go path found, including - caves-1623/264/leedsbypass3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/leedsbypass3
+> > > > > - Begin found for:leedsbypass3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'leedsbypass3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/leedsbypass3 <> caves-1623/264/leedsbypass3
+> > > > > - LEGS: 3 (previous: 24596, now:24599)
+> > > > - INCLUDE-return from include - caves-1623/264/leedsbypass3
+> > > > - INCLUDE-go path found, including - caves-1623/264/hiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplenty
+> > > > > - Begin found for:hiltiaplenty, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hiltiaplenty'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hiltiaplenty <> caves-1623/264/hiltiaplenty
+> > > > > - LEGS: 4 (previous: 24599, now:24603)
+> > > > - INCLUDE-return from include - caves-1623/264/hiltiaplenty
+> > > > - INCLUDE-go path found, including - caves-1623/264/spanner
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/spanner
+> > > > > - Begin found for:spanner, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'spanner'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/spanner <> caves-1623/264/spanner
+> > > > > - LEGS: 14 (previous: 24603, now:24617)
+> > > > - INCLUDE-return from include - caves-1623/264/spanner
+> > > > - INCLUDE-go path found, including - caves-1623/264/cathedralchasm
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm
+> > > > > - Begin found for:cathedralchasm, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cathedralchasm'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/cathedralchasm <> caves-1623/264/cathedralchasm
+> > > > > - LEGS: 11 (previous: 24617, now:24628)
+> > > > - INCLUDE-return from include - caves-1623/264/cathedralchasm
+> > > > - INCLUDE-go path found, including - caves-1623/264/cathedralLC1
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC1
+> > > > > - Begin found for:cathedrallc1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cathedrallc1'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/cathedralLC1 <> caves-1623/264/cathedralLC1
+> > > > > - LEGS: 1 (previous: 24628, now:24629)
+> > > > - INCLUDE-return from include - caves-1623/264/cathedralLC1
+> > > > - INCLUDE-go path found, including - caves-1623/264/cathedralLC2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralLC2
+> > > > > - Begin found for:cathedrallc2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cathedrallc2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/cathedralLC2 <> caves-1623/264/cathedralLC2
+> > > > > - LEGS: 8 (previous: 24629, now:24637)
+> > > > - INCLUDE-return from include - caves-1623/264/cathedralLC2
+> > > > - INCLUDE-go path found, including - caves-1623/264/avalancheexperience
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/avalancheexperience
+> > > > > - Begin found for:avalancheexperience, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'avalancheexperience'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/avalancheexperience <> caves-1623/264/avalancheexperience
+> > > > > - LEGS: 19 (previous: 24637, now:24656)
+> > > > - INCLUDE-return from include - caves-1623/264/avalancheexperience
+> > > > - INCLUDE-go path found, including - caves-1623/264/pitch59b
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pitch59b
+> > > > > - Begin found for:pitch59b, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pitch59b'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pitch59b <> caves-1623/264/pitch59b
+> > > > > - LEGS: 17 (previous: 24656, now:24673)
+> > > > - INCLUDE-return from include - caves-1623/264/pitch59b
+> > > > - INCLUDE-go path found, including - caves-1623/264/noserock
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock
+> > > > > - Begin found for:noserock, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'noserock'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/noserock <> caves-1623/264/noserock
+> > > > > - LEGS: 39 (previous: 24673, now:24712)
+> > > > - INCLUDE-return from include - caves-1623/264/noserock
+> > > > - INCLUDE-go path found, including - caves-1623/264/einundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/einundzwanzig
+> > > > > - Begin found for:einundzwanzig, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'einundzwanzig'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/einundzwanzig <> caves-1623/264/einundzwanzig
+> > > > > - LEGS: 12 (previous: 24712, now:24724)
+> > > > - INCLUDE-return from include - caves-1623/264/einundzwanzig
+> > > > - INCLUDE-go path found, including - caves-1623/264/icecock
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock
+> > > > > - Begin found for:icecock, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'icecock'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/icecock <> caves-1623/264/icecock
+> > > > > - LEGS: 11 (previous: 24724, now:24735)
+> > > > - INCLUDE-return from include - caves-1623/264/icecock
+> > > > - INCLUDE-go path found, including - caves-1623/264/noserock2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/noserock2
+> > > > > - Begin found for:noserock2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'noserock2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/noserock2 <> caves-1623/264/noserock2
+> > > > > - LEGS: 6 (previous: 24735, now:24741)
+> > > > - INCLUDE-return from include - caves-1623/264/noserock2
+> > > > - INCLUDE-go path found, including - caves-1623/264/northhole
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole
+> > > > > - Begin found for:northhole, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'northhole'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/northhole <> caves-1623/264/northhole
+> > > > > - LEGS: 17 (previous: 24741, now:24758)
+> > > > - INCLUDE-return from include - caves-1623/264/northhole
+> > > > - INCLUDE-go path found, including - caves-1623/264/icecock2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock2
+> > > > > - Begin found for:icecock2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'icecock2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/icecock2 <> caves-1623/264/icecock2
+> > > > > - LEGS: 7 (previous: 24758, now:24765)
+> > > > - INCLUDE-return from include - caves-1623/264/icecock2
+> > > > - INCLUDE-go path found, including - caves-1623/264/gosserwager
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager
+> > > > > - Begin found for:gosserwager, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gosserwager'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/gosserwager <> caves-1623/264/gosserwager
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 8 (previous: 24765, now:24773)
+> > > > - INCLUDE-return from include - caves-1623/264/gosserwager
+> > > > - INCLUDE-go path found, including - caves-1623/264/gosserwager2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager2
+> > > > > - Begin found for:gosserwager2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gosserwager2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/gosserwager2 <> caves-1623/264/gosserwager2
+> > > > > - LEGS: 6 (previous: 24773, now:24779)
+> > > > - INCLUDE-return from include - caves-1623/264/gosserwager2
+> > > > - INCLUDE-go path found, including - caves-1623/264/frozennorth
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth
+> > > > > - Begin found for:frozennorth, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'frozennorth'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/frozennorth <> caves-1623/264/frozennorth
+> > > > > - LEGS: 18 (previous: 24779, now:24797)
+> > > > - INCLUDE-return from include - caves-1623/264/frozennorth
+> > > > - INCLUDE-go path found, including - caves-1623/264/frozennorth2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth2
+> > > > > - Begin found for:frozennorth2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'frozennorth2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/frozennorth2 <> caves-1623/264/frozennorth2
+> > > > > - LEGS: 25 (previous: 24797, now:24822)
+> > > > - INCLUDE-return from include - caves-1623/264/frozennorth2
+> > > > - INCLUDE-go path found, including - caves-1623/264/icecockLC1
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC1
+> > > > > - Begin found for:icecocklc1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'icecocklc1'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/icecockLC1 <> caves-1623/264/icecockLC1
+> > > > > - LEGS: 3 (previous: 24822, now:24825)
+> > > > - INCLUDE-return from include - caves-1623/264/icecockLC1
+> > > > - INCLUDE-go path found, including - caves-1623/264/icecockLC2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecockLC2
+> > > > > - Begin found for:icecocklc2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'icecocklc2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/icecockLC2 <> caves-1623/264/icecockLC2
+> > > > > - LEGS: 2 (previous: 24825, now:24827)
+> > > > - INCLUDE-return from include - caves-1623/264/icecockLC2
+> > > > - INCLUDE-go path found, including - caves-1623/264/bipedal
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedal
+> > > > > - Begin found for:bipedal, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bipedal'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/bipedal <> caves-1623/264/bipedal
+> > > > > - LEGS: 2 (previous: 24827, now:24829)
+> > > > - INCLUDE-return from include - caves-1623/264/bipedal
+> > > > - INCLUDE-go path found, including - caves-1623/264/frozennorth3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth3
+> > > > > - Begin found for:frozennorth3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'frozennorth3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/frozennorth3 <> caves-1623/264/frozennorth3
+> > > > > - LEGS: 6 (previous: 24829, now:24835)
+> > > > - INCLUDE-return from include - caves-1623/264/frozennorth3
+> > > > - INCLUDE-go path found, including - caves-1623/264/rabbitwarrens
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrens
+> > > > > - Begin found for:rabbitwarrens, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rabbitwarrens'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/rabbitwarrens <> caves-1623/264/rabbitwarrens
+> > > > > - LEGS: 19 (previous: 24835, now:24854)
+> > > > - INCLUDE-return from include - caves-1623/264/rabbitwarrens
+> > > > - INCLUDE-go path found, including - caves-1623/264/digdug
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/digdug
+> > > > > - Begin found for:digdug, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'digdug'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/digdug <> caves-1623/264/digdug
+> > > > > - LEGS: 57 (previous: 24854, now:24911)
+> > > > - INCLUDE-return from include - caves-1623/264/digdug
+> > > > - INCLUDE-go path found, including - caves-1623/264/beyonddigdug
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyonddigdug
+> > > > > - Begin found for:beyonddigdug, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'beyonddigdug'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/beyonddigdug <> caves-1623/264/beyonddigdug
+> > > > > - LEGS: 16 (previous: 24911, now:24927)
+> > > > - INCLUDE-return from include - caves-1623/264/beyonddigdug
+> > > > - INCLUDE-go path found, including - caves-1623/264/beyondthunderdome
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/beyondthunderdome
+> > > > > - Begin found for:beyondthunderdome, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'beyondthunderdome'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/beyondthunderdome <> caves-1623/264/beyondthunderdome
+> > > > > - LEGS: 17 (previous: 24927, now:24944)
+> > > > - INCLUDE-return from include - caves-1623/264/beyondthunderdome
+> > > > - INCLUDE-go path found, including - caves-1623/264/pubicsynthesis
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pubicsynthesis
+> > > > > - Begin found for:pubicsynthesis, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pubicsynthesis'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pubicsynthesis <> caves-1623/264/pubicsynthesis
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 7 (previous: 24944, now:24951)
+> > > > - INCLUDE-return from include - caves-1623/264/pubicsynthesis
+> > > > - INCLUDE-go path found, including - caves-1623/264/hiltiaplentypitch
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentypitch
+> > > > > - Begin found for:hiltiaplentypitch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hiltiaplentypitch'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hiltiaplentypitch <> caves-1623/264/hiltiaplentypitch
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 38 (previous: 24951, now:24989)
+> > > > - INCLUDE-return from include - caves-1623/264/hiltiaplentypitch
+> > > > - INCLUDE-go path found, including - caves-1623/264/hiltiaplentychamber
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltiaplentychamber
+> > > > > - Begin found for:hiltiaplentychamber, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hiltiaplentychamber'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hiltiaplentychamber <> caves-1623/264/hiltiaplentychamber
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 44 (previous: 24989, now:25033)
+> > > > - INCLUDE-return from include - caves-1623/264/hiltiaplentychamber
+> > > > - INCLUDE-go path found, including - caves-1623/264/ulsagrotto
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/ulsagrotto
+> > > > > - Begin found for:ulsagrotto, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'ulsagrotto'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/ulsagrotto <> caves-1623/264/ulsagrotto
+> > > > > - LEGS: 73 (previous: 25033, now:25106)
+> > > > - INCLUDE-return from include - caves-1623/264/ulsagrotto
+> > > > - INCLUDE-go path found, including - caves-1623/264/sponge_chamber
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber
+> > > > > - Begin found for:sponge_chamber, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sponge_chamber'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/sponge_chamber <> caves-1623/264/sponge_chamber
+> > > > > - BLOCK-return from nested *begin/*end block: ''
+> > > > > - LEGS: 56 (previous: 25106, now:25162)
+> > > > - INCLUDE-return from include - caves-1623/264/sponge_chamber
+> > > > - INCLUDE-go path found, including - caves-1623/264/sponge_chamber2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/sponge_chamber2
+> > > > > - Begin found for:sponge_chamber2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sponge_chamber2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/sponge_chamber2 <> caves-1623/264/sponge_chamber2
+> > > > > - LEGS: 31 (previous: 25162, now:25193)
+> > > > - INCLUDE-return from include - caves-1623/264/sponge_chamber2
+> > > > - INCLUDE-go path found, including - caves-1623/264/bipedalpassage
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage
+> > > > > - Begin found for:bipedalpassage, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bipedalpassage'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/bipedalpassage <> caves-1623/264/bipedalpassage
+> > > > > - LEGS: 30 (previous: 25193, now:25223)
+> > > > - INCLUDE-return from include - caves-1623/264/bipedalpassage
+> > > > - INCLUDE-go path found, including - caves-1623/264/bipedalpassage2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage2
+> > > > > - Begin found for:bipedalpassage2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bipedalpassage2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/bipedalpassage2 <> caves-1623/264/bipedalpassage2
+> > > > > - LEGS: 15 (previous: 25223, now:25238)
+> > > > - INCLUDE-return from include - caves-1623/264/bipedalpassage2
+> > > > - INCLUDE-go path found, including - caves-1623/264/bipedalpassage3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage3
+> > > > > - Begin found for:bipedalpassage3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bipedalpassage3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/bipedalpassage3 <> caves-1623/264/bipedalpassage3
+> > > > > - LEGS: 4 (previous: 25238, now:25242)
+> > > > - INCLUDE-return from include - caves-1623/264/bipedalpassage3
+> > > > - INCLUDE-go path found, including - caves-1623/264/bipedalpassage4
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage4
+> > > > > - Begin found for:bipedalpassage4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bipedalpassage4'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/bipedalpassage4 <> caves-1623/264/bipedalpassage4
+> > > > > - LEGS: 7 (previous: 25242, now:25249)
+> > > > - INCLUDE-return from include - caves-1623/264/bipedalpassage4
+> > > > - INCLUDE-go path found, including - caves-1623/264/icecock3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/icecock3
+> > > > > - Begin found for:icecock3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'icecock3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/icecock3 <> caves-1623/264/icecock3
+> > > > > - LEGS: 4 (previous: 25249, now:25253)
+> > > > - INCLUDE-return from include - caves-1623/264/icecock3
+> > > > - INCLUDE-go path found, including - caves-1623/264/northhole2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/northhole2
+> > > > > - Begin found for:northhole2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'northhole2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/northhole2 <> caves-1623/264/northhole2
+> > > > > - LEGS: 9 (previous: 25253, now:25262)
+> > > > - INCLUDE-return from include - caves-1623/264/northhole2
+> > > > - INCLUDE-go path found, including - caves-1623/264/frozennorth4
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/frozennorth4
+> > > > > - Begin found for:frozennorth4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'frozennorth4'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/frozennorth4 <> caves-1623/264/frozennorth4
+> > > > > - LEGS: 7 (previous: 25262, now:25269)
+> > > > - INCLUDE-return from include - caves-1623/264/frozennorth4
+> > > > - INCLUDE-go path found, including - caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > > - Begin found for:rabbitwarrenstoeinundzwanzig, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'rabbitwarrenstoeinundzwanzig'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/rabbitwarrenstoeinundzwanzig <> caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > > - LEGS: 6 (previous: 25269, now:25275)
+> > > > - INCLUDE-return from include - caves-1623/264/rabbitwarrenstoeinundzwanzig
+> > > > - INCLUDE-go path found, including - caves-1623/264/gosserwager3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager3
+> > > > > - Begin found for:gosserwager3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gosserwager3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/gosserwager3 <> caves-1623/264/gosserwager3
+> > > > > - LEGS: 10 (previous: 25275, now:25285)
+> > > > - INCLUDE-return from include - caves-1623/264/gosserwager3
+> > > > - INCLUDE-go path found, including - caves-1623/264/bipedalpassage5
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/bipedalpassage5
+> > > > > - Begin found for:bipedalpassage5, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'bipedalpassage5'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/bipedalpassage5 <> caves-1623/264/bipedalpassage5
+> > > > > - LEGS: 4 (previous: 25285, now:25289)
+> > > > - INCLUDE-return from include - caves-1623/264/bipedalpassage5
+> > > > - INCLUDE-go path found, including - caves-1623/264/gosserwager4
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/gosserwager4
+> > > > > - Begin found for:gosserwager4, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'gosserwager4'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/gosserwager4 <> caves-1623/264/gosserwager4
+> > > > > - LEGS: 4 (previous: 25289, now:25293)
+> > > > - INCLUDE-return from include - caves-1623/264/gosserwager4
+> > > > - INCLUDE-go path found, including - caves-1623/264/belowhiltiaplenty
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty
+> > > > > - Begin found for:belowhiltiaplenty, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'belowhiltiaplenty'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/belowhiltiaplenty <> caves-1623/264/belowhiltiaplenty
+> > > > > - LEGS: 38 (previous: 25293, now:25331)
+> > > > - INCLUDE-return from include - caves-1623/264/belowhiltiaplenty
+> > > > - INCLUDE-go path found, including - caves-1623/264/belowhiltiaplenty2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/belowhiltiaplenty2
+> > > > > - Begin found for:belowhiltiaplenty2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'belowhiltiaplenty2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/belowhiltiaplenty2 <> caves-1623/264/belowhiltiaplenty2
+> > > > > - LEGS: 2 (previous: 25331, now:25333)
+> > > > - INCLUDE-return from include - caves-1623/264/belowhiltiaplenty2
+> > > > - INCLUDE-go path found, including - caves-1623/264/penguinfellatio
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/penguinfellatio
+> > > > > - Begin found for:penguinfellatio, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'penguinfellatio'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/penguinfellatio <> caves-1623/264/penguinfellatio
+> > > > > - LEGS: 8 (previous: 25333, now:25341)
+> > > > - INCLUDE-return from include - caves-1623/264/penguinfellatio
+> > > > - INCLUDE-go path found, including - caves-1623/264/voyeur
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/voyeur
+> > > > > - Begin found for:voyeur, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'voyeur'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/voyeur <> caves-1623/264/voyeur
+> > > > > - LEGS: 7 (previous: 25341, now:25348)
+> > > > - INCLUDE-return from include - caves-1623/264/voyeur
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkartsiv
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsiv
+> > > > > - Begin found for:darkartsiv, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkartsiv'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkartsiv <> caves-1623/264/darkartsiv
+> > > > > - LEGS: 4 (previous: 25348, now:25352)
+> > > > - INCLUDE-return from include - caves-1623/264/darkartsiv
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkartsv
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsv
+> > > > > - Begin found for:darkartsv, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkartsv'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkartsv <> caves-1623/264/darkartsv
+> > > > > - LEGS: 5 (previous: 25352, now:25357)
+> > > > - INCLUDE-return from include - caves-1623/264/darkartsv
+> > > > - INCLUDE-go path found, including - caves-1623/264/darkartsvi
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/darkartsvi
+> > > > > - Begin found for:darkartsvi, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'darkartsvi'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/darkartsvi <> caves-1623/264/darkartsvi
+> > > > > - LEGS: 5 (previous: 25357, now:25362)
+> > > > - INCLUDE-return from include - caves-1623/264/darkartsvi
+> > > > - INCLUDE-go path found, including - caves-1623/264/tightyorkshireman
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/tightyorkshireman
+> > > > > - Begin found for:tightyorkshireman, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'tightyorkshireman'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/tightyorkshireman <> caves-1623/264/tightyorkshireman
+> > > > > - LEGS: 8 (previous: 25362, now:25370)
+> > > > - INCLUDE-return from include - caves-1623/264/tightyorkshireman
+> > > > - INCLUDE-go path found, including - caves-1623/264/swingers
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/swingers
+> > > > > - Begin found for:swingers, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'swingers'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/swingers <> caves-1623/264/swingers
+> > > > > - LEGS: 5 (previous: 25370, now:25375)
+> > > > - INCLUDE-return from include - caves-1623/264/swingers
+> > > > - INCLUDE-go path found, including - caves-1623/264/crushedplumbspitch
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/crushedplumbspitch
+> > > > > - Begin found for:crushedplumbspitch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'crushedplumbspitch'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/crushedplumbspitch <> caves-1623/264/crushedplumbspitch
+> > > > > - LEGS: 5 (previous: 25375, now:25380)
+> > > > - INCLUDE-return from include - caves-1623/264/crushedplumbspitch
+> > > > - INCLUDE-go path found, including - caves-1623/264/tinaturnersmerkin
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/tinaturnersmerkin
+> > > > > - Begin found for:tinaturnersmerkin, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'tinaturnersmerkin'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/tinaturnersmerkin <> caves-1623/264/tinaturnersmerkin
+> > > > > - LEGS: 11 (previous: 25380, now:25391)
+> > > > - INCLUDE-return from include - caves-1623/264/tinaturnersmerkin
+> > > > - INCLUDE-go path found, including - caves-1623/264/underexcitment
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/underexcitment
+> > > > > - Begin found for:underexcitment, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'underexcitment'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/underexcitment <> caves-1623/264/underexcitment
+> > > > > - LEGS: 10 (previous: 25391, now:25401)
+> > > > - INCLUDE-return from include - caves-1623/264/underexcitment
+> > > > - INCLUDE-go path found, including - caves-1623/264/consolidation
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/consolidation
+> > > > > - Begin found for:consolidation, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'consolidation'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/consolidation <> caves-1623/264/consolidation
+> > > > > - LEGS: 59 (previous: 25401, now:25460)
+> > > > - INCLUDE-return from include - caves-1623/264/consolidation
+> > > > - INCLUDE-go path found, including - caves-1623/264/oneshotwonder
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/oneshotwonder
+> > > > > - Begin found for:oneshotwonder, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'oneshotwonder'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/oneshotwonder <> caves-1623/264/oneshotwonder
+> > > > > - LEGS: 30 (previous: 25460, now:25490)
+> > > > - INCLUDE-return from include - caves-1623/264/oneshotwonder
+> > > > - INCLUDE-go path found, including - caves-1623/264/longdrop
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop
+> > > > > - Begin found for:longdrop, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'longdrop'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/longdrop <> caves-1623/264/longdrop
+> > > > > - LEGS: 20 (previous: 25490, now:25510)
+> > > > - INCLUDE-return from include - caves-1623/264/longdrop
+> > > > - INCLUDE-go path found, including - caves-1623/264/northern_straight
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/northern_straight
+> > > > > - Begin found for:northernstraight, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'northernstraight'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/northern_straight <> caves-1623/264/northern_straight
+> > > > > - LEGS: 30 (previous: 25510, now:25540)
+> > > > - INCLUDE-return from include - caves-1623/264/northern_straight
+> > > > - INCLUDE-go path found, including - caves-1623/264/snowhole
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/snowhole
+> > > > > - Begin found for:snowhole, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'snowhole'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/snowhole <> caves-1623/264/snowhole
+> > > > > - LEGS: 55 (previous: 25540, now:25595)
+> > > > - INCLUDE-return from include - caves-1623/264/snowhole
+> > > > - INCLUDE-go path found, including - caves-1623/264/roundabout
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/roundabout
+> > > > > - Begin found for:roundabout, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'roundabout'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/roundabout <> caves-1623/264/roundabout
+> > > > > - LEGS: 30 (previous: 25595, now:25625)
+> > > > - INCLUDE-return from include - caves-1623/264/roundabout
+> > > > - INCLUDE-go path found, including - caves-1623/264/caving101
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/caving101
+> > > > > - Begin found for:caving101, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'caving101'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/caving101 <> caves-1623/264/caving101
+> > > > > - LEGS: 2 (previous: 25625, now:25627)
+> > > > - INCLUDE-return from include - caves-1623/264/caving101
+> > > > - INCLUDE-go path found, including - caves-1623/264/doublescoop
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop
+> > > > > - Begin found for:doublescoop, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'doublescoop'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/doublescoop <> caves-1623/264/doublescoop
+> > > > > - LEGS: 10 (previous: 25627, now:25637)
+> > > > - INCLUDE-return from include - caves-1623/264/doublescoop
+> > > > - INCLUDE-go path found, including - caves-1623/264/doublescoop2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/doublescoop2
+> > > > > - Begin found for:doublescoop2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'doublescoop2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/doublescoop2 <> caves-1623/264/doublescoop2
+> > > > > - LEGS: 8 (previous: 25637, now:25645)
+> > > > - INCLUDE-return from include - caves-1623/264/doublescoop2
+> > > > - INCLUDE-go path found, including - caves-1623/264/fatmanscoop
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop
+> > > > > - Begin found for:fatmanscoop, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fatmanscoop'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/fatmanscoop <> caves-1623/264/fatmanscoop
+> > > > > - LEGS: 10 (previous: 25645, now:25655)
+> > > > - INCLUDE-return from include - caves-1623/264/fatmanscoop
+> > > > - INCLUDE-go path found, including - caves-1623/264/fatmanscoop2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/fatmanscoop2
+> > > > > - Begin found for:fatmanscoop2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'fatmanscoop2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/fatmanscoop2 <> caves-1623/264/fatmanscoop2
+> > > > > - LEGS: 3 (previous: 25655, now:25658)
+> > > > - INCLUDE-return from include - caves-1623/264/fatmanscoop2
+> > > > - INCLUDE-go path found, including - caves-1623/264/badattitude
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/badattitude
+> > > > > - Begin found for:badattitude, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'badattitude'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/badattitude <> caves-1623/264/badattitude
+> > > > > - LEGS: 12 (previous: 25658, now:25670)
+> > > > - INCLUDE-return from include - caves-1623/264/badattitude
+> > > > - INCLUDE-go path found, including - caves-1623/264/lets_be_appalling
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/lets_be_appalling
+> > > > > - Begin found for:lets_be_appalling, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'lets_be_appalling'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/lets_be_appalling <> caves-1623/264/lets_be_appalling
+> > > > > - LEGS: 19 (previous: 25670, now:25689)
+> > > > - INCLUDE-return from include - caves-1623/264/lets_be_appalling
+> > > > - INCLUDE-go path found, including - caves-1623/264/cant_stop_bat_country
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/cant_stop_bat_country
+> > > > > - Begin found for:cant_stop_bat_country, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cant_stop_bat_country'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/cant_stop_bat_country <> caves-1623/264/cant_stop_bat_country
+> > > > > - LEGS: 26 (previous: 25689, now:25715)
+> > > > - INCLUDE-return from include - caves-1623/264/cant_stop_bat_country
+> > > > - INCLUDE-go path found, including - caves-1623/264/watertorture
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/watertorture
+> > > > > - Begin found for:watertorture, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'watertorture'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/watertorture <> caves-1623/264/watertorture
+> > > > > - LEGS: 4 (previous: 25715, now:25719)
+> > > > - INCLUDE-return from include - caves-1623/264/watertorture
+> > > > - INCLUDE-go path found, including - caves-1623/264/keepsongiving
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/keepsongiving
+> > > > > - Begin found for:keepsongiving, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'keepsongiving'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/keepsongiving <> caves-1623/264/keepsongiving
+> > > > > - LEGS: 13 (previous: 25719, now:25732)
+> > > > - INCLUDE-return from include - caves-1623/264/keepsongiving
+> > > > - INCLUDE-go path found, including - caves-1623/264/hiltigalactica
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hiltigalactica
+> > > > > - Begin found for:hiltigalactica, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hiltigalactica'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hiltigalactica <> caves-1623/264/hiltigalactica
+> > > > > - LEGS: 247 (previous: 25732, now:25979)
+> > > > - INCLUDE-return from include - caves-1623/264/hiltigalactica
+> > > > - INCLUDE-go path found, including - caves-1623/264/cathedralchasm2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/cathedralchasm2
+> > > > > - Begin found for:cathedralchasm2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'cathedralchasm2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/cathedralchasm2 <> caves-1623/264/cathedralchasm2
+> > > > > - LEGS: 195 (previous: 25979, now:26174)
+> > > > - INCLUDE-return from include - caves-1623/264/cathedralchasm2
+> > > > - INCLUDE-go path found, including - caves-1623/264/longdrop2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/longdrop2
+> > > > > - Begin found for:longdrop2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'longdrop2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/longdrop2 <> caves-1623/264/longdrop2
+> > > > > - LEGS: 92 (previous: 26174, now:26266)
+> > > > - INCLUDE-return from include - caves-1623/264/longdrop2
+> > > > - INCLUDE-go path found, including - caves-1623/264/sloppyseconds1
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds1
+> > > > > - Begin found for:sloppyseconds1, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sloppyseconds1'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/sloppyseconds1 <> caves-1623/264/sloppyseconds1
+> > > > > - LEGS: 40 (previous: 26266, now:26306)
+> > > > - INCLUDE-return from include - caves-1623/264/sloppyseconds1
+> > > > - INCLUDE-go path found, including - caves-1623/264/galactica
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/galactica
+> > > > > - Begin found for:galactica, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'galactica'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/galactica <> caves-1623/264/galactica
+> > > > > - LEGS: 23 (previous: 26306, now:26329)
+> > > > - INCLUDE-return from include - caves-1623/264/galactica
+> > > > - INCLUDE-go path found, including - caves-1623/264/sloppyseconds2
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/sloppyseconds2
+> > > > > - Begin found for:sloppyseconds2, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'sloppyseconds2'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/sloppyseconds2 <> caves-1623/264/sloppyseconds2
+> > > > > - LEGS: 11 (previous: 26329, now:26340)
+> > > > - INCLUDE-return from include - caves-1623/264/sloppyseconds2
+> > > > - INCLUDE-go path found, including - caves-1623/264/nothingtosee
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee
+> > > > > - Begin found for:nothingtosee, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nothingtosee'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/nothingtosee <> caves-1623/264/nothingtosee
+> > > > > - LEGS: 22 (previous: 26340, now:26362)
+> > > > - INCLUDE-return from include - caves-1623/264/nothingtosee
+> > > > - INCLUDE-go path found, including - caves-1623/264/the_mendips
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_mendips
+> > > > > - Begin found for:the_mendips, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'the_mendips'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/the_mendips <> caves-1623/264/the_mendips
+> > > > > - LEGS: 257 (previous: 26362, now:26619)
+> > > > - INCLUDE-return from include - caves-1623/264/the_mendips
+> > > > - INCLUDE-go path found, including - caves-1623/264/mysterious_schlag
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/mysterious_schlag
+> > > > > - Begin found for:mysterious_schlag, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'mysterious_schlag'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/mysterious_schlag <> caves-1623/264/mysterious_schlag
+> > > > > - LEGS: 33 (previous: 26619, now:26652)
+> > > > - INCLUDE-return from include - caves-1623/264/mysterious_schlag
+> > > > - INCLUDE-go path found, including - caves-1623/264/pointless_dig
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/pointless_dig
+> > > > > - Begin found for:pointless_dig, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'pointless_dig'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/pointless_dig <> caves-1623/264/pointless_dig
+> > > > > - LEGS: 21 (previous: 26652, now:26673)
+> > > > - INCLUDE-return from include - caves-1623/264/pointless_dig
+> > > > - INCLUDE-go path found, including - caves-1623/264/secondwind
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondwind
+> > > > > - Begin found for:secondwind, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'secondwind'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/secondwind <> caves-1623/264/secondwind
+> > > > > - LEGS: 28 (previous: 26673, now:26701)
+> > > > - INCLUDE-return from include - caves-1623/264/secondwind
+> > > > - INCLUDE-go path found, including - caves-1623/264/secondhand
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/secondhand
+> > > > > - Begin found for:secondhand, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'secondhand'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/secondhand <> caves-1623/264/secondhand
+> > > > > - LEGS: 6 (previous: 26701, now:26707)
+> > > > - INCLUDE-return from include - caves-1623/264/secondhand
+> > > > - INCLUDE-go path found, including - caves-1623/264/dog_end_series
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/dog_end_series
+> > > > > - Begin found for:dog_end_series, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'dog_end_series'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/dog_end_series <> caves-1623/264/dog_end_series
+> > > > > - LEGS: 12 (previous: 26707, now:26719)
+> > > > - INCLUDE-return from include - caves-1623/264/dog_end_series
+> > > > - INCLUDE-go path found, including - caves-1623/264/nothing2see
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothing2see
+> > > > > - Begin found for:nothing2see, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nothing2see'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/nothing2see <> caves-1623/264/nothing2see
+> > > > > - LEGS: 18 (previous: 26719, now:26737)
+> > > > - INCLUDE-return from include - caves-1623/264/nothing2see
+> > > > - INCLUDE-go path found, including - caves-1623/264/nothingtosee3
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/nothingtosee3
+> > > > > - Begin found for:nothingtosee3, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'nothingtosee3'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/nothingtosee3 <> caves-1623/264/nothingtosee3
+> > > > > - LEGS: 19 (previous: 26737, now:26756)
+> > > > - INCLUDE-return from include - caves-1623/264/nothingtosee3
+> > > > - INCLUDE-go path found, including - caves-1623/264/hilti_nts_bones_pitch
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_bones_pitch
+> > > > > - Begin found for:hilti_nts_bones_pitch, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hilti_nts_bones_pitch'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hilti_nts_bones_pitch <> caves-1623/264/hilti_nts_bones_pitch
+> > > > > - LEGS: 52 (previous: 26756, now:26808)
+> > > > - INCLUDE-return from include - caves-1623/264/hilti_nts_bones_pitch
+> > > > - INCLUDE-go path found, including - caves-1623/264/hilti_nts_near_bats
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_bats
+> > > > > - Begin found for:hilti_nts_near_bats, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hilti_nts_near_bats'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hilti_nts_near_bats <> caves-1623/264/hilti_nts_near_bats
+> > > > > - LEGS: 44 (previous: 26808, now:26852)
+> > > > - INCLUDE-return from include - caves-1623/264/hilti_nts_near_bats
+> > > > - INCLUDE-go path found, including - caves-1623/264/hilti_nts_near_start
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/hilti_nts_near_start
+> > > > > - Begin found for:hilti_nts_near_start, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'hilti_nts_near_start'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/hilti_nts_near_start <> caves-1623/264/hilti_nts_near_start
+> > > > > - LEGS: 46 (previous: 26852, now:26898)
+> > > > - INCLUDE-return from include - caves-1623/264/hilti_nts_near_start
+> > > > - INCLUDE-go path found, including - caves-1623/264/the_backslash
+> > > > - Match in DB (i) for cave 1623-264.
+> > > > > - MEM:49.383 Reading. parent:caves-1623/264/264 <> caves-1623/264/the_backslash
+> > > > > - Begin found for:the_backslash, creating new SurvexBlock
+> > > > > - BLOCK-enter nested *begin/*end block: 'the_backslash'
+> > > > > > - MEM:49.383 Reading. parent:caves-1623/264/the_backslash <> caves-1623/264/the_backslash
+> > > > > - LEGS: 21 (previous: 26898, now:26919)
+> > > > - INCLUDE-return from include - caves-1623/264/the_backslash
+> > > > - LEGS: 8218 (previous: 18701, now:26919)
+> > > - INCLUDE-return from include - caves-1623/264/264
+> > - INCLUDE-return from include - caves-1623/caves-smk-north
+> - INCLUDE-return from include - caves-1623/caves-smk
+> - INCLUDE-go path found, including - surface/1623/allsurface
+> - NO Match in DB (i) for a cave for surface/1623/allsurface
+> > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/allsurface
+> > - INCLUDE-go path found, including - surface/1623/allplateau
+> > - NO Match in DB (i) for a cave for surface/1623/allplateau
+> > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/allplateau
+> > > - INCLUDE-go path found, including - surface/1623/p108
+> > > - NO Match in DB (i) for a cave for surface/1623/p108
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/p108
+> > > > - No match (b) for surface/1623/108surf
+> > > > - Begin found for:108surf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '108surf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/p108 <> surface/1623/p108
+> > > > - LEGS: 8 (previous: 26919, now:26927)
+> > > - INCLUDE-return from include - surface/1623/p108
+> > > - INCLUDE-go path found, including - surface/1623/bogen
+> > > - NO Match in DB (i) for a cave for surface/1623/bogen
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/bogen
+> > > > - No match (b) for surface/1623/2006-06
+> > > > - Begin found for:2006-06, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '2006-06'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/bogen <> surface/1623/bogen
+> > > > - LEGS: 8 (previous: 26927, now:26935)
+> > > - INCLUDE-return from include - surface/1623/bogen
+> > > - INCLUDE-go path found, including - surface/1623/164surf
+> > > - NO Match in DB (i) for a cave for surface/1623/164surf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/164surf
+> > > > - No match (b) for surface/1623/164Surf
+> > > > - Begin found for:164surf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '164surf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/164surf <> surface/1623/164surf
+> > > > - LEGS: 18 (previous: 26935, now:26953)
+> > > - INCLUDE-return from include - surface/1623/164surf
+> > > - INCLUDE-go path found, including - surface/1623/172to171a
+> > > - NO Match in DB (i) for a cave for surface/1623/172to171a
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/172to171a
+> > > > - No match (b) for surface/1623/172to171a
+> > > > - Begin found for:172to171a, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '172to171a'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/172to171a <> surface/1623/172to171a
+> > > > - LEGS: 11 (previous: 26953, now:26964)
+> > > - INCLUDE-return from include - surface/1623/172to171a
+> > > - INCLUDE-go path found, including - surface/1623/182area
+> > > - NO Match in DB (i) for a cave for surface/1623/182area
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/182area
+> > > > - No match (b) for surface/1623/182toTC
+> > > > - Begin found for:182totc, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '182totc'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/182area <> surface/1623/182area
+> > > > - LEGS: 39 (previous: 26964, now:27003)
+> > > - INCLUDE-return from include - surface/1623/182area
+> > > - INCLUDE-go path found, including - surface/1623/186totc
+> > > - NO Match in DB (i) for a cave for surface/1623/186totc
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/186totc
+> > > > - No match (b) for surface/1623/186toTC
+> > > > - Begin found for:186totc, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '186totc'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/186totc <> surface/1623/186totc
+> > > > - LEGS: 21 (previous: 27003, now:27024)
+> > > - INCLUDE-return from include - surface/1623/186totc
+> > > - INCLUDE-go path found, including - surface/1623/b4surf
+> > > - NO Match in DB (i) for a cave for surface/1623/b4surf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/b4surf
+> > > > - No match (b) for surface/1623/b4surf
+> > > > - Begin found for:b4surf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'b4surf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/b4surf <> surface/1623/b4surf
+> > > > - LEGS: 3 (previous: 27024, now:27027)
+> > > - INCLUDE-return from include - surface/1623/b4surf
+> > > - INCLUDE-go path found, including - surface/1623/colto11
+> > > - NO Match in DB (i) for a cave for surface/1623/colto11
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/colto11
+> > > > - No match (b) for surface/1623/colto11
+> > > > - Begin found for:colto11, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'colto11'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/colto11 <> surface/1623/colto11
+> > > > - LEGS: 10 (previous: 27027, now:27037)
+> > > - INCLUDE-return from include - surface/1623/colto11
+> > > - INCLUDE-go path found, including - surface/1623/2006-72_to_spit
+> > > - NO Match in DB (i) for a cave for surface/1623/2006-72_to_spit
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/2006-72_to_spit
+> > > > - No match (b) for surface/1623/2006-72_to_spit
+> > > > - Begin found for:2006-72_to_spit, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '2006-72_to_spit'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/2006-72_to_spit <> surface/1623/2006-72_to_spit
+> > > > - LEGS: 11 (previous: 27037, now:27048)
+> > > - INCLUDE-return from include - surface/1623/2006-72_to_spit
+> > > - INCLUDE-go path found, including - surface/1623/colto97
+> > > - NO Match in DB (i) for a cave for surface/1623/colto97
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/colto97
+> > > > - No match (b) for surface/1623/145to145c
+> > > > - Begin found for:145to145c, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '145to145c'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/colto97 <> surface/1623/colto97
+> > > > - LEGS: 5 (previous: 27048, now:27053)
+> > > - INCLUDE-return from include - surface/1623/colto97
+> > > - INCLUDE-go path found, including - surface/1623/near06
+> > > - NO Match in DB (i) for a cave for surface/1623/near06
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/near06
+> > > > - No match (b) for surface/1623/near06
+> > > > - Begin found for:near06, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'near06'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/near06 <> surface/1623/near06
+> > > > - LEGS: 7 (previous: 27053, now:27060)
+> > > - INCLUDE-return from include - surface/1623/near06
+> > > - INCLUDE-go path found, including - surface/1623/near06_2005
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2005
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/near06_2005
+> > > > - No match (b) for surface/1623/near06_2005
+> > > > - Begin found for:near06_2005, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'near06_2005'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/near06_2005 <> surface/1623/near06_2005
+> > > > - LEGS: 7 (previous: 27060, now:27067)
+> > > - INCLUDE-return from include - surface/1623/near06_2005
+> > > - INCLUDE-go path found, including - surface/1623/99to2004-01
+> > > - NO Match in DB (i) for a cave for surface/1623/99to2004-01
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/99to2004-01
+> > > > - No match (b) for surface/1623/99to2004-01
+> > > > - Begin found for:99to2004-01, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '99to2004-01'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/99to2004-01 <> surface/1623/99to2004-01
+> > > > - LEGS: 3 (previous: 27067, now:27070)
+> > > - INCLUDE-return from include - surface/1623/99to2004-01
+> > > - INCLUDE-go path found, including - surface/1623/near06_2006
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2006
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/near06_2006
+> > > > - No match (b) for surface/1623/99ob02_to_2005-93
+> > > > - Begin found for:99ob02_to_2005-93, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '99ob02_to_2005-93'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/near06_2006 <> surface/1623/near06_2006
+> > > > - LEGS: 4 (previous: 27070, now:27074)
+> > > - INCLUDE-return from include - surface/1623/near06_2006
+> > > - INCLUDE-go path found, including - surface/1623/near06_2007
+> > > - NO Match in DB (i) for a cave for surface/1623/near06_2007
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/near06_2007
+> > > > - No match (b) for surface/1623/2007-70_to_271
+> > > > - Begin found for:2007-70_to_271, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '2007-70_to_271'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/near06_2007 <> surface/1623/near06_2007
+> > > > - LEGS: 3 (previous: 27074, now:27077)
+> > > - INCLUDE-return from include - surface/1623/near06_2007
+> > > - INCLUDE-go path found, including - surface/1623/104surf
+> > > - NO Match in DB (i) for a cave for surface/1623/104surf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/104surf
+> > > > - No match (b) for surface/1623/104surf
+> > > > - Begin found for:104surf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '104surf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/104surf <> surface/1623/104surf
+> > > > - LEGS: 3 (previous: 27077, now:27080)
+> > > - INCLUDE-return from include - surface/1623/104surf
+> > > - INCLUDE-go path found, including - surface/1623/nasetotc
+> > > - NO Match in DB (i) for a cave for surface/1623/nasetotc
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/nasetotc
+> > > > - No match (b) for surface/1623/nasetotc
+> > > > - Begin found for:nasetotc, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'nasetotc'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/nasetotc <> surface/1623/nasetotc
+> > > > - LEGS: 13 (previous: 27080, now:27093)
+> > > - INCLUDE-return from include - surface/1623/nasetotc
+> > > - INCLUDE-go path found, including - surface/1623/neartc
+> > > - NO Match in DB (i) for a cave for surface/1623/neartc
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/neartc
+> > > > - No match (b) for surface/1623/TCto90
+> > > > - Begin found for:tcto90, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'tcto90'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/neartc <> surface/1623/neartc
+> > > > ! Unparsed [*set]: 'decimal ./' surface/1623/neartc
+> > > > - LEGS: 13 (previous: 27093, now:27106)
+> > > - INCLUDE-return from include - surface/1623/neartc
+> > > - INCLUDE-go path found, including - surface/1623/tcto171
+> > > - NO Match in DB (i) for a cave for surface/1623/tcto171
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/tcto171
+> > > > - No match (b) for surface/1623/TCto171etc
+> > > > - Begin found for:tcto171etc, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'tcto171etc'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/tcto171 <> surface/1623/tcto171
+> > > > - LEGS: 29 (previous: 27106, now:27135)
+> > > - INCLUDE-return from include - surface/1623/tcto171
+> > > - INCLUDE-go path found, including - surface/1623/tctocol
+> > > - NO Match in DB (i) for a cave for surface/1623/tctocol
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/tctocol
+> > > > - No match (b) for surface/1623/TCtoCol
+> > > > - Begin found for:tctocol, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'tctocol'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/tctocol <> surface/1623/tctocol
+> > > > - LEGS: 12 (previous: 27135, now:27147)
+> > > - INCLUDE-return from include - surface/1623/tctocol
+> > > - INCLUDE-go path found, including - surface/1623/36tob4
+> > > - NO Match in DB (i) for a cave for surface/1623/36tob4
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/36tob4
+> > > > - No match (b) for surface/1623/36tob4
+> > > > - Begin found for:36tob4, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '36tob4'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/36tob4 <> surface/1623/36tob4
+> > > > ! Wallet *REF '2006#36' - NOT found in DB search 'surface/1623/36tob4'
+> > > > - LEGS: 8 (previous: 27147, now:27155)
+> > > - INCLUDE-return from include - surface/1623/36tob4
+> > > - INCLUDE-go path found, including - surface/1623/107-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/107-to-2012-70
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/107-to-2012-70
+> > > > - No match (b) for surface/1623/107to201270
+> > > > - Begin found for:107to201270, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '107to201270'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/107-to-2012-70 <> surface/1623/107-to-2012-70
+> > > > - LEGS: 5 (previous: 27155, now:27160)
+> > > - INCLUDE-return from include - surface/1623/107-to-2012-70
+> > > - INCLUDE-go path found, including - surface/1623/157-to-2012-70
+> > > - NO Match in DB (i) for a cave for surface/1623/157-to-2012-70
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/157-to-2012-70
+> > > > - No match (b) for surface/1623/157to201270
+> > > > - Begin found for:157to201270, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '157to201270'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/157-to-2012-70 <> surface/1623/157-to-2012-70
+> > > > - LEGS: 6 (previous: 27160, now:27166)
+> > > - INCLUDE-return from include - surface/1623/157-to-2012-70
+> > - INCLUDE-return from include - surface/1623/allplateau
+> > - INCLUDE-go path found, including - surface/1623/allnrkh
+> > - NO Match in DB (i) for a cave for surface/1623/allnrkh
+> > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/allnrkh
+> > > - INCLUDE-go path found, including - surface/1623/136to147
+> > > - NO Match in DB (i) for a cave for surface/1623/136to147
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/136to147
+> > > > - No match (b) for surface/1623/136to147
+> > > > - Begin found for:136to147, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '136to147'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/136to147 <> surface/1623/136to147
+> > > > - LEGS: 15 (previous: 27166, now:27181)
+> > > - INCLUDE-return from include - surface/1623/136to147
+> > > - INCLUDE-go path found, including - surface/1623/147vor
+> > > - NO Match in DB (i) for a cave for surface/1623/147vor
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/147vor
+> > > > - No match (b) for surface/1623/147vor
+> > > > - Begin found for:147vor, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '147vor'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/147vor <> surface/1623/147vor
+> > > > - LEGS: 22 (previous: 27181, now:27203)
+> > > - INCLUDE-return from include - surface/1623/147vor
+> > > - INCLUDE-go path found, including - surface/1623/162to163
+> > > - NO Match in DB (i) for a cave for surface/1623/162to163
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/162to163
+> > > > - No match (b) for surface/1623/surfnr161
+> > > > - Begin found for:surfnr161, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'surfnr161'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/162to163 <> surface/1623/162to163
+> > > > - LEGS: 25 (previous: 27203, now:27228)
+> > > - INCLUDE-return from include - surface/1623/162to163
+> > > - INCLUDE-go path found, including - surface/1623/180-161c
+> > > - NO Match in DB (i) for a cave for surface/1623/180-161c
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/180-161c
+> > > > - No match (b) for surface/1623/180to161c
+> > > > - Begin found for:180to161c, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '180to161c'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/180-161c <> surface/1623/180-161c
+> > > > - LEGS: 10 (previous: 27228, now:27238)
+> > > - INCLUDE-return from include - surface/1623/180-161c
+> > > - INCLUDE-go path found, including - surface/1623/161etof
+> > > - NO Match in DB (i) for a cave for surface/1623/161etof
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/161etof
+> > > > - No match (b) for surface/1623/161etof
+> > > > - Begin found for:161etof, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '161etof'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/161etof <> surface/1623/161etof
+> > > > - LEGS: 6 (previous: 27238, now:27244)
+> > > - INCLUDE-return from include - surface/1623/161etof
+> > > - INCLUDE-go path found, including - surface/1623/161ftod
+> > > - NO Match in DB (i) for a cave for surface/1623/161ftod
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/161ftod
+> > > > - No match (b) for surface/1623/161ftod
+> > > > - Begin found for:161ftod, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '161ftod'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/161ftod <> surface/1623/161ftod
+> > > > - LEGS: 25 (previous: 27244, now:27269)
+> > > - INCLUDE-return from include - surface/1623/161ftod
+> > > - INCLUDE-go path found, including - surface/1623/161etog
+> > > - NO Match in DB (i) for a cave for surface/1623/161etog
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/161etog
+> > > > - No match (b) for surface/1623/161etog
+> > > > - Begin found for:161etog, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '161etog'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/161etog <> surface/1623/161etog
+> > > > - LEGS: 30 (previous: 27269, now:27299)
+> > > - INCLUDE-return from include - surface/1623/161etog
+> > > - INCLUDE-go path found, including - surface/1623/kansurf
+> > > - NO Match in DB (i) for a cave for surface/1623/kansurf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/kansurf
+> > > > - No match (b) for surface/1623/KanSurf
+> > > > - Begin found for:kansurf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'kansurf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/kansurf <> surface/1623/kansurf
+> > > > - LEGS: 14 (previous: 27299, now:27313)
+> > > - INCLUDE-return from include - surface/1623/kansurf
+> > > - INCLUDE-go path found, including - surface/1623/p136
+> > > - NO Match in DB (i) for a cave for surface/1623/p136
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/p136
+> > > > - No match (b) for surface/1623/136surf
+> > > > - Begin found for:136surf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '136surf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/p136 <> surface/1623/p136
+> > > > - LEGS: 15 (previous: 27313, now:27328)
+> > > - INCLUDE-return from include - surface/1623/p136
+> > > - INCLUDE-go path found, including - surface/1623/p156
+> > > - NO Match in DB (i) for a cave for surface/1623/p156
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/p156
+> > > > - No match (b) for surface/1623/01to156
+> > > > - Begin found for:01to156, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '01to156'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/p156 <> surface/1623/p156
+> > > > - LEGS: 4 (previous: 27328, now:27332)
+> > > - INCLUDE-return from include - surface/1623/p156
+> > > - INCLUDE-go path found, including - surface/1623/surf161
+> > > - NO Match in DB (i) for a cave for surface/1623/surf161
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/surf161
+> > > > - No match (b) for surface/1623/Surf161
+> > > > - Begin found for:surf161, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'surf161'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/surf161 <> surface/1623/surf161
+> > > > - LEGS: 28 (previous: 27332, now:27360)
+> > > - INCLUDE-return from include - surface/1623/surf161
+> > > - INCLUDE-go path found, including - surface/1623/vd1-161d
+> > > - NO Match in DB (i) for a cave for surface/1623/vd1-161d
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/vd1-161d
+> > > > - No match (b) for surface/1623/vd1to161d
+> > > > - Begin found for:vd1to161d, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'vd1to161d'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/vd1-161d <> surface/1623/vd1-161d
+> > > > - LEGS: 38 (previous: 27360, now:27398)
+> > > - INCLUDE-return from include - surface/1623/vd1-161d
+> > > - No match (b) for surface/1623/162bodge
+> > > - Begin found for:162bodge, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '162bodge'
+> > > > - MEM:49.383 Reading. parent:surface/1623/allnrkh <> surface/1623/allnrkh
+> > > - LEGS: 0 (previous: 27398, now:27398)
+> > - INCLUDE-return from include - surface/1623/allnrkh
+> > - INCLUDE-go path found, including - surface/1623/allhinter
+> > - NO Match in DB (i) for a cave for surface/1623/allhinter
+> > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/allhinter
+> > > - INCLUDE-go path found, including - surface/1623/steinsrf
+> > > - NO Match in DB (i) for a cave for surface/1623/steinsrf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/steinsrf
+> > > > - No match (b) for surface/1623/steinsrf
+> > > > - Begin found for:steinsrf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'steinsrf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/steinsrf <> surface/1623/steinsrf
+> > > > - LEGS: 21 (previous: 27398, now:27419)
+> > > - INCLUDE-return from include - surface/1623/steinsrf
+> > > - INCLUDE-go path found, including - surface/1623/204atoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204atoc
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/204atoc
+> > > > - No match (b) for surface/1623/204atoc
+> > > > - Begin found for:204atoc, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '204atoc'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/204atoc <> surface/1623/204atoc
+> > > > - LEGS: 17 (previous: 27419, now:27436)
+> > > - INCLUDE-return from include - surface/1623/204atoc
+> > > - INCLUDE-go path found, including - surface/1623/204d
+> > > - NO Match in DB (i) for a cave for surface/1623/204d
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/204d
+> > > > - No match (b) for surface/1623/204d
+> > > > - Begin found for:204d, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '204d'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/204d <> surface/1623/204d
+> > > > - LEGS: 13 (previous: 27436, now:27449)
+> > > - INCLUDE-return from include - surface/1623/204d
+> > > - INCLUDE-go path found, including - surface/1623/204etoc
+> > > - NO Match in DB (i) for a cave for surface/1623/204etoc
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/204etoc
+> > > > - No match (b) for surface/1623/204etoc
+> > > > - Begin found for:204etoc, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '204etoc'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/204etoc <> surface/1623/204etoc
+> > > > - LEGS: 6 (previous: 27449, now:27455)
+> > > - INCLUDE-return from include - surface/1623/204etoc
+> > > - INCLUDE-go path found, including - surface/1623/204ato239
+> > > - NO Match in DB (i) for a cave for surface/1623/204ato239
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/204ato239
+> > > > - No match (b) for surface/1623/204ato239
+> > > > - Begin found for:204ato239, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '204ato239'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/204ato239 <> surface/1623/204ato239
+> > > > - LEGS: 10 (previous: 27455, now:27465)
+> > > - INCLUDE-return from include - surface/1623/204ato239
+> > > - No match (b) for surface/1623/204cbodge
+> > > - Begin found for:204cbodge, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: '204cbodge'
+> > > > - MEM:49.383 Reading. parent:surface/1623/allhinter <> surface/1623/allhinter
+> > > - LEGS: 0 (previous: 27465, now:27465)
+> > - INCLUDE-return from include - surface/1623/allhinter
+> > - INCLUDE-go path found, including - surface/1623/allnr41
+> > - NO Match in DB (i) for a cave for surface/1623/allnr41
+> > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/allnr41
+> > > - INCLUDE-go path found, including - surface/1623/p78
+> > > - NO Match in DB (i) for a cave for surface/1623/p78
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/p78
+> > > > - No match (b) for surface/1623/schwabsurf
+> > > > - Begin found for:schwabsurf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'schwabsurf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/p78 <> surface/1623/p78
+> > > > ! Unparsed [*set]: 'blank () ,' surface/1623/p78
+> > > > - LEGS: 52 (previous: 27465, now:27517)
+> > > - INCLUDE-return from include - surface/1623/p78
+> > > - INCLUDE-go path found, including - surface/1623/78to78d
+> > > - NO Match in DB (i) for a cave for surface/1623/78to78d
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/78to78d
+> > > > - No match (b) for surface/1623/E4
+> > > > - Begin found for:e4, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'e4'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/78to78d <> surface/1623/78to78d
+> > > > - LEGS: 23 (previous: 27517, now:27540)
+> > > - INCLUDE-return from include - surface/1623/78to78d
+> > > - INCLUDE-go path found, including - surface/1623/domsurf
+> > > - NO Match in DB (i) for a cave for surface/1623/domsurf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/domsurf
+> > > > - No match (b) for surface/1623/dominosurf
+> > > > - Begin found for:dominosurf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'dominosurf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/domsurf <> surface/1623/domsurf
+> > > > - LEGS: 28 (previous: 27540, now:27568)
+> > > - INCLUDE-return from include - surface/1623/domsurf
+> > > - INCLUDE-go path found, including - surface/1623/sonnausn
+> > > - NO Match in DB (i) for a cave for surface/1623/sonnausn
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/sonnausn
+> > > > - No match (b) for surface/1623/sonnausn
+> > > > - Begin found for:sonnausn, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'sonnausn'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/sonnausn <> surface/1623/sonnausn
+> > > > - LEGS: 14 (previous: 27568, now:27582)
+> > > - INCLUDE-return from include - surface/1623/sonnausn
+> > > - INCLUDE-go path found, including - surface/1623/41toBunt
+> > > - NO Match in DB (i) for a cave for surface/1623/41toBunt
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/Hillside
+> > > > - Begin found for:hillside, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'hillside'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > - No match (b) for surface/1623/82
+> > > > - Begin found for:82, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '82'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/41toBunt <> surface/1623/41toBunt
+> > > > - LEGS: 33 (previous: 27582, now:27615)
+> > > - INCLUDE-return from include - surface/1623/41toBunt
+> > > - INCLUDE-go path found, including - surface/1623/lookfut
+> > > - NO Match in DB (i) for a cave for surface/1623/lookfut
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/lookfut
+> > > > - No match (b) for surface/1623/LookFutile
+> > > > - Begin found for:lookfutile, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'lookfutile'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/lookfut <> surface/1623/lookfut
+> > > > - LEGS: 24 (previous: 27615, now:27639)
+> > > - INCLUDE-return from include - surface/1623/lookfut
+> > > - INCLUDE-go path found, including - surface/1623/nipple
+> > > - NO Match in DB (i) for a cave for surface/1623/nipple
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/nipple
+> > > > - Begin found for:nipple, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'nipple'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > - No match (b) for surface/1623/fix
+> > > > - Begin found for:fix, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'fix'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/nipple <> surface/1623/nipple
+> > > > - LEGS: 1 (previous: 27711, now:27712)
+> > > - INCLUDE-return from include - surface/1623/nipple
+> > > - INCLUDE-go path found, including - surface/1623/p155
+> > > - NO Match in DB (i) for a cave for surface/1623/p155
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/Nipto155
+> > > > - Begin found for:nipto155, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'nipto155'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/p155 <> surface/1623/p155
+> > > > - LEGS: 23 (previous: 27712, now:27735)
+> > > - INCLUDE-return from include - surface/1623/p155
+> > > - INCLUDE-go path found, including - surface/1623/L8to158
+> > > - NO Match in DB (i) for a cave for surface/1623/L8to158
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/L8to158
+> > > > - No match (b) for surface/1623/L8to158
+> > > > - Begin found for:l8to158, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'l8to158'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/L8to158 <> surface/1623/L8to158
+> > > > - LEGS: 17 (previous: 27735, now:27752)
+> > > - INCLUDE-return from include - surface/1623/L8to158
+> > > - INCLUDE-go path found, including - surface/1623/stoger
+> > > - NO Match in DB (i) for a cave for surface/1623/stoger
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/Stogerweg
+> > > > - Begin found for:stogerweg, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'stogerweg'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > - No match (b) for surface/1623/pt1
+> > > > - Begin found for:pt1, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'pt1'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/stoger <> surface/1623/stoger
+> > > > - LEGS: 38 (previous: 27752, now:27790)
+> > > - INCLUDE-return from include - surface/1623/stoger
+> > > - INCLUDE-go path found, including - surface/1623/228ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/228ausn
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/228ausn
+> > > > - No match (b) for surface/1623/228ausn
+> > > > - Begin found for:228ausn, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '228ausn'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/228ausn <> surface/1623/228ausn
+> > > > - LEGS: 7 (previous: 27790, now:27797)
+> > > - INCLUDE-return from include - surface/1623/228ausn
+> > > - INCLUDE-go path found, including - surface/1623/31ausn
+> > > - NO Match in DB (i) for a cave for surface/1623/31ausn
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/31ausn
+> > > > - No match (b) for surface/1623/31ausn
+> > > > - Begin found for:31ausn, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '31ausn'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/31ausn <> surface/1623/31ausn
+> > > > - LEGS: 3 (previous: 27797, now:27800)
+> > > - INCLUDE-return from include - surface/1623/31ausn
+> > - INCLUDE-return from include - surface/1623/allnr41
+> > - INCLUDE-go path found, including - surface/1623/allnr40
+> > - NO Match in DB (i) for a cave for surface/1623/allnr40
+> > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/allnr40
+> > > - INCLUDE-go path found, including - surface/1623/weisausn
+> > > - NO Match in DB (i) for a cave for surface/1623/weisausn
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/weisausn
+> > > > - No match (b) for surface/1623/weisausn
+> > > > - Begin found for:weisausn, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'weisausn'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/weisausn <> surface/1623/weisausn
+> > > > - LEGS: 3 (previous: 27800, now:27803)
+> > > - INCLUDE-return from include - surface/1623/weisausn
+> > > - INCLUDE-go path found, including - surface/1623/2002-W-02surf
+> > > - NO Match in DB (i) for a cave for surface/1623/2002-W-02surf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/2002-W-02surf
+> > > > - No match (b) for surface/1623/2002-w-02surf
+> > > > - Begin found for:2002-w-02surf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '2002-w-02surf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/2002-W-02surf <> surface/1623/2002-W-02surf
+> > > > - LEGS: 2 (previous: 27803, now:27805)
+> > > - INCLUDE-return from include - surface/1623/2002-W-02surf
+> > > - INCLUDE-go path found, including - surface/1623/eissurf
+> > > - NO Match in DB (i) for a cave for surface/1623/eissurf
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/eissurf
+> > > > - No match (b) for surface/1623/EisSurf
+> > > > - Begin found for:eissurf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'eissurf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/eissurf <> surface/1623/eissurf
+> > > > - LEGS: 13 (previous: 27805, now:27818)
+> > > - INCLUDE-return from include - surface/1623/eissurf
+> > > - INCLUDE-go path found, including - surface/1623/40ftoe
+> > > - NO Match in DB (i) for a cave for surface/1623/40ftoe
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/40ftoe
+> > > > - No match (b) for surface/1623/gruensurf
+> > > > - Begin found for:gruensurf, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'gruensurf'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/40ftoe <> surface/1623/40ftoe
+> > > > - LEGS: 7 (previous: 27818, now:27825)
+> > > - INCLUDE-return from include - surface/1623/40ftoe
+> > > - INCLUDE-go path found, including - surface/1623/40to88
+> > > - NO Match in DB (i) for a cave for surface/1623/40to88
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/40to88
+> > > > - No match (b) for surface/1623/40to88
+> > > > - Begin found for:40to88, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '40to88'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/40to88 <> surface/1623/40to88
+> > > > - LEGS: 15 (previous: 27825, now:27840)
+> > > - INCLUDE-return from include - surface/1623/40to88
+> > > - INCLUDE-go path found, including - surface/1623/e6ausen
+> > > - NO Match in DB (i) for a cave for surface/1623/e6ausen
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/e6ausen
+> > > > - No match (b) for surface/1623/e6ausen
+> > > > - Begin found for:e6ausen, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'e6ausen'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/e6ausen <> surface/1623/e6ausen
+> > > > - LEGS: 10 (previous: 27840, now:27850)
+> > > - INCLUDE-return from include - surface/1623/e6ausen
+> > > - INCLUDE-go path found, including - surface/1623/vfhmdata
+> > > - NO Match in DB (i) for a cave for surface/1623/vfhmdata
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/vfhmdata
+> > > > - No match (b) for surface/1623/VfHMdata
+> > > > - Begin found for:vfhmdata, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: 'vfhmdata'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/vfhmdata <> surface/1623/vfhmdata
+> > > > - LEGS: 105 (previous: 27850, now:27955)
+> > > - INCLUDE-return from include - surface/1623/vfhmdata
+> > > - INCLUDE-go path found, including - surface/1623/40ents
+> > > - NO Match in DB (i) for a cave for surface/1623/40ents
+> > > > - MEM:49.383 Reading. parent:kataster/1623 <> surface/1623/40ents
+> > > > - No match (b) for surface/1623/40entlink
+> > > > - Begin found for:40entlink, creating new SurvexBlock
+> > > > - BLOCK-enter nested *begin/*end block: '40entlink'
+> > > > > - MEM:49.383 Reading. parent:surface/1623/40ents <> surface/1623/40ents
+> > > > - LEGS: 12 (previous: 27955, now:27967)
+> > > - INCLUDE-return from include - surface/1623/40ents
+> > - INCLUDE-return from include - surface/1623/allnr40
+> > - LEGS: 27967 (previous: 0, now:27967)
+> - INCLUDE-return from include - surface/1623/allsurface
+> - INCLUDE-go path found, including - fixedpts/gps/tracks/alltracks
+> - NO Match in DB (i) for a cave for fixedpts/gps/tracks/alltracks
+> > - MEM:49.383 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/alltracks
+> > - INCLUDE-go path found, including - fixedpts/gps/tracks/carpark-204
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-204
+> > > - MEM:49.383 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-204
+> > > - No match (b) for fixedpts/gps/tracks/carpark-204
+> > > - Begin found for:carpark-204, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'carpark-204'
+> > > > - MEM:49.422 Reading. parent:fixedpts/gps/tracks/carpark-204 <> fixedpts/gps/tracks/carpark-204
+> > > - LEGS: 0 (previous: 27967, now:27967)
+> > - INCLUDE-return from include - fixedpts/gps/tracks/carpark-204
+> > - INCLUDE-go path found, including - fixedpts/gps/tracks/carpark-40
+> > - NO Match in DB (i) for a cave for fixedpts/gps/tracks/carpark-40
+> > > - MEM:49.422 Reading. parent:kataster/1623 <> fixedpts/gps/tracks/carpark-40
+> > > - No match (b) for fixedpts/gps/tracks/carpark-40
+> > > - Begin found for:carpark-40, creating new SurvexBlock
+> > > - BLOCK-enter nested *begin/*end block: 'carpark-40'
+> > > > - MEM:49.422 Reading. parent:fixedpts/gps/tracks/carpark-40 <> fixedpts/gps/tracks/carpark-40
+> > > - LEGS: 0 (previous: 27967, now:27967)
+> > - INCLUDE-return from include - fixedpts/gps/tracks/carpark-40
+> - INCLUDE-return from include - fixedpts/gps/tracks/alltracks
+> - LEGS: 27967 (previous: 0, now:27967)
+ - INCLUDE-return from include - kataster/1623
+ - INCLUDE-go path found, including - gpx/2017/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2017/svx/all_gpx
+> - MEM:49.422 Reading. parent:1623 <> gpx/2017/svx/all_gpx
+> - INCLUDE-go path found, including - gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> - NO Match in DB (i) for a cave for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - MEM:49.422 Reading. parent:1623 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - Begin found for:car-park-to-stone-bridge_psargent-2017-08-06, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'car-park-to-stone-bridge_psargent-2017-08-06'
+> > > - MEM:49.559 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.559 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - No match (b) for gpx/2017/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.559 Reading. parent:gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06 <> gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+> > - LEGS: 70 (previous: 27967, now:28037)
+> - INCLUDE-return from include - gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+ - INCLUDE-return from include - gpx/2017/svx/all_gpx
+ - INCLUDE-go path found, including - gpx/2017/additional_info
+ - NO Match in DB (i) for a cave for gpx/2017/additional_info
+> - MEM:49.559 Reading. parent:1623 <> gpx/2017/additional_info
+ - INCLUDE-return from include - gpx/2017/additional_info
+ - INCLUDE-go path found, including - gpx/2018/svx/all_gpx
+ - NO Match in DB (i) for a cave for gpx/2018/svx/all_gpx
+> - MEM:49.559 Reading. parent:1623 <> gpx/2018/svx/all_gpx
+> - INCLUDE-go path found, including - gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - MEM:49.559 Reading. parent:1623 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - Begin found for:balkon-to-organhoehle_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'balkon-to-organhoehle_aday-2018-07-12'
+> > > - MEM:49.559 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.559 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.559 Reading. parent:gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12 <> gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> > - LEGS: 253 (previous: 28037, now:28290)
+> - INCLUDE-return from include - gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - MEM:49.559 Reading. parent:1623 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - Begin found for:fischgesicht-to-painted-track_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'fischgesicht-to-painted-track_aday-2018-07-12'
+> > > - MEM:49.559 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.559 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.559 Reading. parent:gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12 <> gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> > - LEGS: 297 (previous: 28290, now:28587)
+> - INCLUDE-return from include - gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - MEM:49.559 Reading. parent:1623 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - Begin found for:gschwandalm-to-car-park_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'gschwandalm-to-car-park_aday-2018-07-12'
+> > > - MEM:49.590 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.590 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.594 Reading. parent:gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12 <> gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> > - LEGS: 721 (previous: 28587, now:29308)
+> - INCLUDE-return from include - gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/painted-track_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - MEM:49.594 Reading. parent:1623 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/painted-track_aday-2018-07-12
+> > - Begin found for:painted-track_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'painted-track_aday-2018-07-12'
+> > > - MEM:49.594 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.594 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.594 Reading. parent:gpx/2018/svx/painted-track_aday-2018-07-12 <> gpx/2018/svx/painted-track_aday-2018-07-12
+> > - LEGS: 696 (previous: 29308, now:30004)
+> - INCLUDE-return from include - gpx/2018/svx/painted-track_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - MEM:49.594 Reading. parent:1623 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - Begin found for:prospecting-kleiner-wildkogel_jtoft-2018-07-11, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'prospecting-kleiner-wildkogel_jtoft-2018-07-11'
+> > > - MEM:49.664 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.664 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.664 Reading. parent:gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11 <> gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> > - LEGS: 934 (previous: 30004, now:30938)
+> - INCLUDE-return from include - gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+> - INCLUDE-go path found, including - gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - MEM:49.664 Reading. parent:1623 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - Begin found for:prospecting-near-organhoehle_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'prospecting-near-organhoehle_aday-2018-07-12'
+> > > - MEM:49.770 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:49.770 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:49.770 Reading. parent:gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12 <> gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> > - LEGS: 1144 (previous: 30938, now:32082)
+> - INCLUDE-return from include - gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - MEM:49.770 Reading. parent:1623 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - Begin found for:prospecting-nw-of-fischgesicht_mshinwell-2018-07-11, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'prospecting-nw-of-fischgesicht_mshinwell-2018-07-11'
+> > > - MEM:50.086 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11 <> gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> > - LEGS: 1858 (previous: 32082, now:33940)
+> - INCLUDE-return from include - gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+> - INCLUDE-go path found, including - gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - Begin found for:stone-bridge-to-balkon_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'stone-bridge-to-balkon_aday-2018-07-12'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> > - LEGS: 187 (previous: 33940, now:34127)
+> - INCLUDE-return from include - gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - Begin found for:stone-bridge-to-fischgesicht_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'stone-bridge-to-fischgesicht_aday-2018-07-12'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12 <> gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> > - LEGS: 262 (previous: 34127, now:34389)
+> - INCLUDE-return from include - gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/waypoints_aday-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-11
+> > - Begin found for:waypoints_aday-2018-07-11, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'waypoints_aday-2018-07-11'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-11 <> gpx/2018/svx/waypoints_aday-2018-07-11
+> > - LEGS: 0 (previous: 34389, now:34389)
+> - INCLUDE-return from include - gpx/2018/svx/waypoints_aday-2018-07-11
+> - INCLUDE-go path found, including - gpx/2018/svx/waypoints_aday-2018-07-12
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > - No match (b) for gpx/2018/svx/waypoints_aday-2018-07-12
+> > - Begin found for:waypoints_aday-2018-07-12, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'waypoints_aday-2018-07-12'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/waypoints_aday-2018-07-12 <> gpx/2018/svx/waypoints_aday-2018-07-12
+> > - LEGS: 0 (previous: 34389, now:34389)
+> - INCLUDE-return from include - gpx/2018/svx/waypoints_aday-2018-07-12
+> - INCLUDE-go path found, including - gpx/2018/svx/waypoints_jtoft-2018-07-14
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - No match (b) for gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - Begin found for:waypoints_jtoft-2018-07-14, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'waypoints_jtoft-2018-07-14'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/waypoints_jtoft-2018-07-14 <> gpx/2018/svx/waypoints_jtoft-2018-07-14
+> > - LEGS: 0 (previous: 34389, now:34389)
+> - INCLUDE-return from include - gpx/2018/svx/waypoints_jtoft-2018-07-14
+> - INCLUDE-go path found, including - gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> - NO Match in DB (i) for a cave for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - No match (b) for gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - Begin found for:waypoints_mshinwell-2018-07-11, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'waypoints_mshinwell-2018-07-11'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/waypoints_mshinwell-2018-07-11 <> gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> > - LEGS: 0 (previous: 34389, now:34389)
+> - INCLUDE-return from include - gpx/2018/svx/waypoints_mshinwell-2018-07-11
+> - INCLUDE-go path found, including - gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> - NO Match in DB (i) for a cave for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - MEM:50.090 Reading. parent:1623 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - Begin found for:west-of-plateau_cdensham-2018-07-15, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'west-of-plateau_cdensham-2018-07-15'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/track0
+> > - Begin found for:track0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'track0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - No match (b) for gpx/2018/svx/seg0
+> > - Begin found for:seg0, creating new SurvexBlock
+> > - BLOCK-enter nested *begin/*end block: 'seg0'
+> > > - MEM:50.090 Reading. parent:gpx/2018/svx/west-of-plateau_cdensham-2018-07-15 <> gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+> > - LEGS: 1402 (previous: 34389, now:35791)
+> - INCLUDE-return from include - gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+ - INCLUDE-return from include - gpx/2018/svx/all_gpx
+ - INCLUDE-go path found, including - kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+ - NO Match in DB (i) for a cave for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - MEM:50.090 Reading. parent:1623 <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - No match (b) for kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - Begin found for:kataster-boundaries, creating new SurvexBlock
+> - BLOCK-enter nested *begin/*end block: 'kataster-boundaries'
+> > - MEM:50.090 Reading. parent:kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries <> kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+> - LEGS: 0 (previous: 35791, now:35791)
+ - INCLUDE-return from include - kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
diff --git a/svxlinear.log b/svxlinear.log
new file mode 100644
index 0000000..26ae8f5
--- /dev/null
+++ b/svxlinear.log
@@ -0,0 +1,6806 @@
+ - MEM:39.63 MB START 1623
+ 0 *import 1623
+ 1 *import kataster/1623
+ 1 *begin 1623
+ 2 *import fixedpts/allfixedpts
+ 2 *begin
+ 3 *import fixedpts/gps/allgps
+ 4 *import fixedpts/gps/gps96
+ 3 *begin GPS96
+ 3 *end GPS96
+ 3 *begin GPS96AV
+ 3 *end GPS96AV
+ 3 *begin GPS96bestfit
+ 3 *end GPS96bestfit
+ 4 *tropmi fixedpts/gps/gps96
+ 4 *import fixedpts/gps/gps98
+ 3 *begin GPS98
+ 3 *end GPS98
+ 4 *tropmi fixedpts/gps/gps98
+ 4 *import fixedpts/gps/gps00
+ 3 *begin gps00
+ 3 *end gps00
+ 4 *tropmi fixedpts/gps/gps00
+ 4 *import fixedpts/gps/gps01
+ 3 *begin gps01
+ 3 *end gps01
+ 4 *tropmi fixedpts/gps/gps01
+ 4 *import fixedpts/gps/gps02
+ 3 *begin gps02
+ 3 *end gps02
+ 4 *tropmi fixedpts/gps/gps02
+ 4 *import fixedpts/gps/gps02olly
+ 3 *begin gps02olly
+ 3 *end gps02olly
+ 4 *tropmi fixedpts/gps/gps02olly
+ 4 *import fixedpts/gps/gps03
+ 3 *begin gps03
+ 3 *end gps03
+ 4 *tropmi fixedpts/gps/gps03
+ 4 *import fixedpts/gps/gps03_bis
+ 3 *begin gps03_bis
+ 3 *end gps03_bis
+ 4 *tropmi fixedpts/gps/gps03_bis
+ 4 *import fixedpts/gps/gps04
+ 3 *begin gps04
+ 3 *end gps04
+ 4 *tropmi fixedpts/gps/gps04
+ 4 *import fixedpts/gps/gps05dave
+ 4 *tropmi fixedpts/gps/gps05dave
+ 4 *import fixedpts/gps/gps05
+ 4 *tropmi fixedpts/gps/gps05
+ 4 *import fixedpts/gps/gps06
+ 3 *begin gps06
+ 3 *end gps06
+ 4 *tropmi fixedpts/gps/gps06
+ 4 *import fixedpts/gps/gps07
+ 3 *begin gps07
+ 3 *end gps07
+ 4 *tropmi fixedpts/gps/gps07
+ 4 *import fixedpts/gps/gps09
+ 4 *tropmi fixedpts/gps/gps09
+ 4 *import fixedpts/gps/gps10
+ 3 *begin
+ 3 *end
+ 4 *tropmi fixedpts/gps/gps10
+ 4 *import fixedpts/gps/gps11
+ 4 *tropmi fixedpts/gps/gps11
+ 4 *import fixedpts/gps/gps12
+ 3 *begin
+ 3 *end
+ 3 *begin
+ 3 *end
+ 4 *tropmi fixedpts/gps/gps12
+ 4 *import fixedpts/gps/gps14
+ 4 *tropmi fixedpts/gps/gps14
+ 4 *import fixedpts/gps/gps15
+ 3 *begin
+ 3 *end
+ 4 *tropmi fixedpts/gps/gps15
+ 4 *import fixedpts/gps/gps16
+ 3 *begin
+ 3 *end
+ 4 *tropmi fixedpts/gps/gps16
+ 4 *import fixedpts/gps/gps17
+ 3 *begin
+ 3 *end
+ 4 *tropmi fixedpts/gps/gps17
+ 4 *import fixedpts/gps/gps18
+ 3 *begin
+ 3 *end
+ 4 *tropmi fixedpts/gps/gps18
+ 3 *tropmi fixedpts/gps/allgps
+ 3 *import fixedpts/nils2000
+ 3 *begin
+ 3 *end
+ 3 *tropmi fixedpts/nils2000
+ 3 *import fixedpts/laser
+ 3 *begin Laser
+ 3 *end Laser
+ 3 *tropmi fixedpts/laser
+ 3 *import fixedpts/fb-map
+ 3 *begin
+ 3 *end
+ 3 *tropmi fixedpts/fb-map
+ 3 *import fixedpts/misc
+ 3 *tropmi fixedpts/misc
+ 2 *end
+ 2 *tropmi fixedpts/allfixedpts
+ 2 *import caves-1623/caves
+ 3 *import caves-1623/links
+ 3 *tropmi caves-1623/links
+ 3 *import caves-1623/18/18
+ 2 *begin 18
+ 2 *end 18
+ 3 *tropmi caves-1623/18/18
+ 3 *import caves-1623/31/31
+ 2 *begin 31
+ 4 *import caves-1623/31/elchalt
+ 3 *begin elchalt
+ 3 *end elchalt
+ 4 *tropmi caves-1623/31/elchalt
+ 2 *end 31
+ 3 *tropmi caves-1623/31/31
+ 3 *import caves-1623/76/76
+ 2 *begin 76
+ 4 *import caves-1623/76/entrance
+ 3 *begin entrance
+ 3 *end entrance
+ 4 *tropmi caves-1623/76/entrance
+ 4 *import caves-1623/76/bitter
+ 3 *begin bitter
+ 3 *end bitter
+ 4 *tropmi caves-1623/76/bitter
+ 4 *import caves-1623/76/bent
+ 3 *begin bent
+ 3 *end bent
+ 4 *tropmi caves-1623/76/bent
+ 4 *import caves-1623/76/brave
+ 3 *begin brave
+ 3 *end brave
+ 4 *tropmi caves-1623/76/brave
+ 4 *import caves-1623/76/lovers
+ 3 *begin lovers
+ 3 *end lovers
+ 4 *tropmi caves-1623/76/lovers
+ 4 *import caves-1623/76/saved
+ 3 *begin saved
+ 3 *end saved
+ 4 *tropmi caves-1623/76/saved
+ 4 *import caves-1623/76/brave2
+ 3 *begin brave2
+ 3 *end brave2
+ 4 *tropmi caves-1623/76/brave2
+ 4 *import caves-1623/76/brave3
+ 3 *begin brave3
+ 3 *end brave3
+ 4 *tropmi caves-1623/76/brave3
+ 4 *import caves-1623/76/brave4
+ 3 *begin brave4
+ 3 *end brave4
+ 4 *tropmi caves-1623/76/brave4
+ 4 *import caves-1623/76/brave5
+ 3 *begin brave5
+ 3 *end brave5
+ 4 *tropmi caves-1623/76/brave5
+ 4 *import caves-1623/76/brave6
+ 3 *begin brave6
+ 3 *end brave6
+ 4 *tropmi caves-1623/76/brave6
+ 4 *import caves-1623/76/brave7
+ 3 *begin brave7
+ 3 *end brave7
+ 4 *tropmi caves-1623/76/brave7
+ 4 *import caves-1623/76/brave8
+ 3 *begin brave8
+ 3 *end brave8
+ 4 *tropmi caves-1623/76/brave8
+ 4 *import caves-1623/76/keg
+ 3 *begin keg
+ 3 *end keg
+ 4 *tropmi caves-1623/76/keg
+ 4 *import caves-1623/76/tap
+ 3 *begin tap
+ 4 *begin
+ 4 *end
+ 3 *end tap
+ 4 *tropmi caves-1623/76/tap
+ 4 *import caves-1623/76/rift
+ 3 *begin rift
+ 3 *end rift
+ 3 *begin riftconn
+ 3 *end riftconn
+ 4 *tropmi caves-1623/76/rift
+ 4 *import caves-1623/76/noways
+ 3 *begin noways
+ 3 *end noways
+ 4 *tropmi caves-1623/76/noways
+ 4 *import caves-1623/76/pitch
+ 3 *begin pitch
+ 3 *end pitch
+ 4 *tropmi caves-1623/76/pitch
+ 4 *import caves-1623/76/boiling
+ 3 *begin boiling
+ 3 *end boiling
+ 4 *tropmi caves-1623/76/boiling
+ 4 *import caves-1623/76/99
+ 3 *begin 99
+ 3 *end 99
+ 3 *begin 99pt2
+ 3 *end 99pt2
+ 3 *begin 99conn
+ 3 *end 99conn
+ 4 *tropmi caves-1623/76/99
+ 4 *import caves-1623/76/tap2
+ 3 *begin tap2
+ 3 *end tap2
+ 3 *begin razoradvance
+ 3 *end razoradvance
+ 4 *tropmi caves-1623/76/tap2
+ 4 *import caves-1623/76/taprift
+ 3 *begin taprift
+ 3 *end taprift
+ 4 *tropmi caves-1623/76/taprift
+ 4 *import caves-1623/76/pleasant
+ 3 *begin pleasant
+ 3 *end pleasant
+ 3 *begin noname
+ 3 *end noname
+ 4 *tropmi caves-1623/76/pleasant
+ 4 *import caves-1623/76/batman
+ 3 *begin batman
+ 3 *end batman
+ 4 *tropmi caves-1623/76/batman
+ 4 *import caves-1623/76/pancake
+ 3 *begin pancake
+ 3 *end pancake
+ 4 *tropmi caves-1623/76/pancake
+ 4 *import caves-1623/76/loopy
+ 3 *begin loopy
+ 3 *end loopy
+ 4 *tropmi caves-1623/76/loopy
+ 4 *import caves-1623/76/spent
+ 3 *begin spent
+ 3 *end spent
+ 4 *tropmi caves-1623/76/spent
+ 4 *import caves-1623/76/strange
+ 3 *begin strange
+ 3 *end strange
+ 4 *tropmi caves-1623/76/strange
+ 4 *import caves-1623/76/stranger
+ 3 *begin stranger
+ 3 *end stranger
+ 4 *tropmi caves-1623/76/stranger
+ 4 *import caves-1623/76/waste
+ 3 *begin waste
+ 3 *end waste
+ 4 *tropmi caves-1623/76/waste
+ 4 *import caves-1623/76/hotgkpitch
+ 3 *begin hotgkpitch
+ 3 *end hotgkpitch
+ 4 *tropmi caves-1623/76/hotgkpitch
+ 4 *import caves-1623/76/hotgk
+ 3 *begin hotgk
+ 3 *end hotgk
+ 4 *tropmi caves-1623/76/hotgk
+ 4 *import caves-1623/76/fiesta
+ 3 *begin fiesta
+ 3 *end fiesta
+ 4 *tropmi caves-1623/76/fiesta
+ 4 *import caves-1623/76/holes
+ 3 *begin holes
+ 3 *end holes
+ 4 *tropmi caves-1623/76/holes
+ 4 *import caves-1623/76/boil2
+ 3 *begin boil2
+ 3 *end boil2
+ 4 *tropmi caves-1623/76/boil2
+ 4 *import caves-1623/76/boil3
+ 3 *begin boil3
+ 3 *end boil3
+ 4 *tropmi caves-1623/76/boil3
+ 4 *import caves-1623/76/choss
+ 3 *begin choss
+ 3 *end choss
+ 4 *tropmi caves-1623/76/choss
+ 4 *import caves-1623/76/brave9
+ 3 *begin brave9
+ 3 *end brave9
+ 4 *tropmi caves-1623/76/brave9
+ 4 *import caves-1623/76/electric_upper
+ 3 *begin electric_upper
+ 3 *end electric_upper
+ 4 *tropmi caves-1623/76/electric_upper
+ 4 *import caves-1623/76/electric_lower
+ 3 *begin electric_lower
+ 3 *end electric_lower
+ 4 *tropmi caves-1623/76/electric_lower
+ 4 *import caves-1623/76/atomic
+ 3 *begin atomic
+ 3 *end atomic
+ 4 *tropmi caves-1623/76/atomic
+ 2 *end 76
+ 3 *tropmi caves-1623/76/76
+ 3 *import caves-1623/81/81
+ 2 *begin 81
+ 3 *begin oldcave
+ 3 *end oldcave
+ 4 *import caves-1623/81/81more
+ 3 *begin newpart
+ 3 *end newpart
+ 3 *begin 148conn
+ 3 *end 148conn
+ 4 *tropmi caves-1623/81/81more
+ 2 *end 81
+ 3 *tropmi caves-1623/81/81
+ 3 *import caves-1623/90/90
+ 2 *begin 90
+ 2 *end 90
+ 3 *tropmi caves-1623/90/90
+ 3 *import caves-1623/91/91
+ 2 *begin 91
+ 2 *end 91
+ 3 *tropmi caves-1623/91/91
+ 3 *import caves-1623/96/96
+ 2 *begin 96
+ 2 *end 96
+ 3 *tropmi caves-1623/96/96
+ 3 *import caves-1623/97/97
+ 2 *begin 97
+ 2 *end 97
+ 3 *tropmi caves-1623/97/97
+ 3 *import caves-1623/101/101
+ 2 *begin 101
+ 2 *end 101
+ 3 *tropmi caves-1623/101/101
+ 3 *import caves-1623/103/103
+ 2 *begin 103
+ 2 *end 103
+ 3 *tropmi caves-1623/103/103
+ 3 *import caves-1623/105/105
+ 2 *begin 105
+ 2 *end 105
+ 3 *tropmi caves-1623/105/105
+ 3 *import caves-1623/108/108
+ 2 *begin 108
+ 2 *end 108
+ 3 *tropmi caves-1623/108/108
+ 3 *import caves-1623/113/113
+ 2 *begin 113
+ 4 *import caves-1623/113/haupt
+ 3 *begin haupt
+ 3 *end haupt
+ 4 *tropmi caves-1623/113/haupt
+ 4 *import caves-1623/113/oper
+ 3 *begin oper
+ 3 *end oper
+ 4 *tropmi caves-1623/113/oper
+ 4 *import caves-1623/113/sumpf
+ 3 *begin sumpf
+ 3 *end sumpf
+ 4 *tropmi caves-1623/113/sumpf
+ 2 *end 113
+ 3 *tropmi caves-1623/113/113
+ 3 *import caves-1623/116/116
+ 2 *begin 116
+ 2 *end 116
+ 3 *tropmi caves-1623/116/116
+ 3 *import caves-1623/131/131
+ 2 *begin 131
+ 3 *begin part1
+ 3 *end part1
+ 3 *begin part2
+ 3 *end part2
+ 3 *begin part3
+ 3 *end part3
+ 3 *begin part4
+ 3 *end part4
+ 2 *end 131
+ 3 *tropmi caves-1623/131/131
+ 3 *import caves-1623/135/135
+ 2 *begin 135
+ 2 *end 135
+ 3 *tropmi caves-1623/135/135
+ 3 *import caves-1623/138/138
+ 2 *begin 138
+ 2 *end 138
+ 3 *tropmi caves-1623/138/138
+ 3 *import caves-1623/139/139
+ 2 *begin 139
+ 2 *end 139
+ 3 *tropmi caves-1623/139/139
+ 3 *import caves-1623/140/140
+ 2 *begin 140
+ 2 *end 140
+ 3 *tropmi caves-1623/140/140
+ 3 *import caves-1623/145/145
+ 2 *begin 145
+ 4 *import caves-1623/145/resurvey2005/145-2005
+ 3 *begin 145-2005
+ 3 *end 145-2005
+ 4 *tropmi caves-1623/145/resurvey2005/145-2005
+ 4 *import caves-1623/145/145cucc/part3
+ 3 *begin part3
+ 3 *end part3
+ 4 *tropmi caves-1623/145/145cucc/part3
+ 4 *import caves-1623/145/145cucc/part3to4
+ 3 *begin part3to4
+ 3 *end part3to4
+ 4 *tropmi caves-1623/145/145cucc/part3to4
+ 4 *import caves-1623/145/145cucc/part4
+ 3 *begin part4
+ 3 *end part4
+ 4 *tropmi caves-1623/145/145cucc/part4
+ 4 *import caves-1623/145/145cucc/part5
+ 3 *begin part5
+ 3 *end part5
+ 4 *tropmi caves-1623/145/145cucc/part5
+ 2 *end 145
+ 3 *tropmi caves-1623/145/145
+ 3 *import caves-1623/147/147
+ 2 *begin sflink
+ 2 *end sflink
+ 2 *begin 147
+ 2 *end 147
+ 3 *tropmi caves-1623/147/147
+ 3 *import caves-1623/148/148-2007
+ 2 *begin 148
+ 3 *begin ent
+ 3 *end ent
+ 3 *begin two
+ 3 *end two
+ 3 *begin icecastle
+ 3 *end icecastle
+ 3 *begin choke
+ 3 *end choke
+ 3 *begin poxy
+ 3 *end poxy
+ 3 *begin newbit
+ 3 *end newbit
+ 3 *begin deepspace
+ 3 *end deepspace
+ 3 *begin pointless
+ 3 *end pointless
+ 3 *begin deepspace2
+ 3 *end deepspace2
+ 3 *begin supernova
+ 3 *end supernova
+ 2 *end 148
+ 3 *tropmi caves-1623/148/148-2007
+ 3 *import caves-1623/152/152
+ 2 *begin 152
+ 4 *import caves-1623/152/bananamain
+ 3 *begin BananaMain
+ 3 *end BananaMain
+ 4 *tropmi caves-1623/152/bananamain
+ 4 *import caves-1623/152/bananacon
+ 3 *begin BananaCon
+ 3 *end BananaCon
+ 4 *tropmi caves-1623/152/bananacon
+ 2 *end 152
+ 3 *tropmi caves-1623/152/152
+ 3 *import caves-1623/157/157
+ 2 *begin 157
+ 3 *begin
+ 3 *end
+ 3 *begin pt2
+ 4 *begin
+ 4 *end
+ 3 *end pt2
+ 2 *end 157
+ 3 *tropmi caves-1623/157/157
+ 3 *import caves-1623/162/162
+ 2 *begin 162
+ 2 *end 162
+ 3 *tropmi caves-1623/162/162
+ 3 *import caves-1623/163/163
+ 2 *begin 163
+ 2 *end 163
+ 3 *tropmi caves-1623/163/163
+ 3 *import caves-1623/171/171
+ 2 *begin 171
+ 3 *begin main
+ 3 *end main
+ 4 *import caves-1623/171/171_lower
+ 3 *begin 171_lower
+ 3 *end 171_lower
+ 4 *tropmi caves-1623/171/171_lower
+ 4 *import caves-1623/171/171_upper
+ 3 *begin 171_upper
+ 3 *end 171_upper
+ 4 *tropmi caves-1623/171/171_upper
+ 2 *end 171
+ 3 *tropmi caves-1623/171/171
+ 3 *import caves-1623/172/172
+ 2 *begin 172
+ 2 *end 172
+ 3 *tropmi caves-1623/172/172
+ 3 *import caves-1623/174/174
+ 2 *begin 174
+ 2 *end 174
+ 3 *tropmi caves-1623/174/174
+ 3 *import caves-1623/175/175
+ 2 *begin 175
+ 2 *end 175
+ 3 *tropmi caves-1623/175/175
+ 3 *import caves-1623/176/176
+ 2 *begin 176
+ 2 *end 176
+ 3 *tropmi caves-1623/176/176
+ 3 *import caves-1623/182/182
+ 2 *begin 182
+ 4 *import caves-1623/182/entrance
+ 3 *begin Entrance
+ 3 *end Entrance
+ 4 *tropmi caves-1623/182/entrance
+ 4 *import caves-1623/182/yorkrip
+ 3 *begin YorkRip
+ 3 *end YorkRip
+ 4 *tropmi caves-1623/182/yorkrip
+ 4 *import caves-1623/182/dottodot
+ 3 *begin DotToDot
+ 3 *end DotToDot
+ 4 *tropmi caves-1623/182/dottodot
+ 4 *import caves-1623/182/quark
+ 3 *begin Quark
+ 3 *end Quark
+ 3 *begin QSCLink
+ 3 *end QSCLink
+ 4 *tropmi caves-1623/182/quark
+ 4 *import caves-1623/182/amnesia
+ 3 *begin Amnesia
+ 3 *end Amnesia
+ 4 *tropmi caves-1623/182/amnesia
+ 4 *import caves-1623/182/piezo
+ 3 *begin Piezo
+ 3 *end Piezo
+ 4 *tropmi caves-1623/182/piezo
+ 4 *import caves-1623/182/strike2
+ 3 *begin Strike2
+ 3 *end Strike2
+ 4 *tropmi caves-1623/182/strike2
+ 4 *import caves-1623/182/piezo2
+ 3 *begin Piezo2
+ 3 *end Piezo2
+ 4 *tropmi caves-1623/182/piezo2
+ 4 *import caves-1623/182/ent2
+ 3 *begin Ent2
+ 3 *end Ent2
+ 3 *begin Ent2link
+ 3 *end Ent2link
+ 4 *tropmi caves-1623/182/ent2
+ 4 *import caves-1623/182/yorktop
+ 3 *begin YorkTop
+ 3 *end YorkTop
+ 4 *tropmi caves-1623/182/yorktop
+ 4 *import caves-1623/182/sump
+ 3 *begin Sump
+ 3 *end Sump
+ 4 *tropmi caves-1623/182/sump
+ 4 *import caves-1623/182/overshel
+ 3 *begin OTT
+ 3 *end OTT
+ 4 *tropmi caves-1623/182/overshel
+ 4 *import caves-1623/182/claustro
+ 3 *begin ClaustroLink
+ 3 *end ClaustroLink
+ 3 *begin Claustro
+ 3 *end Claustro
+ 4 *tropmi caves-1623/182/claustro
+ 4 *import caves-1623/182/brutefor
+ 3 *begin Brute
+ 3 *end Brute
+ 4 *tropmi caves-1623/182/brutefor
+ 2 *end 182
+ 3 *tropmi caves-1623/182/182
+ 3 *import caves-1623/183/183
+ 2 *begin 183
+ 3 *begin upper
+ 3 *end upper
+ 3 *begin lower
+ 3 *end lower
+ 2 *end 183
+ 3 *tropmi caves-1623/183/183
+ 3 *import caves-1623/185/185
+ 2 *begin 185
+ 2 *end 185
+ 3 *tropmi caves-1623/185/185
+ 3 *import caves-1623/193/193
+ 2 *begin 193
+ 2 *end 193
+ 3 *tropmi caves-1623/193/193
+ 3 *import caves-1623/195/195
+ 2 *begin 195
+ 2 *end 195
+ 3 *tropmi caves-1623/195/195
+ 3 *import caves-1623/196/196
+ 2 *begin 196
+ 2 *end 196
+ 3 *tropmi caves-1623/196/196
+ 3 *import caves-1623/199/199
+ 2 *begin 199
+ 2 *end 199
+ 3 *tropmi caves-1623/199/199
+ 3 *import caves-1623/200/200
+ 2 *begin 200
+ 2 *end 200
+ 3 *tropmi caves-1623/200/200
+ 3 *import caves-1623/201/201
+ 2 *begin 201
+ 2 *end 201
+ 3 *tropmi caves-1623/201/201
+ 3 *import caves-1623/202/202
+ 2 *begin 202
+ 2 *end 202
+ 3 *tropmi caves-1623/202/202
+ 3 *import caves-1623/203/203
+ 2 *begin 203
+ 2 *end 203
+ 3 *tropmi caves-1623/203/203
+ 3 *import caves-1623/205/205
+ 2 *begin 205
+ 3 *begin 1
+ 3 *end 1
+ 3 *begin 2
+ 3 *end 2
+ 2 *end 205
+ 3 *tropmi caves-1623/205/205
+ 3 *import caves-1623/206/206
+ 2 *begin 206
+ 2 *end 206
+ 3 *tropmi caves-1623/206/206
+ 3 *import caves-1623/207/207
+ 2 *begin 207
+ 2 *end 207
+ 3 *tropmi caves-1623/207/207
+ 3 *import caves-1623/208/208
+ 2 *begin 208
+ 2 *end 208
+ 3 *tropmi caves-1623/208/208
+ 3 *import caves-1623/209/209
+ 2 *begin 209
+ 3 *begin
+ 3 *end
+ 2 *end 209
+ 3 *tropmi caves-1623/209/209
+ 3 *import caves-1623/215/215
+ 2 *begin 215
+ 2 *end 215
+ 3 *tropmi caves-1623/215/215
+ 3 *import caves-1623/220/220
+ 2 *begin 220
+ 2 *end 220
+ 3 *tropmi caves-1623/220/220
+ 3 *import caves-1623/225/225
+ 2 *begin 225
+ 2 *end 225
+ 3 *tropmi caves-1623/225/225
+ 3 *import caves-1623/228/228
+ 2 *begin 228
+ 2 *end 228
+ 3 *tropmi caves-1623/228/228
+ 3 *import caves-1623/229/229
+ 2 *begin 229
+ 2 *end 229
+ 3 *tropmi caves-1623/229/229
+ 3 *import caves-1623/231/231
+ 2 *begin 231
+ 4 *import caves-1623/231/traun
+ 3 *begin traun
+ 3 *end traun
+ 3 *begin traun2
+ 3 *end traun2
+ 3 *begin traun3
+ 3 *end traun3
+ 3 *begin traun4
+ 3 *end traun4
+ 3 *begin traun5
+ 3 *end traun5
+ 4 *tropmi caves-1623/231/traun
+ 2 *end 231
+ 3 *tropmi caves-1623/231/231
+ 3 *import caves-1623/232/232
+ 2 *begin 232
+ 4 *import caves-1623/232/griess
+ 3 *begin griess
+ 3 *end griess
+ 4 *tropmi caves-1623/232/griess
+ 4 *import caves-1623/232/pille
+ 3 *begin pille
+ 3 *end pille
+ 4 *tropmi caves-1623/232/pille
+ 2 *end 232
+ 3 *tropmi caves-1623/232/232
+ 3 *import caves-1623/233/233
+ 2 *begin 233
+ 2 *end 233
+ 3 *tropmi caves-1623/233/233
+ 3 *import caves-1623/234/234
+ 2 *begin 234
+ 4 *import caves-1623/234/lefthand
+ 3 *begin lefthand
+ 3 *end lefthand
+ 4 *tropmi caves-1623/234/lefthand
+ 4 *import caves-1623/234/trunk
+ 3 *begin trunk
+ 3 *end trunk
+ 4 *tropmi caves-1623/234/trunk
+ 4 *import caves-1623/234/flatulence
+ 3 *begin flatulence
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end flatulence
+ 4 *tropmi caves-1623/234/flatulence
+ 4 *import caves-1623/234/flatulence2
+ 3 *begin flatulence2
+ 4 *begin
+ 4 *end
+ 3 *end flatulence2
+ 4 *tropmi caves-1623/234/flatulence2
+ 4 *import caves-1623/234/sourtaste
+ 3 *begin sourtaste
+ 3 *end sourtaste
+ 4 *tropmi caves-1623/234/sourtaste
+ 4 *import caves-1623/234/pie
+ 3 *begin pie
+ 3 *end pie
+ 4 *tropmi caves-1623/234/pie
+ 4 *import caves-1623/234/underhand
+ 3 *begin underhand
+ 3 *end underhand
+ 4 *tropmi caves-1623/234/underhand
+ 4 *import caves-1623/234/flashgun
+ 3 *begin flashgun
+ 3 *end flashgun
+ 4 *tropmi caves-1623/234/flashgun
+ 4 *import caves-1623/234/piersquared
+ 3 *begin piersquared
+ 3 *end piersquared
+ 4 *tropmi caves-1623/234/piersquared
+ 4 *import caves-1623/234/weeweeland
+ 3 *begin weeweeland
+ 3 *end weeweeland
+ 4 *tropmi caves-1623/234/weeweeland
+ 4 *import caves-1623/234/wowoland
+ 3 *begin wowoland
+ 3 *end wowoland
+ 4 *tropmi caves-1623/234/wowoland
+ 4 *import caves-1623/234/monster
+ 3 *begin monster
+ 3 *end monster
+ 4 *tropmi caves-1623/234/monster
+ 4 *import caves-1623/234/spitswallow
+ 3 *begin spitswallow
+ 3 *end spitswallow
+ 4 *tropmi caves-1623/234/spitswallow
+ 4 *import caves-1623/234/monstermunch
+ 3 *begin monstermunch
+ 3 *end monstermunch
+ 4 *tropmi caves-1623/234/monstermunch
+ 4 *import caves-1623/234/qm05-05c
+ 3 *begin qm05-05c
+ 3 *end qm05-05c
+ 4 *tropmi caves-1623/234/qm05-05c
+ 4 *import caves-1623/234/rubella
+ 3 *begin rubella
+ 3 *end rubella
+ 4 *tropmi caves-1623/234/rubella
+ 4 *import caves-1623/234/monstermunch2
+ 3 *begin monstermunch2
+ 3 *end monstermunch2
+ 4 *tropmi caves-1623/234/monstermunch2
+ 4 *import caves-1623/234/limopit
+ 3 *begin limopit
+ 3 *end limopit
+ 4 *tropmi caves-1623/234/limopit
+ 4 *import caves-1623/234/passage
+ 3 *begin passage
+ 3 *end passage
+ 4 *tropmi caves-1623/234/passage
+ 4 *import caves-1623/234/lastchancesaloon
+ 3 *begin lastchancesaloon
+ 3 *end lastchancesaloon
+ 4 *tropmi caves-1623/234/lastchancesaloon
+ 4 *import caves-1623/234/slapperpinkpot
+ 3 *begin slapperpinkpot
+ 3 *end slapperpinkpot
+ 4 *tropmi caves-1623/234/slapperpinkpot
+ 4 *import caves-1623/234/youshouldhaveneverletmebegin
+ 3 *begin youshouldhaveneverletmebegin
+ 3 *end youshouldhaveneverletmebegin
+ 4 *tropmi caves-1623/234/youshouldhaveneverletmebegin
+ 4 *import caves-1623/234/mercurialsuppository
+ 3 *begin mercurialsuppository
+ 3 *end mercurialsuppository
+ 4 *tropmi caves-1623/234/mercurialsuppository
+ 2 *end 234
+ 3 *tropmi caves-1623/234/234
+ 3 *import caves-1623/238/238
+ 2 *begin 238
+ 2 *end 238
+ 3 *tropmi caves-1623/238/238
+ 3 *import caves-1623/239/239
+ 2 *begin 239
+ 3 *begin rocknroll1
+ 3 *end rocknroll1
+ 3 *begin rocknroll2
+ 3 *end rocknroll2
+ 3 *begin rocknroll3
+ 3 *end rocknroll3
+ 3 *begin rocknrollsurf
+ 3 *end rocknrollsurf
+ 4 *import caves-1623/239/AScooped
+ 3 *begin AScooped
+ 3 *end AScooped
+ 4 *tropmi caves-1623/239/AScooped
+ 2 *end 239
+ 3 *tropmi caves-1623/239/239
+ 3 *import caves-1623/240/240
+ 2 *begin 240
+ 2 *end 240
+ 3 *tropmi caves-1623/240/240
+ 3 *import caves-1623/241/241
+ 2 *begin 241
+ 2 *end 241
+ 3 *tropmi caves-1623/241/241
+ 3 *import caves-1623/242/242
+ 2 *begin 242
+ 2 *end 242
+ 3 *tropmi caves-1623/242/242
+ 3 *import caves-1623/243/243
+ 2 *begin 243
+ 2 *end 243
+ 3 *tropmi caves-1623/243/243
+ 3 *import caves-1623/244/244
+ 2 *begin 244
+ 4 *import caves-1623/244/skinny
+ 3 *begin skinny
+ 3 *end skinny
+ 4 *tropmi caves-1623/244/skinny
+ 4 *import caves-1623/244/gravity
+ 3 *begin gravity
+ 3 *end gravity
+ 4 *tropmi caves-1623/244/gravity
+ 2 *end 244
+ 3 *tropmi caves-1623/244/244
+ 3 *import caves-1623/245/245
+ 2 *begin 245
+ 2 *end 245
+ 3 *tropmi caves-1623/245/245
+ 3 *import caves-1623/246/246
+ 2 *begin 246
+ 2 *end 246
+ 3 *tropmi caves-1623/246/246
+ 3 *import caves-1623/247/247
+ 2 *begin 247
+ 2 *end 247
+ 3 *tropmi caves-1623/247/247
+ 3 *import caves-1623/248/248
+ 2 *begin 248
+ 4 *import caves-1623/248/248-1
+ 3 *begin 248-1
+ 3 *end 248-1
+ 4 *tropmi caves-1623/248/248-1
+ 4 *import caves-1623/248/248-2
+ 3 *begin 248-2
+ 3 *end 248-2
+ 4 *tropmi caves-1623/248/248-2
+ 2 *end 248
+ 3 *tropmi caves-1623/248/248
+ 3 *import caves-1623/249/249
+ 2 *begin 249
+ 2 *end 249
+ 3 *tropmi caves-1623/249/249
+ 3 *import caves-1623/250/250
+ 2 *begin 250
+ 2 *end 250
+ 3 *tropmi caves-1623/250/250
+ 3 *import caves-1623/251/251
+ 2 *begin 251
+ 2 *end 251
+ 3 *tropmi caves-1623/251/251
+ 3 *import caves-1623/252/252
+ 2 *begin 252
+ 2 *end 252
+ 3 *tropmi caves-1623/252/252
+ 3 *import caves-1623/254/254
+ 2 *begin 254
+ 3 *begin
+ 3 *end
+ 2 *end 254
+ 3 *tropmi caves-1623/254/254
+ 3 *import caves-1623/261/261
+ 2 *begin 261
+ 2 *end 261
+ 3 *tropmi caves-1623/261/261
+ 3 *import caves-1623/262/262
+ 2 *begin 262
+ 2 *end 262
+ 3 *tropmi caves-1623/262/262
+ 3 *import caves-1623/263/263
+ 2 *begin 263
+ 2 *end 263
+ 3 *tropmi caves-1623/263/263
+ 3 *import caves-1623/267/267
+ 2 *begin 267
+ 2 *end 267
+ 3 *tropmi caves-1623/267/267
+ 3 *import caves-1623/271/271
+ 2 *begin 271
+ 3 *begin 1
+ 3 *end 1
+ 3 *begin 2
+ 4 *begin
+ 4 *end
+ 3 *end 2
+ 4 *import caves-1623/271/ngauruhoe
+ 3 *begin ngauruhoe
+ 3 *end ngauruhoe
+ 4 *tropmi caves-1623/271/ngauruhoe
+ 2 *end 271
+ 3 *tropmi caves-1623/271/271
+ 3 *import caves-1623/273/273
+ 2 *begin 273
+ 2 *end 273
+ 3 *tropmi caves-1623/273/273
+ 3 *import caves-1623/B4/B4
+ 2 *begin b4
+ 3 *begin
+ 3 *end
+ 2 *end b4
+ 3 *tropmi caves-1623/B4/B4
+ 3 *import caves-1623/96wk11/96wk11
+ 2 *begin wk11
+ 2 *end wk11
+ 3 *tropmi caves-1623/96wk11/96wk11
+ 3 *import caves-1623/99ob02/99ob02
+ 2 *begin 99ob02
+ 2 *end 99ob02
+ 3 *tropmi caves-1623/99ob02/99ob02
+ 3 *import caves-1623/2001-02/2001-02
+ 2 *begin 2001-02
+ 2 *end 2001-02
+ 3 *tropmi caves-1623/2001-02/2001-02
+ 3 *import caves-1623/2001-03/2001-03
+ 2 *begin 2001-03
+ 2 *end 2001-03
+ 3 *tropmi caves-1623/2001-03/2001-03
+ 3 *import caves-1623/2002-ad-03/2002-ad-03
+ 2 *begin 2002-ad-03
+ 2 *end 2002-ad-03
+ 3 *tropmi caves-1623/2002-ad-03/2002-ad-03
+ 3 *import caves-1623/2002-ad-04/2002-ad-04
+ 2 *begin 2002-ad-04
+ 2 *end 2002-ad-04
+ 3 *tropmi caves-1623/2002-ad-04/2002-ad-04
+ 3 *import caves-1623/2002-w-02/2002-w-02
+ 2 *begin 2002-w-02
+ 2 *end 2002-w-02
+ 3 *tropmi caves-1623/2002-w-02/2002-w-02
+ 3 *import caves-1623/2002-05/2002-05
+ 2 *begin 2002-05
+ 2 *end 2002-05
+ 3 *tropmi caves-1623/2002-05/2002-05
+ 3 *import caves-1623/2002-06/2002-06
+ 2 *begin 2002-06
+ 2 *end 2002-06
+ 3 *tropmi caves-1623/2002-06/2002-06
+ 3 *import caves-1623/2002-07/2002-07
+ 2 *begin 2002-07
+ 2 *end 2002-07
+ 3 *tropmi caves-1623/2002-07/2002-07
+ 3 *import caves-1623/2002-08/2002-08
+ 2 *begin 2002-08
+ 3 *begin
+ 3 *end
+ 2 *end 2002-08
+ 3 *tropmi caves-1623/2002-08/2002-08
+ 3 *import caves-1623/quarriesd/quarriesd
+ 2 *begin quarriesd
+ 3 *begin
+ 3 *end
+ 2 *end quarriesd
+ 3 *tropmi caves-1623/quarriesd/quarriesd
+ 3 *import caves-1623/2003-01/2003-01
+ 2 *begin 2003-01
+ 2 *end 2003-01
+ 3 *tropmi caves-1623/2003-01/2003-01
+ 3 *import caves-1623/2004-01/2004-01
+ 2 *begin 2004-01
+ 2 *end 2004-01
+ 3 *tropmi caves-1623/2004-01/2004-01
+ 3 *import caves-1623/2004-03/2004-03
+ 2 *begin 2004-03
+ 2 *end 2004-03
+ 3 *tropmi caves-1623/2004-03/2004-03
+ 3 *import caves-1623/2004-08/2004-08
+ 2 *begin 2004-08
+ 2 *end 2004-08
+ 3 *tropmi caves-1623/2004-08/2004-08
+ 3 *import caves-1623/2004-10/2004-10
+ 2 *begin 2004-10
+ 2 *end 2004-10
+ 3 *tropmi caves-1623/2004-10/2004-10
+ 3 *import caves-1623/2004-14/2004-14
+ 2 *begin 2004-14
+ 2 *end 2004-14
+ 3 *tropmi caves-1623/2004-14/2004-14
+ 3 *import caves-1623/2004-15/2004-15
+ 2 *begin 2004-15
+ 2 *end 2004-15
+ 3 *tropmi caves-1623/2004-15/2004-15
+ 3 *import caves-1623/2004-18/2004-18
+ 2 *begin 2004-18
+ 2 *end 2004-18
+ 3 *tropmi caves-1623/2004-18/2004-18
+ 3 *import caves-1623/2004-20/2004-20
+ 2 *begin 2004-20
+ 3 *begin
+ 3 *end
+ 3 *begin
+ 3 *end
+ 2 *end 2004-20
+ 3 *tropmi caves-1623/2004-20/2004-20
+ 3 *import caves-1623/2005-01/2005-01
+ 2 *begin 2005-01
+ 2 *end 2005-01
+ 3 *tropmi caves-1623/2005-01/2005-01
+ 3 *import caves-1623/2005-07/2005-07
+ 2 *begin 2005-07
+ 2 *end 2005-07
+ 3 *tropmi caves-1623/2005-07/2005-07
+ 3 *import caves-1623/2005-92/2005-92
+ 2 *begin 2005-92
+ 2 *end 2005-92
+ 3 *tropmi caves-1623/2005-92/2005-92
+ 3 *import caves-1623/2005-93/2005-93
+ 2 *begin 2005-93
+ 2 *end 2005-93
+ 3 *tropmi caves-1623/2005-93/2005-93
+ 3 *import caves-1623/2005-94/2005-94
+ 2 *begin 2005-94
+ 2 *end 2005-94
+ 3 *tropmi caves-1623/2005-94/2005-94
+ 3 *import caves-1623/2005-95/2005-95
+ 2 *begin 2005-95
+ 2 *end 2005-95
+ 3 *tropmi caves-1623/2005-95/2005-95
+ 3 *import caves-1623/2005-96/2005-96
+ 2 *begin 2005-96
+ 2 *end 2005-96
+ 3 *tropmi caves-1623/2005-96/2005-96
+ 3 *import caves-1623/2005-99/2005-99
+ 2 *begin 2005-99
+ 2 *end 2005-99
+ 3 *tropmi caves-1623/2005-99/2005-99
+ 3 *import caves-1623/2006-08/2006-08
+ 2 *begin 2006-08
+ 2 *end 2006-08
+ 3 *tropmi caves-1623/2006-08/2006-08
+ 3 *import caves-1623/2006-09/2006-09
+ 2 *begin 2006-09
+ 2 *end 2006-09
+ 3 *tropmi caves-1623/2006-09/2006-09
+ 3 *import caves-1623/2006-70/2006-70
+ 2 *begin 2006-70
+ 2 *end 2006-70
+ 3 *tropmi caves-1623/2006-70/2006-70
+ 3 *import caves-1623/2006-71/2006-71
+ 2 *begin 2006-71
+ 2 *end 2006-71
+ 3 *tropmi caves-1623/2006-71/2006-71
+ 3 *import caves-1623/2006-72/2006-72
+ 2 *begin 2006-72
+ 3 *begin pt1
+ 3 *end pt1
+ 3 *begin pt2
+ 3 *end pt2
+ 2 *end 2006-72
+ 3 *tropmi caves-1623/2006-72/2006-72
+ 3 *import caves-1623/2006-73/2006-73
+ 2 *begin 2006-73
+ 2 *end 2006-73
+ 3 *tropmi caves-1623/2006-73/2006-73
+ 3 *import caves-1623/2007-04/2007-04
+ 2 *begin 2007-04
+ 2 *end 2007-04
+ 3 *tropmi caves-1623/2007-04/2007-04
+ 3 *import caves-1623/2007-05/2007-05
+ 2 *begin 2007-05
+ 2 *end 2007-05
+ 3 *tropmi caves-1623/2007-05/2007-05
+ 3 *import caves-1623/2007-06/2007-06
+ 2 *begin 2007-06
+ 2 *end 2007-06
+ 3 *tropmi caves-1623/2007-06/2007-06
+ 3 *import caves-1623/2007-07/2007-07
+ 2 *begin 2007-07
+ 2 *end 2007-07
+ 3 *tropmi caves-1623/2007-07/2007-07
+ 3 *import caves-1623/2007-12/2007-12
+ 2 *begin 2007-12
+ 2 *end 2007-12
+ 3 *tropmi caves-1623/2007-12/2007-12
+ 3 *import caves-1623/2007-70/2007-70
+ 2 *begin 2007-70
+ 2 *end 2007-70
+ 3 *tropmi caves-1623/2007-70/2007-70
+ 3 *import caves-1623/2007-72/2007-72
+ 2 *begin 2007-72
+ 2 *end 2007-72
+ 3 *tropmi caves-1623/2007-72/2007-72
+ 3 *import caves-1623/2009-01/2009-01
+ 2 *begin 2009-01
+ 2 *end 2009-01
+ 3 *tropmi caves-1623/2009-01/2009-01
+ 3 *import caves-1623/2009-02/2009-02
+ 2 *begin 2009-02
+ 2 *end 2009-02
+ 3 *tropmi caves-1623/2009-02/2009-02
+ 3 *import caves-1623/2009-03/2009-03
+ 2 *begin 2009-03
+ 2 *end 2009-03
+ 3 *tropmi caves-1623/2009-03/2009-03
+ 3 *import caves-1623/2010-06/2010-06
+ 2 *begin 2010-06
+ 2 *end 2010-06
+ 3 *tropmi caves-1623/2010-06/2010-06
+ 3 *import caves-1623/2010-07/2010-07
+ 2 *begin 2010-07
+ 2 *end 2010-07
+ 3 *tropmi caves-1623/2010-07/2010-07
+ 3 *import caves-1623/2011-01/2011-01
+ 2 *begin 2011-01
+ 4 *import caves-1623/2011-01/bullet1
+ 3 *begin bullet1
+ 3 *end bullet1
+ 4 *tropmi caves-1623/2011-01/bullet1
+ 4 *import caves-1623/2011-01/bullet2
+ 3 *begin bullet2
+ 3 *end bullet2
+ 4 *tropmi caves-1623/2011-01/bullet2
+ 4 *import caves-1623/2011-01/bullet3
+ 3 *begin bullet3
+ 3 *end bullet3
+ 4 *tropmi caves-1623/2011-01/bullet3
+ 2 *end 2011-01
+ 3 *tropmi caves-1623/2011-01/2011-01
+ 3 *import caves-1623/2012-hw-01/2012-hw-01
+ 2 *begin 2012-hw-01
+ 2 *end 2012-hw-01
+ 3 *tropmi caves-1623/2012-hw-01/2012-hw-01
+ 3 *import caves-1623/2012-ns-01/2012-ns-01
+ 2 *begin 2012-ns-01
+ 4 *import caves-1623/2012-ns-01/AntsInYourPants
+ 3 *begin AntsInYourPants
+ 3 *end AntsInYourPants
+ 4 *tropmi caves-1623/2012-ns-01/AntsInYourPants
+ 2 *end 2012-ns-01
+ 3 *tropmi caves-1623/2012-ns-01/2012-ns-01
+ 3 *import caves-1623/2012-ns-02/2012-ns-02
+ 2 *begin 2012-ns-02
+ 2 *end 2012-ns-02
+ 3 *tropmi caves-1623/2012-ns-02/2012-ns-02
+ 3 *import caves-1623/2012-ns-03/2012-ns-03
+ 2 *begin 2012-ns-03
+ 2 *end 2012-ns-03
+ 3 *tropmi caves-1623/2012-ns-03/2012-ns-03
+ 3 *import caves-1623/2010-03/2010-03
+ 2 *begin 2010-03
+ 2 *end 2010-03
+ 3 *tropmi caves-1623/2010-03/2010-03
+ 3 *import caves-1623/2010-04/2010-04
+ 2 *begin 2010-04
+ 2 *end 2010-04
+ 3 *tropmi caves-1623/2010-04/2010-04
+ 3 *import caves-1623/2012-ns-05/2012-ns-05
+ 2 *begin 2012-ns-05
+ 2 *end 2012-ns-05
+ 3 *tropmi caves-1623/2012-ns-05/2012-ns-05
+ 3 *import caves-1623/2012-ns-06/2012-ns-06
+ 2 *begin 2012-ns-06
+ 2 *end 2012-ns-06
+ 3 *tropmi caves-1623/2012-ns-06/2012-ns-06
+ 3 *import caves-1623/2012-ns-07/2012-ns-07
+ 2 *begin 2012-ns-07
+ 2 *end 2012-ns-07
+ 3 *tropmi caves-1623/2012-ns-07/2012-ns-07
+ 3 *import caves-1623/2012-ns-08/2012-ns-08
+ 2 *begin 2012-ns-08
+ 2 *end 2012-ns-08
+ 3 *tropmi caves-1623/2012-ns-08/2012-ns-08
+ 3 *import caves-1623/2012-ns-09/2012-ns-09
+ 2 *begin 2012-ns-09
+ 2 *end 2012-ns-09
+ 3 *tropmi caves-1623/2012-ns-09/2012-ns-09
+ 3 *import caves-1623/2012-ns-10/2012-ns-10
+ 2 *begin 2012-ns-10
+ 2 *end 2012-ns-10
+ 3 *tropmi caves-1623/2012-ns-10/2012-ns-10
+ 3 *import caves-1623/2012-ns-12/2012-ns-12
+ 2 *begin 2012-ns-12
+ 2 *end 2012-ns-12
+ 3 *tropmi caves-1623/2012-ns-12/2012-ns-12
+ 3 *import caves-1623/2012-ns-13/2012-ns-13
+ 2 *begin 2012-ns-13
+ 2 *end 2012-ns-13
+ 3 *tropmi caves-1623/2012-ns-13/2012-ns-13
+ 3 *import caves-1623/2012-ns-14/2012-ns-14
+ 2 *begin 2012-ns-14
+ 2 *end 2012-ns-14
+ 3 *tropmi caves-1623/2012-ns-14/2012-ns-14
+ 3 *import caves-1623/2012-ns-15/2012-ns-15
+ 2 *begin 2012-ns-15
+ 2 *end 2012-ns-15
+ 3 *tropmi caves-1623/2012-ns-15/2012-ns-15
+ 3 *import caves-1623/2012-70/2012-70
+ 2 *begin 2012-70
+ 3 *begin pt2
+ 3 *end pt2
+ 3 *begin pt3
+ 3 *end pt3
+ 3 *begin pt4
+ 3 *end pt4
+ 2 *end 2012-70
+ 3 *tropmi caves-1623/2012-70/2012-70
+ 3 *import caves-1623/2012-js-1/2012-js-1
+ 2 *begin 2012-js-1
+ 2 *end 2012-js-1
+ 3 *tropmi caves-1623/2012-js-1/2012-js-1
+ 3 *import caves-1623/2012-dd-05/2012-dd-05
+ 2 *begin 2012-dd-05
+ 2 *end 2012-dd-05
+ 3 *tropmi caves-1623/2012-dd-05/2012-dd-05
+ 3 *import caves-1623/2012-dd-08/2012-dd-08
+ 2 *begin 2012-dd-08
+ 2 *end 2012-dd-08
+ 3 *tropmi caves-1623/2012-dd-08/2012-dd-08
+ 3 *import caves-1623/2014-sd-01/2014-sd-01
+ 2 *begin 2014-sd-01
+ 2 *end 2014-sd-01
+ 3 *tropmi caves-1623/2014-sd-01/2014-sd-01
+ 3 *import caves-1623/2014-BL888/2014-BL888
+ 2 *begin 2014-BL888
+ 2 *end 2014-BL888
+ 3 *tropmi caves-1623/2014-BL888/2014-BL888
+ 3 *import caves-1623/2015-mf-06/2015-mf-06
+ 2 *begin 2015-mf-06
+ 4 *import caves-1623/2015-mf-06/purplelupine
+ 3 *begin purplelupine
+ 3 *end purplelupine
+ 4 *tropmi caves-1623/2015-mf-06/purplelupine
+ 4 *import caves-1623/2015-mf-06/purplelupine2
+ 3 *begin purplelupine2
+ 3 *end purplelupine2
+ 4 *tropmi caves-1623/2015-mf-06/purplelupine2
+ 2 *end 2015-mf-06
+ 3 *tropmi caves-1623/2015-mf-06/2015-mf-06
+ 3 *import caves-1623/2016-jb-01/2016-jb-01
+ 2 *begin 2016-jb-01
+ 4 *import caves-1623/2016-jb-01/solidrock
+ 3 *begin solidrock
+ 3 *end solidrock
+ 4 *tropmi caves-1623/2016-jb-01/solidrock
+ 4 *import caves-1623/2016-jb-01/hopeless
+ 3 *begin hopeless
+ 3 *end hopeless
+ 4 *tropmi caves-1623/2016-jb-01/hopeless
+ 4 *import caves-1623/2016-jb-01/dirtysnow
+ 3 *begin dirtysnow
+ 4 *begin
+ 4 *end
+ 3 *end dirtysnow
+ 4 *tropmi caves-1623/2016-jb-01/dirtysnow
+ 4 *import caves-1623/2016-jb-01/solidrocks
+ 3 *begin solidrocks
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end solidrocks
+ 4 *tropmi caves-1623/2016-jb-01/solidrocks
+ 4 *import caves-1623/2016-jb-01/nervousbreakdown
+ 3 *begin nervousbreakdown
+ 3 *end nervousbreakdown
+ 4 *tropmi caves-1623/2016-jb-01/nervousbreakdown
+ 2 *end 2016-jb-01
+ 3 *tropmi caves-1623/2016-jb-01/2016-jb-01
+ 3 *import caves-1623/2017-pw-01/2017-pw-01
+ 2 *begin 2017-pw-01
+ 4 *import caves-1623/2017-pw-01/entrance
+ 3 *begin entrance
+ 3 *end entrance
+ 4 *tropmi caves-1623/2017-pw-01/entrance
+ 4 *import caves-1623/2017-pw-01/gardeningshoots
+ 3 *begin gardeningshoots
+ 4 *begin
+ 4 *end
+ 3 *end gardeningshoots
+ 4 *tropmi caves-1623/2017-pw-01/gardeningshoots
+ 4 *import caves-1623/2017-pw-01/thirdentrance
+ 3 *begin thirdentrance
+ 3 *end thirdentrance
+ 4 *tropmi caves-1623/2017-pw-01/thirdentrance
+ 4 *import caves-1623/2017-pw-01/badforecastthree
+ 3 *begin badforecastthree
+ 3 *end badforecastthree
+ 4 *tropmi caves-1623/2017-pw-01/badforecastthree
+ 2 *end 2017-pw-01
+ 3 *tropmi caves-1623/2017-pw-01/2017-pw-01
+ 3 *import caves-1623/110/110
+ 2 *begin 110
+ 4 *import caves-1623/110/notakittensheckschance
+ 3 *begin notakittensheckschance
+ 3 *end notakittensheckschance
+ 4 *tropmi caves-1623/110/notakittensheckschance
+ 2 *end 110
+ 3 *tropmi caves-1623/110/110
+ 3 *import caves-1623/2017-cucc-23/2017-cucc-23
+ 2 *begin 2017_cucc_23
+ 4 *import caves-1623/2017-cucc-23/keinwassermelone
+ 3 *begin keinwassermelone
+ 3 *end keinwassermelone
+ 4 *tropmi caves-1623/2017-cucc-23/keinwassermelone
+ 2 *end 2017_cucc_23
+ 3 *tropmi caves-1623/2017-cucc-23/2017-cucc-23
+ 3 *import caves-1623/2017-cucc-24/2017-cucc-24
+ 2 *begin 2017_cucc_24
+ 4 *import caves-1623/2017-cucc-24/dentrance
+ 3 *begin dentrance
+ 3 *end dentrance
+ 4 *tropmi caves-1623/2017-cucc-24/dentrance
+ 4 *import caves-1623/2017-cucc-24/dentb
+ 3 *begin dentb
+ 3 *end dentb
+ 4 *tropmi caves-1623/2017-cucc-24/dentb
+ 4 *import caves-1623/2017-cucc-24/couldashouldawoulda
+ 3 *begin couldashouldawoulda
+ 3 *end couldashouldawoulda
+ 4 *tropmi caves-1623/2017-cucc-24/couldashouldawoulda
+ 4 *import caves-1623/2017-cucc-24/gsh4
+ 3 *begin gsh4
+ 3 *end gsh4
+ 4 *tropmi caves-1623/2017-cucc-24/gsh4
+ 4 *import caves-1623/2017-cucc-24/riftpiece
+ 3 *begin riftpiece
+ 3 *end riftpiece
+ 4 *tropmi caves-1623/2017-cucc-24/riftpiece
+ 4 *import caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+ 3 *begin couldashouldawoulda_to_bathdodgersbypass
+ 3 *end couldashouldawoulda_to_bathdodgersbypass
+ 4 *tropmi caves-1623/2017-cucc-24/couldashouldawoulda_to_bathdodgersbypass
+ 2 *end 2017_cucc_24
+ 3 *tropmi caves-1623/2017-cucc-24/2017-cucc-24
+ 3 *import caves-1623/2017-cucc-28/2017-cucc-28
+ 2 *begin 2017_cucc_28
+ 4 *import caves-1623/2017-cucc-28/blower
+ 3 *begin blower
+ 3 *end blower
+ 4 *tropmi caves-1623/2017-cucc-28/blower
+ 4 *import caves-1623/2017-cucc-28/entranceseries
+ 3 *begin entranceseries
+ 3 *end entranceseries
+ 4 *tropmi caves-1623/2017-cucc-28/entranceseries
+ 4 *import caves-1623/2017-cucc-28/windytube
+ 3 *begin windytube
+ 3 *end windytube
+ 4 *tropmi caves-1623/2017-cucc-28/windytube
+ 4 *import caves-1623/2017-cucc-28/12monkeys
+ 3 *begin 12monkeys
+ 3 *end 12monkeys
+ 4 *tropmi caves-1623/2017-cucc-28/12monkeys
+ 4 *import caves-1623/2017-cucc-28/fishface1-part1
+ 3 *begin fishface1-part1
+ 3 *end fishface1-part1
+ 4 *tropmi caves-1623/2017-cucc-28/fishface1-part1
+ 4 *import caves-1623/2017-cucc-28/fishface1-part2
+ 3 *begin fishface1-part2
+ 3 *end fishface1-part2
+ 4 *tropmi caves-1623/2017-cucc-28/fishface1-part2
+ 4 *import caves-1623/2017-cucc-28/icytube
+ 3 *begin icytube
+ 3 *end icytube
+ 4 *tropmi caves-1623/2017-cucc-28/icytube
+ 4 *import caves-1623/2017-cucc-28/canyon
+ 3 *begin canyon
+ 3 *end canyon
+ 4 *tropmi caves-1623/2017-cucc-28/canyon
+ 4 *import caves-1623/2017-cucc-28/blitzen_to_liquidluck
+ 3 *begin blitzen_to_LiquidLuck
+ 3 *end blitzen_to_LiquidLuck
+ 4 *tropmi caves-1623/2017-cucc-28/blitzen_to_liquidluck
+ 4 *import caves-1623/2017-cucc-28/freeatticflys
+ 3 *begin FreeAttic_Flys
+ 3 *end FreeAttic_Flys
+ 4 *tropmi caves-1623/2017-cucc-28/freeatticflys
+ 4 *import caves-1623/2017-cucc-28/ulysses_to_toto
+ 3 *begin Ulysses_to_Toto
+ 3 *end Ulysses_to_Toto
+ 4 *tropmi caves-1623/2017-cucc-28/ulysses_to_toto
+ 4 *import caves-1623/2017-cucc-28/toto_to_crystalcrumble
+ 3 *begin toto_to_crystalcrumble
+ 3 *end toto_to_crystalcrumble
+ 4 *tropmi caves-1623/2017-cucc-28/toto_to_crystalcrumble
+ 4 *import caves-1623/2017-cucc-28/ulysses_to_colericchamber
+ 3 *begin ulysses_to_colericchamber
+ 3 *end ulysses_to_colericchamber
+ 4 *tropmi caves-1623/2017-cucc-28/ulysses_to_colericchamber
+ 4 *import caves-1623/2017-cucc-28/rubblerumble
+ 3 *begin rubblerumble
+ 3 *end rubblerumble
+ 4 *tropmi caves-1623/2017-cucc-28/rubblerumble
+ 4 *import caves-1623/2017-cucc-28/rubblerumble3
+ 3 *begin rubblerumble3
+ 3 *end rubblerumble3
+ 4 *tropmi caves-1623/2017-cucc-28/rubblerumble3
+ 4 *import caves-1623/2017-cucc-28/rubblerumble2
+ 3 *begin rubblerumble2
+ 3 *end rubblerumble2
+ 4 *tropmi caves-1623/2017-cucc-28/rubblerumble2
+ 4 *import caves-1623/2017-cucc-28/kublakhan
+ 3 *begin kublakhan
+ 3 *end kublakhan
+ 4 *tropmi caves-1623/2017-cucc-28/kublakhan
+ 4 *import caves-1623/2017-cucc-28/miraclemaze1
+ 3 *begin miraclemaze1
+ 3 *end miraclemaze1
+ 4 *tropmi caves-1623/2017-cucc-28/miraclemaze1
+ 4 *import caves-1623/2017-cucc-28/coconutchamber1
+ 3 *begin coconutchamber1
+ 3 *end coconutchamber1
+ 4 *tropmi caves-1623/2017-cucc-28/coconutchamber1
+ 4 *import caves-1623/2017-cucc-28/bigbastard
+ 3 *begin bigbastard
+ 3 *end bigbastard
+ 4 *tropmi caves-1623/2017-cucc-28/bigbastard
+ 4 *import caves-1623/2017-cucc-28/miraclemaze2
+ 3 *begin miraclemaze2
+ 3 *end miraclemaze2
+ 4 *tropmi caves-1623/2017-cucc-28/miraclemaze2
+ 4 *import caves-1623/2017-cucc-28/coconutchamber2
+ 3 *begin coconutchamber2
+ 3 *end coconutchamber2
+ 4 *tropmi caves-1623/2017-cucc-28/coconutchamber2
+ 4 *import caves-1623/2017-cucc-28/coconutchamber3
+ 3 *begin coconutchamber3
+ 3 *end coconutchamber3
+ 4 *tropmi caves-1623/2017-cucc-28/coconutchamber3
+ 4 *import caves-1623/2017-cucc-28/gardeningschl
+ 3 *begin gardeningschool
+ 3 *end gardeningschool
+ 4 *tropmi caves-1623/2017-cucc-28/gardeningschl
+ 4 *import caves-1623/2017-cucc-28/pushderig
+ 3 *begin pushderig
+ 3 *end pushderig
+ 4 *tropmi caves-1623/2017-cucc-28/pushderig
+ 2 *end 2017_cucc_28
+ 3 *tropmi caves-1623/2017-cucc-28/2017-cucc-28
+ 3 *import caves-1623/2014-ms-14/driveneast
+ 2 *begin driveneast
+ 2 *end driveneast
+ 3 *tropmi caves-1623/2014-ms-14/driveneast
+ 3 *import caves-1623/2018-aa-01/2018-aa-01
+ 2 *begin 2018-aa-01
+ 2 *end 2018-aa-01
+ 3 *tropmi caves-1623/2018-aa-01/2018-aa-01
+ 3 *import caves-1623/2018-pf-01/2018-pf-01
+ 2 *begin 2018-pf-01
+ 2 *end 2018-pf-01
+ 3 *tropmi caves-1623/2018-pf-01/2018-pf-01
+ 3 *import caves-1623/2018-pf-02/2018-pf-02
+ 2 *begin 2018-pf-02
+ 2 *end 2018-pf-02
+ 3 *tropmi caves-1623/2018-pf-02/2018-pf-02
+ 3 *import caves-1623/82/82
+ 2 *begin 82
+ 2 *end 82
+ 2 *begin
+ 2 *end
+ 4 *import caves-1623/82/82to85
+ 2 *begin
+ 2 *end
+ 2 *begin 82to85
+ 3 *begin
+ 3 *end
+ 2 *end 82to85
+ 4 *tropmi caves-1623/82/82to85
+ 4 *import caves-1623/82/82_2007
+ 2 *begin 82_2007
+ 2 *end 82_2007
+ 4 *tropmi caves-1623/82/82_2007
+ 4 *import caves-1623/82/82_2012
+ 2 *begin 82_2012
+ 2 *end 82_2012
+ 4 *tropmi caves-1623/82/82_2012
+ 4 *import caves-1623/82/blind
+ 2 *begin blind
+ 2 *end blind
+ 4 *tropmi caves-1623/82/blind
+ 3 *tropmi caves-1623/82/82
+ 3 *import caves-1623/2007-neu/2007-neu
+ 2 *begin 2007-neu
+ 2 *end 2007-neu
+ 3 *tropmi caves-1623/2007-neu/2007-neu
+ 3 *import caves-1623/gassischacht/gassischacht
+ 2 *begin gassischacht
+ 2 *end gassischacht
+ 3 *tropmi caves-1623/gassischacht/gassischacht
+ 3 *import caves-1623/BS17/BS17
+ 2 *begin organ
+ 4 *import caves-1623/BS17/organfake
+ 3 *begin fake
+ 3 *end fake
+ 4 *tropmi caves-1623/BS17/organfake
+ 4 *import caves-1623/BS17/organ_entrance
+ 3 *begin entrance
+ 3 *end entrance
+ 4 *tropmi caves-1623/BS17/organ_entrance
+ 2 *end organ
+ 3 *tropmi caves-1623/BS17/BS17
+ 3 *import caves-1623/haldenloch/haldenloch
+ 2 *begin haldenloch
+ 3 *begin eingang
+ 3 *end eingang
+ 3 *begin tunnel
+ 3 *end tunnel
+ 2 *end haldenloch
+ 3 *tropmi caves-1623/haldenloch/haldenloch
+ 3 *import caves-1623/gruenstein/gruenstein
+ 2 *begin gruenstein
+ 2 *end gruenstein
+ 3 *tropmi caves-1623/gruenstein/gruenstein
+ 2 *tropmi caves-1623/caves
+ 2 *import caves-1623/caves-smk
+ 3 *import caves-1623/links-smk-south
+ 4 *import caves-1623/links41-142
+ 4 *tropmi caves-1623/links41-142
+ 3 *tropmi caves-1623/links-smk-south
+ 3 *import caves-1623/links-smk-north
+ 4 *import caves-1623/links204-258
+ 4 *tropmi caves-1623/links204-258
+ 4 *import caves-1623/links161-204
+ 4 *tropmi caves-1623/links161-204
+ 3 *tropmi caves-1623/links-smk-north
+ 3 *import caves-1623/caves-smk-south
+ 4 *import caves-1623/links-smk-south
+ 5 *import caves-1623/links41-142
+ 5 *tropmi caves-1623/links41-142
+ 4 *tropmi caves-1623/links-smk-south
+ 4 *import caves-1623/32/32
+ 2 *begin 32
+ 5 *import caves-1623/32/main
+ 3 *begin main
+ 3 *end main
+ 5 *tropmi caves-1623/32/main
+ 5 *import caves-1623/32/links
+ 3 *begin links
+ 3 *end links
+ 5 *tropmi caves-1623/32/links
+ 5 *import caves-1623/32/verteilerhalle
+ 3 *begin verteilerhalle
+ 3 *end verteilerhalle
+ 5 *tropmi caves-1623/32/verteilerhalle
+ 5 *import caves-1623/32/forever
+ 3 *begin forever
+ 3 *end forever
+ 5 *tropmi caves-1623/32/forever
+ 2 *end 32
+ 4 *tropmi caves-1623/32/32
+ 4 *import caves-1623/40/40
+ 2 *begin 40
+ 5 *import caves-1623/40/40alt
+ 6 *import caves-1623/40/old/EisSVH
+ 3 *begin EisSVH
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end EisSVH
+ 6 *tropmi caves-1623/40/old/EisSVH
+ 6 *import caves-1623/40/old/spinne
+ 3 *begin spinne
+ 3 *end spinne
+ 6 *tropmi caves-1623/40/old/spinne
+ 6 *import caves-1623/40/old/eismain
+ 3 *begin eishohle
+ 3 *end eishohle
+ 6 *tropmi caves-1623/40/old/eismain
+ 5 *tropmi caves-1623/40/40alt
+ 5 *import caves-1623/40/40arge
+ 6 *import caves-1623/40/arge/elefantengang
+ 3 *begin elefantengang
+ 3 *end elefantengang
+ 6 *tropmi caves-1623/40/arge/elefantengang
+ 6 *import caves-1623/40/arge/gruenerEingang
+ 3 *begin gruenereingang
+ 4 *begin
+ 4 *end
+ 3 *end gruenereingang
+ 6 *tropmi caves-1623/40/arge/gruenerEingang
+ 6 *import caves-1623/40/arge/expressfinish
+ 3 *begin expressfinish
+ 3 *end expressfinish
+ 6 *tropmi caves-1623/40/arge/expressfinish
+ 6 *import caves-1623/40/arge/koenigsschacht
+ 3 *begin koenigsschacht
+ 3 *end koenigsschacht
+ 6 *tropmi caves-1623/40/arge/koenigsschacht
+ 6 *import caves-1623/40/arge/schotterland
+ 3 *begin schotterland
+ 4 *begin bits
+ 4 *end bits
+ 3 *end schotterland
+ 6 *tropmi caves-1623/40/arge/schotterland
+ 6 *import caves-1623/40/arge/niete
+ 3 *begin niete
+ 3 *end niete
+ 6 *tropmi caves-1623/40/arge/niete
+ 6 *import caves-1623/40/arge/tiefergang
+ 3 *begin tiefergang
+ 3 *end tiefergang
+ 6 *tropmi caves-1623/40/arge/tiefergang
+ 6 *import caves-1623/40/arge/hanspfandlhalle
+ 3 *begin HansPfandlHalle
+ 3 *end HansPfandlHalle
+ 6 *tropmi caves-1623/40/arge/hanspfandlhalle
+ 6 *import caves-1623/40/arge/wahnsinnsschaechte
+ 3 *begin wahnsinnsschaechte
+ 3 *end wahnsinnsschaechte
+ 6 *tropmi caves-1623/40/arge/wahnsinnsschaechte
+ 6 *import caves-1623/40/arge/wahnsinnscanyon
+ 3 *begin wahnsinnscanyon
+ 3 *end wahnsinnscanyon
+ 6 *tropmi caves-1623/40/arge/wahnsinnscanyon
+ 6 *import caves-1623/40/arge/thalhammerhalle
+ 3 *begin thalhammerhalle
+ 3 *end thalhammerhalle
+ 6 *tropmi caves-1623/40/arge/thalhammerhalle
+ 6 *import caves-1623/40/arge/flusstunnel
+ 3 *begin flusstunnel
+ 3 *end flusstunnel
+ 6 *tropmi caves-1623/40/arge/flusstunnel
+ 6 *import caves-1623/40/arge/gluehwuermchen
+ 3 *begin gluehwuermchen
+ 3 *end gluehwuermchen
+ 6 *tropmi caves-1623/40/arge/gluehwuermchen
+ 6 *import caves-1623/40/arge/wanderer
+ 3 *begin wanderer
+ 3 *end wanderer
+ 6 *tropmi caves-1623/40/arge/wanderer
+ 6 *import caves-1623/40/arge/silbercanyon
+ 3 *begin silbercanyon
+ 3 *end silbercanyon
+ 6 *tropmi caves-1623/40/arge/silbercanyon
+ 6 *import caves-1623/40/arge/franzosenbiwak
+ 3 *begin franzosenbiwak
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end franzosenbiwak
+ 6 *tropmi caves-1623/40/arge/franzosenbiwak
+ 5 *tropmi caves-1623/40/40arge
+ 5 *import caves-1623/40/40cucc
+ 6 *import caves-1623/40/cucc/plastic
+ 3 *begin Plastic
+ 3 *end Plastic
+ 3 *begin Plastic2
+ 3 *end Plastic2
+ 6 *tropmi caves-1623/40/cucc/plastic
+ 6 *import caves-1623/40/cucc/pov/pov
+ 7 *import caves-1623/40/cucc/pov/deviant
+ 3 *begin deviant
+ 3 *end deviant
+ 7 *tropmi caves-1623/40/cucc/pov/deviant
+ 7 *import caves-1623/40/cucc/pov/uuaway
+ 3 *begin uuaway
+ 3 *end uuaway
+ 7 *tropmi caves-1623/40/cucc/pov/uuaway
+ 7 *import caves-1623/40/cucc/pov/dangle
+ 3 *begin dangle
+ 3 *end dangle
+ 7 *tropmi caves-1623/40/cucc/pov/dangle
+ 7 *import caves-1623/40/cucc/pov/eiscream
+ 3 *begin eiscream
+ 3 *end eiscream
+ 3 *begin eiscream2
+ 3 *end eiscream2
+ 3 *begin eiscream3
+ 3 *end eiscream3
+ 7 *tropmi caves-1623/40/cucc/pov/eiscream
+ 6 *tropmi caves-1623/40/cucc/pov/pov
+ 6 *import caves-1623/40/cucc/oldway
+ 3 *begin oldway
+ 3 *end oldway
+ 6 *tropmi caves-1623/40/cucc/oldway
+ 6 *import caves-1623/40/cucc/mission
+ 3 *begin mission
+ 3 *end mission
+ 3 *begin missionconnection
+ 3 *end missionconnection
+ 3 *begin mission2
+ 3 *end mission2
+ 3 *begin mission3
+ 3 *end mission3
+ 3 *begin mission4
+ 3 *end mission4
+ 3 *begin modern
+ 4 *begin bodge
+ 4 *end bodge
+ 3 *end modern
+ 6 *tropmi caves-1623/40/cucc/mission
+ 6 *import caves-1623/40/cucc/mission5
+ 3 *begin mission5
+ 3 *end mission5
+ 3 *begin mission5tie
+ 3 *end mission5tie
+ 3 *begin mission6
+ 3 *end mission6
+ 3 *begin mission7
+ 3 *end mission7
+ 3 *begin mission8
+ 3 *end mission8
+ 3 *begin mission9
+ 3 *end mission9
+ 3 *begin missg1
+ 3 *end missg1
+ 3 *begin mission10
+ 3 *end mission10
+ 6 *tropmi caves-1623/40/cucc/mission5
+ 6 *import caves-1623/40/cucc/nmanip
+ 3 *begin nmanip
+ 3 *end nmanip
+ 6 *tropmi caves-1623/40/cucc/nmanip
+ 6 *import caves-1623/40/cucc/40h
+ 3 *begin 40h
+ 3 *end 40h
+ 6 *tropmi caves-1623/40/cucc/40h
+ 6 *import caves-1623/40/cucc/oldnew
+ 3 *begin oldnew
+ 4 *begin bodge
+ 4 *end bodge
+ 3 *end oldnew
+ 6 *tropmi caves-1623/40/cucc/oldnew
+ 5 *tropmi caves-1623/40/40cucc
+ 2 *end 40
+ 4 *tropmi caves-1623/40/40
+ 4 *import caves-1623/41/41
+ 2 *begin 41
+ 5 *import caves-1623/41/seiteng
+ 3 *begin seiteng
+ 3 *end seiteng
+ 5 *tropmi caves-1623/41/seiteng
+ 5 *import caves-1623/41/bonsai
+ 3 *begin bonsai
+ 3 *end bonsai
+ 5 *tropmi caves-1623/41/bonsai
+ 5 *import caves-1623/41/verhall
+ 3 *begin verhall
+ 3 *end verhall
+ 5 *tropmi caves-1623/41/verhall
+ 5 *import caves-1623/41/blakwite
+ 3 *begin blakwite
+ 3 *end blakwite
+ 5 *tropmi caves-1623/41/blakwite
+ 5 *import caves-1623/41/stream
+ 3 *begin stream
+ 3 *end stream
+ 5 *tropmi caves-1623/41/stream
+ 5 *import caves-1623/41/bigchamber
+ 3 *begin bigchamber
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end bigchamber
+ 5 *tropmi caves-1623/41/bigchamber
+ 5 *import caves-1623/41/abstieg
+ 3 *begin abstieg
+ 3 *end abstieg
+ 5 *tropmi caves-1623/41/abstieg
+ 5 *import caves-1623/41/runway
+ 3 *begin runway
+ 3 *end runway
+ 5 *tropmi caves-1623/41/runway
+ 5 *import caves-1623/41/treppe
+ 3 *begin treppe
+ 3 *end treppe
+ 5 *tropmi caves-1623/41/treppe
+ 5 *import caves-1623/41/platte
+ 3 *begin platte
+ 3 *end platte
+ 5 *tropmi caves-1623/41/platte
+ 5 *import caves-1623/41/e41
+ 3 *begin e41
+ 6 *import caves-1623/41/germanrt
+ 4 *begin germanrt
+ 4 *end germanrt
+ 6 *tropmi caves-1623/41/germanrt
+ 4 *begin bloop
+ 4 *end bloop
+ 3 *end e41
+ 5 *tropmi caves-1623/41/e41
+ 5 *import caves-1623/41/steinsch
+ 3 *begin steinsch
+ 3 *end steinsch
+ 5 *tropmi caves-1623/41/steinsch
+ 5 *import caves-1623/41/din
+ 3 *begin din
+ 3 *end din
+ 5 *tropmi caves-1623/41/din
+ 5 *import caves-1623/41/extblatt
+ 3 *begin extblatt
+ 3 *end extblatt
+ 5 *tropmi caves-1623/41/extblatt
+ 5 *import caves-1623/41/extradin
+ 3 *begin extradin
+ 3 *end extradin
+ 5 *tropmi caves-1623/41/extradin
+ 5 *import caves-1623/41/edelmean
+ 3 *begin edelmean
+ 3 *end edelmean
+ 5 *tropmi caves-1623/41/edelmean
+ 5 *import caves-1623/41/rondos
+ 3 *begin rondos
+ 3 *end rondos
+ 5 *tropmi caves-1623/41/rondos
+ 5 *import caves-1623/41/german
+ 3 *begin german
+ 3 *end german
+ 5 *tropmi caves-1623/41/german
+ 5 *import caves-1623/41/mond
+ 3 *begin mond
+ 3 *end mond
+ 5 *tropmi caves-1623/41/mond
+ 5 *import caves-1623/41/oktar
+ 3 *begin oktar
+ 3 *end oktar
+ 5 *tropmi caves-1623/41/oktar
+ 5 *import caves-1623/41/megalo
+ 3 *begin megalo
+ 3 *end megalo
+ 5 *tropmi caves-1623/41/megalo
+ 5 *import caves-1623/41/wdr
+ 3 *begin wdr
+ 3 *end wdr
+ 5 *tropmi caves-1623/41/wdr
+ 5 *import caves-1623/41/lampntot
+ 3 *begin lampntot
+ 3 *end lampntot
+ 5 *tropmi caves-1623/41/lampntot
+ 5 *import caves-1623/41/manhattn
+ 3 *begin manhattn
+ 3 *end manhattn
+ 5 *tropmi caves-1623/41/manhattn
+ 5 *import caves-1623/41/entlueft
+ 3 *begin entlueft
+ 3 *end entlueft
+ 5 *tropmi caves-1623/41/entlueft
+ 5 *import caves-1623/41/glueck
+ 3 *begin glueck
+ 3 *end glueck
+ 5 *tropmi caves-1623/41/glueck
+ 5 *import caves-1623/41/bus
+ 3 *begin bus
+ 3 *end bus
+ 5 *tropmi caves-1623/41/bus
+ 5 *import caves-1623/41/morphan
+ 3 *begin morphan
+ 3 *end morphan
+ 5 *tropmi caves-1623/41/morphan
+ 5 *import caves-1623/41/basic
+ 3 *begin basic
+ 3 *end basic
+ 5 *tropmi caves-1623/41/basic
+ 5 *import caves-1623/41/tincan
+ 3 *begin tincan
+ 3 *end tincan
+ 5 *tropmi caves-1623/41/tincan
+ 5 *import caves-1623/41/jade
+ 3 *begin jade
+ 3 *end jade
+ 5 *tropmi caves-1623/41/jade
+ 5 *import caves-1623/41/doplbodn
+ 3 *begin doplbodn
+ 3 *end doplbodn
+ 5 *tropmi caves-1623/41/doplbodn
+ 5 *import caves-1623/41/alice
+ 3 *begin alice
+ 4 *begin
+ 4 *end
+ 3 *end alice
+ 5 *tropmi caves-1623/41/alice
+ 5 *import caves-1623/41/wetnwild
+ 3 *begin wetnwild
+ 3 *end wetnwild
+ 5 *tropmi caves-1623/41/wetnwild
+ 5 *import caves-1623/41/diaet
+ 3 *begin diaet
+ 3 *end diaet
+ 5 *tropmi caves-1623/41/diaet
+ 5 *import caves-1623/41/roehre
+ 3 *begin roehre
+ 3 *end roehre
+ 5 *tropmi caves-1623/41/roehre
+ 5 *import caves-1623/41/rampe
+ 3 *begin rampe
+ 3 *end rampe
+ 5 *tropmi caves-1623/41/rampe
+ 2 *end 41
+ 4 *tropmi caves-1623/41/41
+ 4 *import caves-1623/78/78
+ 2 *begin 78
+ 5 *import caves-1623/78/haupt
+ 3 *begin haupt
+ 4 *begin
+ 4 *end
+ 3 *end haupt
+ 5 *tropmi caves-1623/78/haupt
+ 5 *import caves-1623/78/nasse
+ 3 *begin nasse
+ 3 *end nasse
+ 5 *tropmi caves-1623/78/nasse
+ 5 *import caves-1623/78/eisdom
+ 3 *begin eisdom
+ 3 *end eisdom
+ 5 *tropmi caves-1623/78/eisdom
+ 5 *import caves-1623/78/forsten
+ 3 *begin forsten
+ 3 *end forsten
+ 5 *tropmi caves-1623/78/forsten
+ 5 *import caves-1623/78/augsburg
+ 3 *begin augsburg
+ 3 *end augsburg
+ 5 *tropmi caves-1623/78/augsburg
+ 5 *import caves-1623/78/eisscha
+ 3 *begin eisscha
+ 3 *end eisscha
+ 5 *tropmi caves-1623/78/eisscha
+ 5 *import caves-1623/78/fossimea
+ 3 *begin fossimea
+ 3 *end fossimea
+ 5 *tropmi caves-1623/78/fossimea
+ 5 *import caves-1623/78/schwadom
+ 3 *begin schwadom
+ 3 *end schwadom
+ 5 *tropmi caves-1623/78/schwadom
+ 5 *import caves-1623/78/stgneu
+ 3 *begin stgneu
+ 3 *end stgneu
+ 5 *tropmi caves-1623/78/stgneu
+ 5 *import caves-1623/78/bayberg
+ 3 *begin bayberg
+ 3 *end bayberg
+ 5 *tropmi caves-1623/78/bayberg
+ 5 *import caves-1623/78/keller
+ 3 *begin keller
+ 3 *end keller
+ 5 *tropmi caves-1623/78/keller
+ 5 *import caves-1623/78/e2
+ 3 *begin e2
+ 3 *end e2
+ 5 *tropmi caves-1623/78/e2
+ 5 *import caves-1623/78/bartl
+ 3 *begin bartl
+ 3 *end bartl
+ 5 *tropmi caves-1623/78/bartl
+ 5 *import caves-1623/78/fetzig
+ 3 *begin fetzig
+ 3 *end fetzig
+ 5 *tropmi caves-1623/78/fetzig
+ 5 *import caves-1623/78/verloren
+ 3 *begin verloren
+ 3 *end verloren
+ 5 *tropmi caves-1623/78/verloren
+ 5 *import caves-1623/78/highway
+ 3 *begin highway
+ 3 *end highway
+ 5 *tropmi caves-1623/78/highway
+ 5 *import caves-1623/78/parallel
+ 3 *begin parallel
+ 3 *end parallel
+ 5 *tropmi caves-1623/78/parallel
+ 5 *import caves-1623/78/allkaese
+ 3 *begin allkaese
+ 3 *end allkaese
+ 5 *tropmi caves-1623/78/allkaese
+ 5 *import caves-1623/78/schnaps
+ 3 *begin schnaps
+ 4 *begin
+ 4 *end
+ 3 *end schnaps
+ 5 *tropmi caves-1623/78/schnaps
+ 5 *import caves-1623/78/standard
+ 3 *begin standard
+ 3 *end standard
+ 5 *tropmi caves-1623/78/standard
+ 5 *import caves-1623/78/schlepp
+ 3 *begin schlepp
+ 3 *end schlepp
+ 5 *tropmi caves-1623/78/schlepp
+ 5 *import caves-1623/78/igramul
+ 3 *begin igramul
+ 3 *end igramul
+ 5 *tropmi caves-1623/78/igramul
+ 5 *import caves-1623/78/spazier
+ 3 *begin spazier
+ 3 *end spazier
+ 5 *tropmi caves-1623/78/spazier
+ 5 *import caves-1623/78/galakt
+ 3 *begin galakt
+ 4 *begin
+ 4 *end
+ 3 *end galakt
+ 5 *tropmi caves-1623/78/galakt
+ 5 *import caves-1623/78/steinbl
+ 3 *begin steinbl
+ 3 *end steinbl
+ 5 *tropmi caves-1623/78/steinbl
+ 5 *import caves-1623/78/rausch
+ 3 *begin rausch
+ 3 *end rausch
+ 5 *tropmi caves-1623/78/rausch
+ 5 *import caves-1623/78/comeback
+ 3 *begin comeback
+ 3 *end comeback
+ 5 *tropmi caves-1623/78/comeback
+ 2 *end 78
+ 4 *tropmi caves-1623/78/78
+ 4 *import caves-1623/87/87
+ 2 *begin 87
+ 2 *end 87
+ 4 *tropmi caves-1623/87/87
+ 4 *import caves-1623/88/88
+ 2 *begin 88
+ 5 *import caves-1623/88/lerche1
+ 3 *begin lerche1
+ 3 *end lerche1
+ 5 *tropmi caves-1623/88/lerche1
+ 5 *import caves-1623/88/sophy
+ 3 *begin sophy
+ 3 *end sophy
+ 5 *tropmi caves-1623/88/sophy
+ 2 *end 88
+ 4 *tropmi caves-1623/88/88
+ 4 *import caves-1623/115/115
+ 2 *begin 115
+ 5 *import caves-1623/115/115eing
+ 3 *begin 115eing
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end 115eing
+ 5 *tropmi caves-1623/115/115eing
+ 5 *import caves-1623/115/nutzlos
+ 3 *begin nutzlos
+ 4 *begin
+ 4 *end
+ 3 *end nutzlos
+ 5 *tropmi caves-1623/115/nutzlos
+ 5 *import caves-1623/115/babylon
+ 3 *begin babylon
+ 4 *begin
+ 4 *end
+ 3 *end babylon
+ 5 *tropmi caves-1623/115/babylon
+ 5 *import caves-1623/115/115haupt
+ 3 *begin 115haupt
+ 4 *begin
+ 4 *end
+ 3 *end 115haupt
+ 5 *tropmi caves-1623/115/115haupt
+ 5 *import caves-1623/115/purgatory
+ 3 *begin purgatory
+ 3 *end purgatory
+ 5 *tropmi caves-1623/115/purgatory
+ 5 *import caves-1623/115/babywind
+ 3 *begin babywind
+ 4 *begin
+ 4 *end
+ 3 *end babywind
+ 5 *tropmi caves-1623/115/babywind
+ 5 *import caves-1623/115/nebukad
+ 3 *begin nebukad
+ 3 *end nebukad
+ 5 *tropmi caves-1623/115/nebukad
+ 5 *import caves-1623/115/dartford
+ 3 *begin dartford
+ 3 *end dartford
+ 5 *tropmi caves-1623/115/dartford
+ 5 *import caves-1623/115/koelndom
+ 3 *begin koelndom
+ 3 *end koelndom
+ 5 *tropmi caves-1623/115/koelndom
+ 5 *import caves-1623/115/confluence
+ 3 *begin confluence
+ 3 *end confluence
+ 5 *tropmi caves-1623/115/confluence
+ 5 *import caves-1623/115/cucc/purgatory
+ 3 *begin cuccpurgatory
+ 3 *end cuccpurgatory
+ 5 *tropmi caves-1623/115/cucc/purgatory
+ 5 *import caves-1623/115/115rest
+ 3 *begin 115rest
+ 6 *import caves-1623/115/cucc/stream
+ 7 *import caves-1623/115/cucc/12foot
+ 4 *begin 12foot
+ 4 *end 12foot
+ 7 *tropmi caves-1623/115/cucc/12foot
+ 7 *import caves-1623/115/cucc/confluence
+ 4 *begin confluence
+ 4 *end confluence
+ 7 *tropmi caves-1623/115/cucc/confluence
+ 7 *import caves-1623/115/cucc/commando
+ 4 *begin commando
+ 4 *end commando
+ 7 *tropmi caves-1623/115/cucc/commando
+ 7 *import caves-1623/115/cucc/orgasm
+ 4 *begin orgasm
+ 4 *end orgasm
+ 7 *tropmi caves-1623/115/cucc/orgasm
+ 6 *tropmi caves-1623/115/cucc/stream
+ 3 *end 115rest
+ 5 *tropmi caves-1623/115/115rest
+ 2 *end 115
+ 4 *tropmi caves-1623/115/115
+ 4 *import caves-1623/142/142
+ 2 *begin 142
+ 2 *end 142
+ 4 *tropmi caves-1623/142/142
+ 4 *import caves-1623/143/143
+ 2 *begin 143
+ 5 *import caves-1623/143/canyon
+ 3 *begin canyon
+ 4 *begin
+ 4 *end
+ 3 *end canyon
+ 5 *tropmi caves-1623/143/canyon
+ 5 *import caves-1623/143/brauner
+ 3 *begin brauner
+ 3 *end brauner
+ 5 *tropmi caves-1623/143/brauner
+ 5 *import caves-1623/143/flammen
+ 3 *begin flammen
+ 3 *end flammen
+ 5 *tropmi caves-1623/143/flammen
+ 5 *import caves-1623/143/haupt
+ 3 *begin haupt
+ 3 *end haupt
+ 5 *tropmi caves-1623/143/haupt
+ 5 *import caves-1623/143/iqcanyon
+ 3 *begin iqcanyon
+ 4 *begin
+ 4 *end
+ 3 *end iqcanyon
+ 5 *tropmi caves-1623/143/iqcanyon
+ 5 *import caves-1623/143/kuhwiese
+ 3 *begin kuhwiese
+ 4 *begin 22A
+ 4 *end 22A
+ 4 *begin 18A
+ 4 *end 18A
+ 4 *begin HKR
+ 4 *end HKR
+ 3 *end kuhwiese
+ 5 *tropmi caves-1623/143/kuhwiese
+ 5 *import caves-1623/143/rampe
+ 3 *begin rampe
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end rampe
+ 5 *tropmi caves-1623/143/rampe
+ 5 *import caves-1623/143/rutsche
+ 3 *begin rutsche
+ 3 *end rutsche
+ 5 *tropmi caves-1623/143/rutsche
+ 5 *import caves-1623/143/doppelrohr
+ 3 *begin doppelrohr
+ 4 *begin
+ 4 *end
+ 3 *end doppelrohr
+ 5 *tropmi caves-1623/143/doppelrohr
+ 5 *import caves-1623/143/sophy
+ 3 *begin sophy
+ 3 *end sophy
+ 5 *tropmi caves-1623/143/sophy
+ 5 *import caves-1623/143/hades
+ 3 *begin hades
+ 3 *end hades
+ 5 *tropmi caves-1623/143/hades
+ 5 *import caves-1623/143/troja
+ 3 *begin troja
+ 3 *end troja
+ 5 *tropmi caves-1623/143/troja
+ 5 *import caves-1623/143/hdp
+ 3 *begin hdp
+ 3 *end hdp
+ 5 *tropmi caves-1623/143/hdp
+ 5 *import caves-1623/143/soich
+ 3 *begin soich
+ 3 *end soich
+ 5 *tropmi caves-1623/143/soich
+ 2 *end 143
+ 4 *tropmi caves-1623/143/143
+ 4 *import caves-1623/144/144
+ 2 *begin 144
+ 5 *import caves-1623/144/144ein
+ 3 *begin 144ein
+ 4 *begin
+ 4 *end
+ 3 *end 144ein
+ 5 *tropmi caves-1623/144/144ein
+ 5 *import caves-1623/144/144horiz
+ 3 *begin 144horiz
+ 4 *begin
+ 4 *end
+ 3 *end 144horiz
+ 5 *tropmi caves-1623/144/144horiz
+ 5 *import caves-1623/144/144verb
+ 3 *begin 144verb
+ 4 *begin
+ 4 *end
+ 3 *end 144verb
+ 5 *tropmi caves-1623/144/144verb
+ 5 *import caves-1623/144/America
+ 3 *begin America
+ 4 *begin
+ 4 *end
+ 3 *end America
+ 5 *tropmi caves-1623/144/America
+ 5 *import caves-1623/144/cuccrest
+ 3 *begin cuccrest
+ 3 *end cuccrest
+ 5 *tropmi caves-1623/144/cuccrest
+ 5 *import caves-1623/144/ElfUhr
+ 3 *begin ElfUhr
+ 3 *end ElfUhr
+ 5 *tropmi caves-1623/144/ElfUhr
+ 5 *import caves-1623/144/gang
+ 3 *begin gang
+ 3 *end gang
+ 5 *tropmi caves-1623/144/gang
+ 5 *import caves-1623/144/Meander
+ 3 *begin Meander
+ 3 *end Meander
+ 5 *tropmi caves-1623/144/Meander
+ 5 *import caves-1623/144/me2
+ 3 *begin me2
+ 3 *end me2
+ 5 *tropmi caves-1623/144/me2
+ 2 *end 144
+ 4 *tropmi caves-1623/144/144
+ 4 *import caves-1623/158/158
+ 2 *begin 158
+ 5 *import caves-1623/158/nagellackentferner
+ 3 *begin nagellackentferner
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end nagellackentferner
+ 5 *tropmi caves-1623/158/nagellackentferner
+ 5 *import caves-1623/158/bigberta
+ 3 *begin bigberta
+ 3 *end bigberta
+ 5 *tropmi caves-1623/158/bigberta
+ 5 *import caves-1623/158/fruttidelmare
+ 3 *begin fruttidelmare
+ 4 *begin
+ 4 *end
+ 3 *end fruttidelmare
+ 5 *tropmi caves-1623/158/fruttidelmare
+ 5 *import caves-1623/158/lasvegas
+ 3 *begin lasvegas
+ 3 *end lasvegas
+ 5 *tropmi caves-1623/158/lasvegas
+ 2 *end 158
+ 4 *tropmi caves-1623/158/158
+ 4 *import caves-1623/216/216
+ 2 *begin 216
+ 3 *begin ent
+ 3 *end ent
+ 2 *end 216
+ 4 *tropmi caves-1623/216/216
+ 3 *tropmi caves-1623/caves-smk-south
+ 3 *import caves-1623/caves-smk-north
+ 4 *import caves-1623/links-smk-north
+ 5 *import caves-1623/links204-258
+ 5 *tropmi caves-1623/links204-258
+ 5 *import caves-1623/links161-204
+ 5 *tropmi caves-1623/links161-204
+ 4 *tropmi caves-1623/links-smk-north
+ 4 *import caves-1623/83/83
+ 2 *begin 107entsingleleg
+ 2 *end 107entsingleleg
+ 2 *begin 83
+ 3 *begin main
+ 3 *end main
+ 3 *begin underarock
+ 3 *end underarock
+ 3 *begin pitchhead
+ 3 *end pitchhead
+ 3 *begin pitch
+ 3 *end pitch
+ 3 *begin duncing
+ 3 *end duncing
+ 3 *begin thunderroad
+ 3 *end thunderroad
+ 3 *begin temp
+ 3 *end temp
+ 3 *begin downunder
+ 3 *end downunder
+ 2 *end 83
+ 4 *tropmi caves-1623/83/83
+ 4 *import caves-1623/107/107
+ 2 *begin 107
+ 5 *import caves-1623/107/ent
+ 3 *begin ent
+ 3 *end ent
+ 5 *tropmi caves-1623/107/ent
+ 3 *begin
+ 3 *end
+ 5 *import caves-1623/107/fake
+ 3 *begin fake
+ 3 *end fake
+ 5 *tropmi caves-1623/107/fake
+ 5 *import caves-1623/107/ext
+ 3 *begin ext
+ 3 *end ext
+ 5 *tropmi caves-1623/107/ext
+ 3 *begin connectingleg
+ 3 *end connectingleg
+ 5 *import caves-1623/107/ropeless
+ 3 *begin ropeless
+ 3 *end ropeless
+ 5 *tropmi caves-1623/107/ropeless
+ 5 *import caves-1623/107/ropefree
+ 3 *begin ropefree
+ 3 *end ropefree
+ 5 *tropmi caves-1623/107/ropefree
+ 5 *import caves-1623/107/envelope
+ 3 *begin envelope
+ 3 *end envelope
+ 5 *tropmi caves-1623/107/envelope
+ 5 *import caves-1623/107/sleepless
+ 3 *begin sleepless
+ 3 *end sleepless
+ 5 *tropmi caves-1623/107/sleepless
+ 5 *import caves-1623/107/unnamed
+ 3 *begin unnamed
+ 3 *end unnamed
+ 5 *tropmi caves-1623/107/unnamed
+ 5 *import caves-1623/107/oldrift
+ 3 *begin oldrift
+ 3 *end oldrift
+ 5 *tropmi caves-1623/107/oldrift
+ 5 *import caves-1623/107/oldriftconn
+ 3 *begin oldriftconn
+ 3 *end oldriftconn
+ 5 *tropmi caves-1623/107/oldriftconn
+ 5 *import caves-1623/107/coldest
+ 3 *begin coldest
+ 3 *end coldest
+ 5 *tropmi caves-1623/107/coldest
+ 5 *import caves-1623/107/0730
+ 3 *begin 0730
+ 3 *end 0730
+ 5 *tropmi caves-1623/107/0730
+ 5 *import caves-1623/107/0801
+ 3 *begin 0801
+ 3 *end 0801
+ 5 *tropmi caves-1623/107/0801
+ 5 *import caves-1623/107/wiggly
+ 3 *begin wiggly
+ 3 *end wiggly
+ 5 *tropmi caves-1623/107/wiggly
+ 5 *import caves-1623/107/landofconfusion
+ 3 *begin landofconfusion
+ 3 *end landofconfusion
+ 5 *tropmi caves-1623/107/landofconfusion
+ 5 *import caves-1623/107/wonderland
+ 3 *begin wonderland
+ 3 *end wonderland
+ 3 *begin wonderland2
+ 3 *end wonderland2
+ 3 *begin wildwest
+ 4 *begin
+ 4 *end
+ 3 *end wildwest
+ 3 *begin direstraits
+ 3 *end direstraits
+ 3 *begin effective
+ 3 *end effective
+ 5 *tropmi caves-1623/107/wonderland
+ 5 *import caves-1623/107/0805
+ 3 *begin 0805
+ 3 *end 0805
+ 5 *tropmi caves-1623/107/0805
+ 3 *begin ropelessconn
+ 3 *end ropelessconn
+ 5 *import caves-1623/107/china
+ 3 *begin china
+ 3 *end china
+ 5 *tropmi caves-1623/107/china
+ 5 *import caves-1623/107/ropelesshole
+ 3 *begin ropelesshole
+ 3 *end ropelesshole
+ 5 *tropmi caves-1623/107/ropelesshole
+ 5 *import caves-1623/107/0810
+ 3 *begin 0810
+ 3 *end 0810
+ 5 *tropmi caves-1623/107/0810
+ 5 *import caves-1623/107/0814
+ 3 *begin 0814
+ 3 *end 0814
+ 5 *tropmi caves-1623/107/0814
+ 5 *import caves-1623/107/cairnpitch
+ 3 *begin cairnpitch
+ 3 *end cairnpitch
+ 5 *tropmi caves-1623/107/cairnpitch
+ 5 *import caves-1623/107/locoxbows
+ 3 *begin locoxbows
+ 3 *end locoxbows
+ 5 *tropmi caves-1623/107/locoxbows
+ 5 *import caves-1623/107/locside
+ 3 *begin locside
+ 3 *end locside
+ 5 *tropmi caves-1623/107/locside
+ 5 *import caves-1623/107/alcovepop
+ 3 *begin alcovepop
+ 3 *end alcovepop
+ 5 *tropmi caves-1623/107/alcovepop
+ 5 *import caves-1623/107/lasttsa
+ 3 *begin lasttsa
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 4 *end 2
+ 3 *end lasttsa
+ 5 *tropmi caves-1623/107/lasttsa
+ 5 *import caves-1623/107/161connection
+ 3 *begin 161connection
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end 161connection
+ 5 *tropmi caves-1623/107/161connection
+ 5 *import caves-1623/107/poppedacross
+ 3 *begin poppedacross
+ 3 *end poppedacross
+ 5 *tropmi caves-1623/107/poppedacross
+ 5 *import caves-1623/107/entcleads
+ 3 *begin entcleads
+ 3 *end entcleads
+ 5 *tropmi caves-1623/107/entcleads
+ 5 *import caves-1623/107/nippeddown
+ 3 *begin nippeddown
+ 3 *end nippeddown
+ 5 *tropmi caves-1623/107/nippeddown
+ 5 *import caves-1623/107/fudgedup
+ 3 *begin fudgedup
+ 3 *end fudgedup
+ 5 *tropmi caves-1623/107/fudgedup
+ 5 *import caves-1623/107/smoothbottom
+ 3 *begin smoothbottom
+ 3 *end smoothbottom
+ 3 *begin smoothbottom2
+ 3 *end smoothbottom2
+ 5 *tropmi caves-1623/107/smoothbottom
+ 5 *import caves-1623/107/oldroute
+ 3 *begin oldroute
+ 3 *end oldroute
+ 3 *begin oldroute2
+ 3 *end oldroute2
+ 3 *begin
+ 3 *end
+ 3 *begin oldroute3
+ 4 *begin
+ 4 *end
+ 3 *end oldroute3
+ 3 *begin oldroute4
+ 3 *end oldroute4
+ 3 *begin oldroute5
+ 3 *end oldroute5
+ 3 *begin oldroute6
+ 3 *end oldroute6
+ 3 *begin oldroute7
+ 3 *end oldroute7
+ 3 *begin oldroute8
+ 3 *end oldroute8
+ 5 *tropmi caves-1623/107/oldroute
+ 5 *import caves-1623/107/tubular
+ 3 *begin tubular
+ 3 *end tubular
+ 3 *begin tubular2
+ 3 *end tubular2
+ 5 *tropmi caves-1623/107/tubular
+ 5 *import caves-1623/107/doublebeep
+ 3 *begin doublebeep
+ 3 *end doublebeep
+ 5 *tropmi caves-1623/107/doublebeep
+ 5 *import caves-1623/107/beepless
+ 3 *begin beepless
+ 3 *end beepless
+ 5 *tropmi caves-1623/107/beepless
+ 5 *import caves-1623/107/notwindow
+ 3 *begin notwindow
+ 3 *end notwindow
+ 5 *tropmi caves-1623/107/notwindow
+ 5 *import caves-1623/107/hrv
+ 3 *begin hrv
+ 3 *end hrv
+ 5 *tropmi caves-1623/107/hrv
+ 5 *import caves-1623/107/antigrav
+ 3 *begin antigrav
+ 3 *end antigrav
+ 5 *tropmi caves-1623/107/antigrav
+ 2 *end 107
+ 4 *tropmi caves-1623/107/107
+ 4 *import caves-1623/136/136-correct
+ 2 *begin 136
+ 5 *import caves-1623/136/main
+ 3 *begin entrance
+ 4 *begin
+ 4 *end
+ 3 *end entrance
+ 3 *begin theatre
+ 3 *end theatre
+ 3 *begin fantasy
+ 3 *end fantasy
+ 3 *begin gods
+ 3 *end gods
+ 3 *begin distraction
+ 3 *end distraction
+ 3 *begin footlights
+ 3 *end footlights
+ 5 *tropmi caves-1623/136/main
+ 5 *import caves-1623/136/ents
+ 3 *begin MorEnt
+ 4 *begin
+ 4 *end
+ 3 *end MorEnt
+ 5 *tropmi caves-1623/136/ents
+ 5 *import caves-1623/136/chile/chile
+ 3 *begin chile
+ 6 *import caves-1623/136/chile/oatso
+ 4 *begin oatso
+ 4 *end oatso
+ 6 *tropmi caves-1623/136/chile/oatso
+ 6 *import caves-1623/136/chile/ovrshoot
+ 4 *begin overshoot
+ 5 *begin 1
+ 5 *end 1
+ 5 *begin 2
+ 5 *end 2
+ 5 *begin 3
+ 5 *end 3
+ 4 *end overshoot
+ 6 *tropmi caves-1623/136/chile/ovrshoot
+ 6 *import caves-1623/136/chile/lostspce
+ 4 *begin lostinspace
+ 5 *begin 1
+ 5 *end 1
+ 5 *begin 2
+ 5 *end 2
+ 5 *begin 4
+ 5 *end 4
+ 4 *end lostinspace
+ 7 *import caves-1623/136/chile/damnpit
+ 4 *begin PitOfDamnation
+ 5 *begin
+ 5 *end
+ 5 *begin
+ 5 *end
+ 4 *end PitOfDamnation
+ 7 *tropmi caves-1623/136/chile/damnpit
+ 6 *tropmi caves-1623/136/chile/lostspce
+ 6 *import caves-1623/136/chile/windybot
+ 4 *begin windybottom
+ 4 *end windybottom
+ 6 *tropmi caves-1623/136/chile/windybot
+ 6 *import caves-1623/136/chile/breeze
+ 4 *begin BreezeThrough
+ 4 *end BreezeThrough
+ 4 *begin BreezeBlock
+ 4 *end BreezeBlock
+ 6 *tropmi caves-1623/136/chile/breeze
+ 6 *import caves-1623/136/chile/watershoot
+ 4 *begin watershoot
+ 4 *end watershoot
+ 6 *tropmi caves-1623/136/chile/watershoot
+ 6 *import caves-1623/136/chile/leftroute
+ 4 *begin leftroute
+ 4 *end leftroute
+ 6 *tropmi caves-1623/136/chile/leftroute
+ 6 *import caves-1623/136/chile/runnyb
+ 4 *begin runnybowels
+ 4 *end runnybowels
+ 6 *tropmi caves-1623/136/chile/runnyb
+ 6 *import caves-1623/136/chile/carpetworld
+ 4 *begin carpetworld
+ 4 *end carpetworld
+ 6 *tropmi caves-1623/136/chile/carpetworld
+ 6 *import caves-1623/136/chile/pebbled
+ 4 *begin pebbled1
+ 4 *end pebbled1
+ 4 *begin pebbled2
+ 4 *end pebbled2
+ 4 *begin pebbled3
+ 4 *end pebbled3
+ 6 *tropmi caves-1623/136/chile/pebbled
+ 6 *import caves-1623/136/chile/left2route
+ 4 *begin left2route
+ 4 *end left2route
+ 6 *tropmi caves-1623/136/chile/left2route
+ 6 *import caves-1623/136/chile/aven
+ 4 *begin aven
+ 4 *end aven
+ 6 *tropmi caves-1623/136/chile/aven
+ 6 *import caves-1623/136/chile/aven2
+ 4 *begin aven2
+ 4 *end aven2
+ 6 *tropmi caves-1623/136/chile/aven2
+ 3 *end chile
+ 5 *tropmi caves-1623/136/chile/chile
+ 5 *import caves-1623/136/forbiden
+ 3 *begin HotMC
+ 3 *end HotMC
+ 3 *begin ElinA
+ 3 *end ElinA
+ 3 *begin tyrolia
+ 3 *end tyrolia
+ 5 *tropmi caves-1623/136/forbiden
+ 5 *import caves-1623/136/gravel
+ 3 *begin Gravel
+ 3 *end Gravel
+ 5 *tropmi caves-1623/136/gravel
+ 5 *import caves-1623/136/footconn
+ 3 *begin footconn
+ 3 *end footconn
+ 5 *tropmi caves-1623/136/footconn
+ 2 *end 136
+ 4 *tropmi caves-1623/136/136-correct
+ 4 *import caves-1623/161/161
+ 2 *begin 161
+ 5 *import caves-1623/161/top/alltop
+ 6 *import caves-1623/161/top/entrance
+ 3 *begin Entrance
+ 3 *end Entrance
+ 3 *begin mike
+ 3 *end mike
+ 3 *begin shopper
+ 3 *end shopper
+ 3 *begin squeeze
+ 3 *end squeeze
+ 3 *begin BoltConn1
+ 3 *end BoltConn1
+ 3 *begin Umleitng
+ 3 *end Umleitng
+ 3 *begin Dungeon
+ 3 *end dungeon
+ 3 *begin ignore
+ 4 *begin 1st
+ 4 *end 1st
+ 4 *begin 2nd
+ 4 *end 2nd
+ 3 *end ignore
+ 6 *tropmi caves-1623/161/top/entrance
+ 6 *import caves-1623/161/top/oldp2
+ 3 *begin OldP2
+ 3 *end OldP2
+ 6 *tropmi caves-1623/161/top/oldp2
+ 6 *import caves-1623/161/top/snot
+ 3 *begin Snot
+ 3 *end Snot
+ 6 *tropmi caves-1623/161/top/snot
+ 5 *tropmi caves-1623/161/top/alltop
+ 5 *import caves-1623/161/lhr/alllhr
+ 6 *import caves-1623/161/lhr/lhroute
+ 3 *begin lh
+ 3 *end lh
+ 3 *begin FrnchCon
+ 3 *end FrnchCon
+ 6 *tropmi caves-1623/161/lhr/lhroute
+ 6 *import caves-1623/161/lhr/ragnarok
+ 3 *begin ragnarok
+ 3 *end ragnarok
+ 3 *begin Trehala
+ 3 *end Trehala
+ 6 *tropmi caves-1623/161/lhr/ragnarok
+ 6 *import caves-1623/161/lhr/drunk
+ 3 *begin Drunk
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 4 *end 2
+ 4 *begin 3
+ 4 *end 3
+ 4 *begin 4
+ 4 *end 4
+ 4 *begin 5
+ 4 *end 5
+ 4 *begin 7
+ 4 *end 7
+ 3 *end drunk
+ 3 *begin WetNappy
+ 3 *end WetNappy
+ 6 *tropmi caves-1623/161/lhr/drunk
+ 6 *import caves-1623/161/lhr/gparty
+ 3 *begin GParty
+ 4 *begin 1st
+ 4 *end 1st
+ 4 *begin 2nd
+ 4 *end 2nd
+ 4 *begin 3rd
+ 4 *end 3rd
+ 3 *end GParty
+ 6 *tropmi caves-1623/161/lhr/gparty
+ 6 *import caves-1623/161/lhr/powerstn
+ 3 *begin PowerStn
+ 3 *end PowerStn
+ 6 *tropmi caves-1623/161/lhr/powerstn
+ 6 *import caves-1623/161/lhr/arrow
+ 3 *begin PtchRp
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 4 *end 2
+ 3 *end PtchRp
+ 3 *begin Pntless
+ 3 *end Pntless
+ 6 *tropmi caves-1623/161/lhr/arrow
+ 6 *import caves-1623/161/lhr/ambi
+ 3 *begin ambi
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 3 *end ambi
+ 6 *tropmi caves-1623/161/lhr/ambi
+ 5 *tropmi caves-1623/161/lhr/alllhr
+ 5 *import caves-1623/161/rhr/allrhr
+ 6 *import caves-1623/161/rhr/chunnel
+ 3 *begin chunnel
+ 3 *end chunnel
+ 3 *begin BoltConn3
+ 4 *begin
+ 4 *end
+ 3 *end BoltConn3
+ 3 *begin boulder
+ 3 *end boulder
+ 3 *begin semidet
+ 3 *end semidet
+ 6 *tropmi caves-1623/161/rhr/chunnel
+ 6 *import caves-1623/161/rhr/bladerun
+ 3 *begin Bladerun
+ 3 *end Bladerun
+ 6 *tropmi caves-1623/161/rhr/bladerun
+ 6 *import caves-1623/161/rhr/vesta
+ 3 *begin Vesta
+ 3 *end vesta
+ 6 *tropmi caves-1623/161/rhr/vesta
+ 6 *import caves-1623/161/rhr/pog
+ 3 *begin PotGold
+ 3 *end PotGold
+ 6 *tropmi caves-1623/161/rhr/pog
+ 6 *import caves-1623/161/rhr/pitpend
+ 3 *begin PitPend
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 4 *begin pt3
+ 4 *end pt3
+ 3 *end PitPend
+ 6 *tropmi caves-1623/161/rhr/pitpend
+ 6 *import caves-1623/161/rhr/tblocks
+ 3 *begin Knossos
+ 3 *end Knossos
+ 3 *begin TBlocks
+ 3 *end TBlocks
+ 3 *begin TBKnosLnk
+ 3 *end TBKnosLnk
+ 3 *begin knossosconn
+ 3 *end knossosconn
+ 6 *tropmi caves-1623/161/rhr/tblocks
+ 6 *import caves-1623/161/rhr/olympus
+ 3 *begin olympus
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 3 *end Olympus
+ 6 *tropmi caves-1623/161/rhr/olympus
+ 6 *import caves-1623/161/rhr/dreamtme
+ 3 *begin BoltConn2
+ 3 *end BoltConn2
+ 3 *begin Dream89
+ 3 *end Dream89
+ 3 *begin Dream
+ 3 *end Dream
+ 6 *tropmi caves-1623/161/rhr/dreamtme
+ 6 *import caves-1623/161/rhr/deepslp
+ 3 *begin DeepSleep
+ 3 *end DeepSleep
+ 3 *begin DreamOn
+ 3 *end DreamOn
+ 3 *begin DreamBull
+ 3 *end DreamBull
+ 3 *begin Bullshit
+ 3 *end Bullshit
+ 3 *begin Snap
+ 3 *end Snap
+ 6 *tropmi caves-1623/161/rhr/deepslp
+ 6 *import caves-1623/161/rhr/gnome
+ 3 *begin Gnome
+ 3 *end Gnome
+ 6 *tropmi caves-1623/161/rhr/gnome
+ 6 *import caves-1623/161/rhr/notwhat
+ 3 *begin notwhat
+ 3 *end notwhat
+ 3 *begin vestaconn
+ 3 *end vestaconn
+ 6 *tropmi caves-1623/161/rhr/notwhat
+ 6 *import caves-1623/161/rhr/nights
+ 3 *begin nightsoil
+ 3 *end nightsoil
+ 6 *tropmi caves-1623/161/rhr/nights
+ 6 *import caves-1623/161/rhr/oral
+ 3 *begin oral
+ 3 *end oral
+ 6 *tropmi caves-1623/161/rhr/oral
+ 6 *import caves-1623/161/rhr/splat
+ 3 *begin splattery
+ 3 *end splattery
+ 6 *tropmi caves-1623/161/rhr/splat
+ 6 *import caves-1623/161/rhr/revenge
+ 3 *begin revenge
+ 3 *end revenge
+ 3 *begin limolink
+ 3 *end limolink
+ 6 *tropmi caves-1623/161/rhr/revenge
+ 6 *import caves-1623/161/rhr/doubting
+ 3 *begin doubting
+ 3 *end doubting
+ 6 *tropmi caves-1623/161/rhr/doubting
+ 5 *tropmi caves-1623/161/rhr/allrhr
+ 5 *import caves-1623/161/north/allnth
+ 6 *import caves-1623/161/north/yapate
+ 3 *begin Yapate
+ 3 *end Yapate
+ 3 *begin Toilet
+ 3 *end Toilet
+ 3 *begin SOKBconn
+ 3 *end SOKBconn
+ 3 *begin Sheared
+ 3 *end Sheared
+ 6 *tropmi caves-1623/161/north/yapate
+ 6 *import caves-1623/161/north/flapjack
+ 3 *begin flapjack
+ 3 *end flapjack
+ 6 *tropmi caves-1623/161/north/flapjack
+ 6 *import caves-1623/161/north/toomuch
+ 3 *begin TooMuch
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 3 *end TooMuch
+ 6 *tropmi caves-1623/161/north/toomuch
+ 6 *import caves-1623/161/north/flatbatt
+ 3 *begin FBS
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 4 *begin pt3
+ 4 *end pt3
+ 3 *end FBS
+ 6 *tropmi caves-1623/161/north/flatbatt
+ 6 *import caves-1623/161/north/dehy
+ 3 *begin CFN
+ 3 *end CFN
+ 3 *begin endless
+ 3 *end endless
+ 3 *begin Wedge
+ 3 *end Wedge
+ 3 *begin HGSLink
+ 3 *end HGSLink
+ 6 *tropmi caves-1623/161/north/dehy
+ 6 *import caves-1623/161/north/gob
+ 3 *begin gob
+ 4 *begin top
+ 4 *end top
+ 4 *begin rest
+ 4 *end rest
+ 3 *end gob
+ 6 *tropmi caves-1623/161/north/gob
+ 6 *import caves-1623/161/north/burble
+ 3 *begin BurblCrawl
+ 3 *end BurblCrawl
+ 3 *begin Repton
+ 3 *end Repton
+ 3 *begin VomPitch
+ 3 *end VomPitch
+ 3 *begin BurblMaze
+ 3 *end BurblMaze
+ 3 *begin LeadMine
+ 3 *end LeadMine
+ 6 *tropmi caves-1623/161/north/burble
+ 6 *import caves-1623/161/north/pipeless
+ 3 *begin BeeConn
+ 3 *end BeeConn
+ 3 *begin Beehive
+ 3 *end Beehive
+ 3 *begin Pipeless
+ 3 *end Pipeless
+ 3 *begin MostlyMud
+ 3 *end MostlyMud
+ 6 *tropmi caves-1623/161/north/pipeless
+ 6 *import caves-1623/161/north/3wisemen
+ 3 *begin 3WiseMen
+ 3 *end 3WiseMen
+ 3 *begin FarToFar
+ 3 *end FarToFar
+ 6 *tropmi caves-1623/161/north/3wisemen
+ 6 *import caves-1623/161/north/further
+ 3 *begin Further
+ 3 *end Further
+ 3 *begin FurtCham
+ 3 *end FurtCham
+ 6 *tropmi caves-1623/161/north/further
+ 6 *import caves-1623/161/north/anglia
+ 3 *begin anglia
+ 3 *end anglia
+ 6 *tropmi caves-1623/161/north/anglia
+ 6 *import caves-1623/161/north/siberia
+ 3 *begin siberia
+ 3 *end siberia
+ 6 *tropmi caves-1623/161/north/siberia
+ 6 *import caves-1623/161/north/sep
+ 3 *begin sep
+ 4 *begin TeamA
+ 4 *end TeamA
+ 4 *begin TeamB
+ 4 *end teamb
+ 4 *begin fuzzy
+ 4 *end fuzzy
+ 4 *begin greengables
+ 4 *end greengables
+ 4 *begin Part2
+ 4 *end Part2
+ 3 *end sep
+ 6 *tropmi caves-1623/161/north/sep
+ 6 *import caves-1623/161/north/midnight
+ 3 *begin midnght1
+ 3 *end midnght1
+ 3 *begin midnght2
+ 3 *end midnght2
+ 6 *tropmi caves-1623/161/north/midnight
+ 6 *import caves-1623/161/north/logic
+ 3 *begin logic
+ 3 *end logic
+ 6 *tropmi caves-1623/161/north/logic
+ 6 *import caves-1623/161/north/psychost
+ 3 *begin psycho
+ 3 *end psycho
+ 6 *tropmi caves-1623/161/north/psychost
+ 6 *import caves-1623/161/north/clearas
+ 3 *begin clearas
+ 3 *end clearas
+ 6 *tropmi caves-1623/161/north/clearas
+ 6 *import caves-1623/161/north/bearbum
+ 3 *begin bearbum
+ 3 *end bearbum
+ 6 *tropmi caves-1623/161/north/bearbum
+ 6 *import caves-1623/161/north/forgetmenot
+ 3 *begin forgetmenot
+ 3 *end forgetmenot
+ 6 *tropmi caves-1623/161/north/forgetmenot
+ 6 *import caves-1623/161/north/solidrock
+ 3 *begin solidrock
+ 3 *end solidrock
+ 6 *tropmi caves-1623/161/north/solidrock
+ 6 *import caves-1623/161/north/direstraits
+ 3 *begin direstraits
+ 3 *end direstraits
+ 6 *tropmi caves-1623/161/north/direstraits
+ 6 *import caves-1623/161/north/satansitter
+ 3 *begin satansitter
+ 3 *end satansitter
+ 6 *tropmi caves-1623/161/north/satansitter
+ 6 *import caves-1623/161/north/naturalway
+ 3 *begin naturalway
+ 3 *end naturalway
+ 6 *tropmi caves-1623/161/north/naturalway
+ 6 *import caves-1623/161/north/6milebottom
+ 3 *begin 6milebottom
+ 3 *end 6milebottom
+ 6 *tropmi caves-1623/161/north/6milebottom
+ 6 *import caves-1623/161/north/sofaraway
+ 3 *begin sofaraway
+ 3 *end sofaraway
+ 6 *tropmi caves-1623/161/north/sofaraway
+ 6 *import caves-1623/161/north/ironyoftime
+ 3 *begin ironyoftime
+ 3 *end ironyoftime
+ 6 *tropmi caves-1623/161/north/ironyoftime
+ 6 *import caves-1623/161/north/naturalway2
+ 3 *begin naturalway2
+ 3 *end naturalway2
+ 6 *tropmi caves-1623/161/north/naturalway2
+ 6 *import caves-1623/161/north/oldmen
+ 3 *begin oldmen
+ 3 *end oldmen
+ 3 *begin oldmen2
+ 3 *end oldmen2
+ 3 *begin oldmen3
+ 3 *end oldmen3
+ 3 *begin oldmen4
+ 3 *end oldmen4
+ 6 *tropmi caves-1623/161/north/oldmen
+ 6 *import caves-1623/161/north/chocolateloops
+ 3 *begin chocolateloops
+ 3 *end chocolateloops
+ 6 *tropmi caves-1623/161/north/chocolateloops
+ 6 *import caves-1623/161/north/mendip
+ 3 *begin mendip
+ 3 *end mendip
+ 6 *tropmi caves-1623/161/north/mendip
+ 6 *import caves-1623/161/north/popcorn
+ 3 *begin popcorn
+ 3 *end popcorn
+ 6 *tropmi caves-1623/161/north/popcorn
+ 6 *import caves-1623/161/north/oldmensouth
+ 3 *begin oldmensouth
+ 3 *end oldmensouth
+ 6 *tropmi caves-1623/161/north/oldmensouth
+ 6 *import caves-1623/161/north/oldmenleft
+ 3 *begin oldmenleft
+ 3 *end oldmenleft
+ 6 *tropmi caves-1623/161/north/oldmenleft
+ 6 *import caves-1623/161/north/mordor
+ 3 *begin mordor
+ 3 *end mordor
+ 6 *tropmi caves-1623/161/north/mordor
+ 6 *import caves-1623/161/north/bored
+ 3 *begin bored
+ 3 *end bored
+ 3 *begin bored2
+ 3 *end bored2
+ 6 *tropmi caves-1623/161/north/bored
+ 6 *import caves-1623/161/north/stables
+ 3 *begin stables
+ 3 *end stables
+ 6 *tropmi caves-1623/161/north/stables
+ 6 *import caves-1623/161/north/holeycow
+ 3 *begin holeycow
+ 3 *end holeycow
+ 6 *tropmi caves-1623/161/north/holeycow
+ 6 *import caves-1623/161/north/blownout
+ 3 *begin blownout
+ 3 *end blownout
+ 6 *tropmi caves-1623/161/north/blownout
+ 6 *import caves-1623/161/north/sauron
+ 3 *begin sauron
+ 3 *end sauron
+ 6 *tropmi caves-1623/161/north/sauron
+ 6 *import caves-1623/161/north/soilathon
+ 3 *begin soilathon
+ 3 *end soilathon
+ 6 *tropmi caves-1623/161/north/soilathon
+ 6 *import caves-1623/161/north/wellypopper
+ 3 *begin wellypopper
+ 3 *end wellypopper
+ 6 *tropmi caves-1623/161/north/wellypopper
+ 6 *import caves-1623/161/north/runnelnorth
+ 3 *begin runnelnorth
+ 3 *end runnelnorth
+ 6 *tropmi caves-1623/161/north/runnelnorth
+ 6 *import caves-1623/161/north/soilchute
+ 3 *begin soilchute
+ 3 *end soilchute
+ 6 *tropmi caves-1623/161/north/soilchute
+ 6 *import caves-1623/161/north/polkadot
+ 3 *begin polkadot
+ 3 *end polkadot
+ 6 *tropmi caves-1623/161/north/polkadot
+ 6 *import caves-1623/161/north/larchenrepublic
+ 3 *begin larchenrepublic
+ 3 *end larchenrepublic
+ 6 *tropmi caves-1623/161/north/larchenrepublic
+ 6 *import caves-1623/161/north/bundestrasse
+ 3 *begin bundestrasse
+ 3 *end bundestrasse
+ 3 *begin pissup
+ 3 *end pissup
+ 6 *tropmi caves-1623/161/north/bundestrasse
+ 6 *import caves-1623/161/north/fbitw
+ 3 *begin fbitw
+ 3 *end fbitw
+ 6 *tropmi caves-1623/161/north/fbitw
+ 6 *import caves-1623/161/north/fallingspike
+ 3 *begin fallingspike
+ 3 *end fallingspike
+ 6 *tropmi caves-1623/161/north/fallingspike
+ 6 *import caves-1623/161/north/qualitybelays
+ 3 *begin quality
+ 3 *end quality
+ 3 *begin backfuture
+ 3 *end backfuture
+ 6 *tropmi caves-1623/161/north/qualitybelays
+ 5 *tropmi caves-1623/161/north/allnth
+ 5 *import caves-1623/161/france/allfr
+ 6 *import caves-1623/161/france/adrian
+ 3 *begin Adrian
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 5 *begin
+ 5 *end
+ 4 *end 2
+ 4 *begin a
+ 4 *end a
+ 4 *begin b
+ 4 *end b
+ 4 *begin c
+ 4 *end c
+ 4 *begin d
+ 4 *end d
+ 4 *begin e
+ 4 *end e
+ 4 *begin guessed
+ 4 *end guessed
+ 3 *end Adrian
+ 6 *tropmi caves-1623/161/france/adrian
+ 6 *import caves-1623/161/france/btoc
+ 3 *begin BtoC
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end BtoC
+ 6 *tropmi caves-1623/161/france/btoc
+ 6 *import caves-1623/161/france/vertfran
+ 3 *begin France
+ 4 *begin a
+ 4 *end a
+ 4 *begin b
+ 4 *end b
+ 3 *end France
+ 3 *begin DiceRoll
+ 3 *end DiceRoll
+ 3 *begin NotAlgeria
+ 3 *end NotAlgeria
+ 6 *tropmi caves-1623/161/france/vertfran
+ 6 *import caves-1623/161/france/algeria
+ 3 *begin Algeria
+ 3 *end Algeria
+ 3 *begin twintubs
+ 3 *end twintubs
+ 3 *begin daz
+ 3 *end daz
+ 6 *tropmi caves-1623/161/france/algeria
+ 6 *import caves-1623/161/france/orient
+ 3 *begin orient
+ 3 *end orient
+ 6 *tropmi caves-1623/161/france/orient
+ 6 *import caves-1623/161/france/missip
+ 3 *begin missip
+ 3 *end missip
+ 3 *begin mohr
+ 3 *end mohr
+ 3 *begin suspender
+ 3 *end suspender
+ 6 *tropmi caves-1623/161/france/missip
+ 6 *import caves-1623/161/france/toplo
+ 3 *begin toploader
+ 3 *end toploader
+ 6 *tropmi caves-1623/161/france/toplo
+ 6 *import caves-1623/161/france/browni
+ 3 *begin brownie
+ 3 *end brownie
+ 3 *begin stepl
+ 3 *end stepl
+ 3 *begin sidebrown
+ 3 *end sidebrown
+ 3 *begin brownloop
+ 3 *end brownloop
+ 6 *tropmi caves-1623/161/france/browni
+ 6 *import caves-1623/161/france/rocky
+ 3 *begin rocky
+ 3 *end rocky
+ 6 *tropmi caves-1623/161/france/rocky
+ 6 *import caves-1623/161/france/iidriv
+ 3 *begin infinite
+ 3 *end infinite
+ 3 *begin skeleton
+ 3 *end skeleton
+ 6 *tropmi caves-1623/161/france/iidriv
+ 6 *import caves-1623/161/france/bisfac
+ 3 *begin ginger
+ 3 *end ginger
+ 3 *begin tunnock
+ 3 *end tunnock
+ 3 *begin ppot
+ 3 *end ppot
+ 6 *tropmi caves-1623/161/france/bisfac
+ 6 *import caves-1623/161/france/sultans
+ 3 *begin sultans
+ 3 *end sultans
+ 6 *tropmi caves-1623/161/france/sultans
+ 6 *import caves-1623/161/france/regurg
+ 3 *begin regurg
+ 3 *end regurg
+ 6 *tropmi caves-1623/161/france/regurg
+ 6 *import caves-1623/161/france/room
+ 3 *begin room
+ 3 *end room
+ 6 *tropmi caves-1623/161/france/room
+ 6 *import caves-1623/161/france/irrig
+ 3 *begin irrig
+ 3 *end irrig
+ 6 *tropmi caves-1623/161/france/irrig
+ 5 *tropmi caves-1623/161/france/allfr
+ 5 *import caves-1623/161/triassic/alltrias
+ 6 *import caves-1623/161/triassic/triassic
+ 3 *begin triassic
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 4 *begin pt3
+ 4 *end pt3
+ 3 *end triassic
+ 3 *begin scarface
+ 3 *end scarface
+ 3 *begin minoan
+ 3 *end minoan
+ 6 *tropmi caves-1623/161/triassic/triassic
+ 6 *import caves-1623/161/triassic/palace
+ 3 *begin palace
+ 3 *end palace
+ 6 *tropmi caves-1623/161/triassic/palace
+ 6 *import caves-1623/161/triassic/teapot
+ 3 *begin teapot
+ 3 *end teapot
+ 6 *tropmi caves-1623/161/triassic/teapot
+ 6 *import caves-1623/161/triassic/snug
+ 3 *begin snug
+ 3 *end snug
+ 6 *tropmi caves-1623/161/triassic/snug
+ 6 *import caves-1623/161/triassic/altuni
+ 3 *begin altuni
+ 3 *end altuni
+ 6 *tropmi caves-1623/161/triassic/altuni
+ 6 *import caves-1623/161/triassic/hymen
+ 3 *begin hymen
+ 3 *end hymen
+ 6 *tropmi caves-1623/161/triassic/hymen
+ 6 *import caves-1623/161/triassic/magicjum
+ 3 *begin magicjumars
+ 3 *end magicjumars
+ 3 *begin magic2
+ 3 *end magic2
+ 3 *begin welshchoir
+ 3 *end welshchoir
+ 6 *tropmi caves-1623/161/triassic/magicjum
+ 6 *import caves-1623/161/triassic/fogies
+ 3 *begin fogies
+ 3 *end fogies
+ 3 *begin fogies2
+ 3 *end fogies2
+ 3 *begin fconnect
+ 3 *end fconnect
+ 6 *tropmi caves-1623/161/triassic/fogies
+ 6 *import caves-1623/161/triassic/keinzimm
+ 3 *begin keinzimmer
+ 3 *end keinzimmer
+ 3 *begin dunno
+ 3 *end dunno
+ 6 *tropmi caves-1623/161/triassic/keinzimm
+ 6 *import caves-1623/161/triassic/lostworl
+ 3 *begin lostworld
+ 4 *begin downstream
+ 4 *end downstream
+ 4 *begin downstream2
+ 4 *end downstream2
+ 4 *begin upstream
+ 4 *end upstream
+ 4 *begin upstream2
+ 4 *end upstream2
+ 4 *begin downstream3
+ 4 *end downstream3
+ 3 *end lostworld
+ 6 *tropmi caves-1623/161/triassic/lostworl
+ 6 *import caves-1623/161/triassic/tapeworm
+ 3 *begin tapeworm
+ 3 *end tapeworm
+ 3 *begin hammeroids
+ 3 *end hammeroids
+ 6 *tropmi caves-1623/161/triassic/tapeworm
+ 6 *import caves-1623/161/triassic/chaos
+ 3 *begin chaos
+ 3 *end chaos
+ 3 *begin chaos2
+ 3 *end chaos2
+ 6 *tropmi caves-1623/161/triassic/chaos
+ 6 *import caves-1623/161/triassic/intrview
+ 3 *begin interview
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 4 *begin pt3
+ 4 *end pt3
+ 4 *begin pt4
+ 4 *end pt4
+ 4 *begin pt5
+ 4 *end pt5
+ 4 *begin pt6
+ 4 *end pt6
+ 4 *begin pt7
+ 4 *end pt7
+ 3 *end interview
+ 6 *tropmi caves-1623/161/triassic/intrview
+ 6 *import caves-1623/161/triassic/fcr
+ 3 *begin fcr
+ 3 *end fcr
+ 6 *tropmi caves-1623/161/triassic/fcr
+ 6 *import caves-1623/161/triassic/chosspot
+ 3 *begin chosspot
+ 3 *end chosspot
+ 6 *tropmi caves-1623/161/triassic/chosspot
+ 6 *import caves-1623/161/triassic/henricat
+ 3 *begin henricat
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 3 *end henricat
+ 6 *tropmi caves-1623/161/triassic/henricat
+ 6 *import caves-1623/161/triassic/ovflow
+ 3 *begin Overflow
+ 3 *end Overflow
+ 6 *tropmi caves-1623/161/triassic/ovflow
+ 6 *import caves-1623/161/triassic/eaunat
+ 3 *begin EauNatLink
+ 3 *end EauNatLink
+ 3 *begin eaunat
+ 3 *end eaunat
+ 6 *tropmi caves-1623/161/triassic/eaunat
+ 6 *import caves-1623/161/triassic/scorchio
+ 3 *begin scorchio
+ 3 *end scorchio
+ 3 *begin lazio
+ 3 *end lazio
+ 3 *begin dynamo
+ 3 *end dynamo
+ 6 *tropmi caves-1623/161/triassic/scorchio
+ 5 *tropmi caves-1623/161/triassic/alltrias
+ 5 *import caves-1623/161/phumour/allphs
+ 6 *import caves-1623/161/phumour/thighs
+ 3 *begin thighs
+ 3 *end thighs
+ 6 *tropmi caves-1623/161/phumour/thighs
+ 6 *import caves-1623/161/phumour/venereal
+ 3 *begin venereal
+ 3 *end venereal
+ 6 *tropmi caves-1623/161/phumour/venereal
+ 6 *import caves-1623/161/phumour/natural
+ 3 *begin natural
+ 3 *end natural
+ 3 *begin dig90
+ 3 *end dig90
+ 3 *begin samfolly
+ 3 *end samfolly
+ 3 *begin folly
+ 3 *end folly
+ 6 *tropmi caves-1623/161/phumour/natural
+ 6 *import caves-1623/161/phumour/deadbats
+ 3 *begin deadbats
+ 3 *end deadbats
+ 3 *begin pfbypass
+ 3 *end pfbypass
+ 3 *begin brian
+ 3 *end brian
+ 3 *begin lyingdown
+ 3 *end lyingdown
+ 6 *tropmi caves-1623/161/phumour/deadbats
+ 6 *import caves-1623/161/phumour/loopy
+ 3 *begin loopy
+ 3 *end loopy
+ 3 *begin ftoloopy
+ 3 *end ftoloopy
+ 3 *begin crystalloops
+ 3 *end crystalloops
+ 3 *begin moreloopy
+ 3 *end moreloopy
+ 3 *begin vadose
+ 3 *end vadose
+ 6 *tropmi caves-1623/161/phumour/loopy
+ 6 *import caves-1623/161/phumour/catwoman
+ 3 *begin catwoman
+ 3 *end catwoman
+ 6 *tropmi caves-1623/161/phumour/catwoman
+ 6 *import caves-1623/161/phumour/wheretwb
+ 3 *begin wheretwb
+ 3 *end wheretwb
+ 6 *tropmi caves-1623/161/phumour/wheretwb
+ 6 *import caves-1623/161/phumour/asturias
+ 3 *begin asturias
+ 3 *end asturias
+ 6 *tropmi caves-1623/161/phumour/asturias
+ 6 *import caves-1623/161/phumour/catshfts
+ 3 *begin shafts1
+ 3 *end shafts1
+ 3 *begin shafts2
+ 3 *end shafts2
+ 6 *tropmi caves-1623/161/phumour/catshfts
+ 6 *import caves-1623/161/phumour/shaftmin
+ 3 *begin shaftmin
+ 3 *end shaftmin
+ 3 *begin spitbot
+ 3 *end spitbot
+ 6 *tropmi caves-1623/161/phumour/shaftmin
+ 6 *import caves-1623/161/phumour/pudding
+ 3 *begin pudding
+ 3 *end pudding
+ 6 *tropmi caves-1623/161/phumour/pudding
+ 6 *import caves-1623/161/phumour/iceland
+ 3 *begin iceland1
+ 3 *end iceland1
+ 3 *begin iceland2
+ 3 *end iceland2
+ 3 *begin iceland3
+ 3 *end iceland3
+ 3 *begin icelandpitch
+ 3 *end icelandpitch
+ 6 *tropmi caves-1623/161/phumour/iceland
+ 6 *import caves-1623/161/phumour/turkey
+ 3 *begin turkey
+ 3 *end turkey
+ 6 *tropmi caves-1623/161/phumour/turkey
+ 6 *import caves-1623/161/phumour/161g
+ 3 *begin 161g
+ 4 *begin 161g_1
+ 4 *end 161g_1
+ 4 *begin 161g_2
+ 4 *end 161g_2
+ 4 *begin 161g_3
+ 4 *end 161g_3
+ 3 *end 161g
+ 6 *tropmi caves-1623/161/phumour/161g
+ 6 *import caves-1623/161/phumour/161h
+ 3 *begin 161h
+ 3 *end 161h
+ 6 *tropmi caves-1623/161/phumour/161h
+ 5 *tropmi caves-1623/161/phumour/allphs
+ 2 *end 161
+ 4 *tropmi caves-1623/161/161
+ 4 *import caves-1623/204/204
+ 2 *begin 204
+ 3 *begin
+ 3 *end
+ 5 *import caves-1623/204/nearend/nearend
+ 3 *begin nearend
+ 6 *import caves-1623/204/nearend/ent
+ 4 *begin ent
+ 4 *end ent
+ 6 *tropmi caves-1623/204/nearend/ent
+ 6 *import caves-1623/204/nearend/link
+ 4 *begin link
+ 4 *end link
+ 6 *tropmi caves-1623/204/nearend/link
+ 6 *import caves-1623/204/nearend/junction
+ 4 *begin junction
+ 4 *end junction
+ 6 *tropmi caves-1623/204/nearend/junction
+ 6 *import caves-1623/204/nearend/updip
+ 4 *begin updip
+ 4 *end updip
+ 6 *tropmi caves-1623/204/nearend/updip
+ 6 *import caves-1623/204/nearend/stitchthis
+ 4 *begin stitchthis
+ 4 *end stitchthis
+ 6 *tropmi caves-1623/204/nearend/stitchthis
+ 6 *import caves-1623/204/nearend/kingcarbide
+ 4 *begin kingcarbide
+ 4 *end KingCarbide
+ 6 *tropmi caves-1623/204/nearend/kingcarbide
+ 6 *import caves-1623/204/nearend/kidney
+ 4 *begin kidney
+ 4 *end Kidney
+ 6 *tropmi caves-1623/204/nearend/kidney
+ 6 *import caves-1623/204/nearend/atob
+ 4 *begin atob
+ 5 *begin
+ 5 *end
+ 4 *end atob
+ 6 *tropmi caves-1623/204/nearend/atob
+ 6 *import caves-1623/204/nearend/deathglory
+ 4 *begin deathglory
+ 5 *begin
+ 5 *end
+ 5 *begin
+ 5 *end
+ 5 *begin
+ 5 *end
+ 4 *end deathglory
+ 6 *tropmi caves-1623/204/nearend/deathglory
+ 3 *end nearend
+ 5 *tropmi caves-1623/204/nearend/nearend
+ 5 *import caves-1623/204/midlevel/midlevel
+ 3 *begin midlevel
+ 6 *import caves-1623/204/midlevel/pendulum
+ 4 *begin pendulum
+ 4 *end pendulum
+ 6 *tropmi caves-1623/204/midlevel/pendulum
+ 6 *import caves-1623/204/midlevel/veined
+ 4 *begin veined
+ 4 *end veined
+ 6 *tropmi caves-1623/204/midlevel/veined
+ 6 *import caves-1623/204/midlevel/110aday
+ 4 *begin 110aday
+ 4 *end 110aday
+ 6 *tropmi caves-1623/204/midlevel/110aday
+ 6 *import caves-1623/204/midlevel/rainbow
+ 4 *begin rainbow
+ 4 *end rainbow
+ 6 *tropmi caves-1623/204/midlevel/rainbow
+ 6 *import caves-1623/204/midlevel/phreatic
+ 4 *begin phreatic
+ 4 *end phreatic
+ 6 *tropmi caves-1623/204/midlevel/phreatic
+ 6 *import caves-1623/204/midlevel/aday2bidet
+ 4 *begin aday2bidet
+ 4 *end aday2bidet
+ 6 *tropmi caves-1623/204/midlevel/aday2bidet
+ 6 *import caves-1623/204/midlevel/110_bidet_b
+ 4 *begin 110_bidet_b
+ 4 *end 110_bidet_b
+ 6 *tropmi caves-1623/204/midlevel/110_bidet_b
+ 6 *import caves-1623/204/midlevel/veined_deadend
+ 4 *begin veined_deadend
+ 4 *end veined_deadend
+ 6 *tropmi caves-1623/204/midlevel/veined_deadend
+ 6 *import caves-1623/204/midlevel/110_bidet
+ 4 *begin 110_bidet
+ 4 *end 110_bidet
+ 6 *tropmi caves-1623/204/midlevel/110_bidet
+ 6 *import caves-1623/204/midlevel/marble_run
+ 4 *begin marble_run
+ 4 *end marble_run
+ 6 *tropmi caves-1623/204/midlevel/marble_run
+ 6 *import caves-1623/204/midlevel/botofwolpertinger1
+ 4 *begin botofwolpertinger1
+ 4 *end botofwolpertinger1
+ 6 *tropmi caves-1623/204/midlevel/botofwolpertinger1
+ 6 *import caves-1623/204/midlevel/botofwolpertinger2
+ 4 *begin botofwolpertinger2
+ 4 *end botofwolpertinger2
+ 6 *tropmi caves-1623/204/midlevel/botofwolpertinger2
+ 6 *import caves-1623/204/midlevel/merry
+ 4 *begin merry
+ 4 *end merry
+ 4 *begin merry2
+ 4 *end merry2
+ 6 *tropmi caves-1623/204/midlevel/merry
+ 6 *import caves-1623/204/midlevel/recycled
+ 4 *begin recycled
+ 4 *end recycled
+ 6 *tropmi caves-1623/204/midlevel/recycled
+ 6 *import caves-1623/204/midlevel/upat45deg
+ 4 *begin upat45deg
+ 4 *end upat45deg
+ 6 *tropmi caves-1623/204/midlevel/upat45deg
+ 6 *import caves-1623/204/midlevel/110aday2
+ 4 *begin 110aday2
+ 4 *end 110aday2
+ 6 *tropmi caves-1623/204/midlevel/110aday2
+ 6 *import caves-1623/204/midlevel/upat45deg2
+ 4 *begin upat45deg2
+ 4 *end upat45deg2
+ 6 *tropmi caves-1623/204/midlevel/upat45deg2
+ 6 *import caves-1623/204/midlevel/pussyprance
+ 4 *begin pussyprance
+ 4 *end pussyprance
+ 6 *tropmi caves-1623/204/midlevel/pussyprance
+ 6 *import caves-1623/204/midlevel/pussyprance2
+ 4 *begin pussyprance2
+ 4 *end pussyprance2
+ 6 *tropmi caves-1623/204/midlevel/pussyprance2
+ 6 *import caves-1623/204/midlevel/catflap
+ 4 *begin catflap
+ 4 *end catflap
+ 6 *tropmi caves-1623/204/midlevel/catflap
+ 6 *import caves-1623/204/midlevel/catflap2
+ 4 *begin catflap2
+ 4 *end catflap2
+ 6 *tropmi caves-1623/204/midlevel/catflap2
+ 6 *import caves-1623/204/midlevel/catflap3
+ 4 *begin catflap3
+ 4 *end catflap3
+ 6 *tropmi caves-1623/204/midlevel/catflap3
+ 6 *import caves-1623/204/midlevel/paintedlady
+ 4 *begin paintedlady
+ 4 *end paintedlady
+ 6 *tropmi caves-1623/204/midlevel/paintedlady
+ 6 *import caves-1623/204/midlevel/pussinbolts
+ 4 *begin pussinbolts
+ 4 *end pussinbolts
+ 6 *tropmi caves-1623/204/midlevel/pussinbolts
+ 6 *import caves-1623/204/midlevel/ontheprowl
+ 4 *begin ontheprowl
+ 4 *end ontheprowl
+ 6 *tropmi caves-1623/204/midlevel/ontheprowl
+ 6 *import caves-1623/204/midlevel/snowleopard
+ 4 *begin snowleopard
+ 4 *end snowleopard
+ 6 *tropmi caves-1623/204/midlevel/snowleopard
+ 6 *import caves-1623/204/midlevel/theowlandthepussycat
+ 4 *begin theowlandthepussycat
+ 4 *end theowlandthepussycat
+ 6 *tropmi caves-1623/204/midlevel/theowlandthepussycat
+ 6 *import caves-1623/204/midlevel/fatcat
+ 4 *begin fatcat
+ 4 *end fatcat
+ 6 *tropmi caves-1623/204/midlevel/fatcat
+ 6 *import caves-1623/204/midlevel/fatcat2
+ 4 *begin fatcat2
+ 4 *end fatcat2
+ 6 *tropmi caves-1623/204/midlevel/fatcat2
+ 6 *import caves-1623/204/midlevel/fatcat3
+ 4 *begin fatcat3
+ 4 *end fatcat3
+ 6 *tropmi caves-1623/204/midlevel/fatcat3
+ 6 *import caves-1623/204/midlevel/somethingelse
+ 7 *import caves-1623/204/midlevel/catgut
+ 4 *begin catgut
+ 4 *end catgut
+ 7 *tropmi caves-1623/204/midlevel/catgut
+ 7 *import caves-1623/204/midlevel/cirquedusoleil
+ 4 *begin CirqueDuSoleil
+ 4 *end CirqueDuSoleil
+ 7 *tropmi caves-1623/204/midlevel/cirquedusoleil
+ 7 *import caves-1623/204/midlevel/pussyriot
+ 4 *begin pussyriot
+ 4 *end pussyriot
+ 7 *tropmi caves-1623/204/midlevel/pussyriot
+ 6 *tropmi caves-1623/204/midlevel/somethingelse
+ 6 *import caves-1623/204/midlevel/phat2
+ 4 *begin phat2
+ 4 *end phat2
+ 6 *tropmi caves-1623/204/midlevel/phat2
+ 6 *import caves-1623/204/midlevel/catflea
+ 4 *begin catflea
+ 4 *end catflea
+ 6 *tropmi caves-1623/204/midlevel/catflea
+ 6 *import caves-1623/204/midlevel/dogdays
+ 4 *begin dogdays
+ 4 *end dogdays
+ 6 *tropmi caves-1623/204/midlevel/dogdays
+ 6 *import caves-1623/204/midlevel/dogdays2
+ 4 *begin dogdays2
+ 4 *end dogdays2
+ 6 *tropmi caves-1623/204/midlevel/dogdays2
+ 6 *import caves-1623/204/midlevel/farfromsupport
+ 4 *begin farfromsupport
+ 4 *end farfromsupport
+ 6 *tropmi caves-1623/204/midlevel/farfromsupport
+ 6 *import caves-1623/204/midlevel/dogdays3
+ 4 *begin dogdays3
+ 4 *end dogdays3
+ 6 *tropmi caves-1623/204/midlevel/dogdays3
+ 6 *import caves-1623/204/midlevel/bigboulders
+ 4 *begin bigboulders
+ 4 *end bigboulders
+ 6 *tropmi caves-1623/204/midlevel/bigboulders
+ 6 *import caves-1623/204/midlevel/BoulderChamber
+ 4 *begin BoulderChamber
+ 4 *end BoulderChamber
+ 6 *tropmi caves-1623/204/midlevel/BoulderChamber
+ 6 *import caves-1623/204/midlevel/BoulderChamber_upper
+ 4 *begin BoulderChamber_upper
+ 4 *end BoulderChamber_upper
+ 6 *tropmi caves-1623/204/midlevel/BoulderChamber_upper
+ 6 *import caves-1623/204/midlevel/downfrombigboulderchamber
+ 4 *begin downfrombigboulderchamber
+ 4 *end downfrombigboulderchamber
+ 6 *tropmi caves-1623/204/midlevel/downfrombigboulderchamber
+ 6 *import caves-1623/204/midlevel/pretzelpassage1
+ 4 *begin pretzelpassage1
+ 4 *end pretzelpassage1
+ 6 *tropmi caves-1623/204/midlevel/pretzelpassage1
+ 6 *import caves-1623/204/midlevel/pretzelpassage2
+ 4 *begin pretzelpassage2
+ 4 *end pretzelpassage2
+ 6 *tropmi caves-1623/204/midlevel/pretzelpassage2
+ 3 *end midlevel
+ 5 *tropmi caves-1623/204/midlevel/midlevel
+ 5 *import caves-1623/204/domes/domes
+ 3 *begin domes
+ 6 *import caves-1623/204/domes/millennium
+ 4 *begin millennium
+ 4 *end millennium
+ 6 *tropmi caves-1623/204/domes/millennium
+ 6 *import caves-1623/204/domes/pleasuredome
+ 4 *begin pleasuredome
+ 4 *end pleasuredome
+ 6 *tropmi caves-1623/204/domes/pleasuredome
+ 6 *import caves-1623/204/domes/loop22
+ 4 *begin loop22
+ 4 *end loop22
+ 6 *tropmi caves-1623/204/domes/loop22
+ 6 *import caves-1623/204/domes/phat
+ 4 *begin phat
+ 4 *end phat
+ 6 *tropmi caves-1623/204/domes/phat
+ 6 *import caves-1623/204/domes/micturation
+ 4 *begin micturation
+ 4 *end micturation
+ 6 *tropmi caves-1623/204/domes/micturation
+ 6 *import caves-1623/204/domes/obese
+ 4 *begin obese
+ 4 *end obese
+ 6 *tropmi caves-1623/204/domes/obese
+ 6 *import caves-1623/204/domes/allroads
+ 4 *begin allroads
+ 4 *end allroads
+ 6 *tropmi caves-1623/204/domes/allroads
+ 3 *end domes
+ 5 *tropmi caves-1623/204/domes/domes
+ 5 *import caves-1623/204/deepsouth/deepsouth
+ 3 *begin deepsouth
+ 6 *import caves-1623/204/deepsouth/ariston1
+ 4 *begin ariston1
+ 4 *end ariston1
+ 6 *tropmi caves-1623/204/deepsouth/ariston1
+ 6 *import caves-1623/204/deepsouth/ariston2
+ 4 *begin ariston2
+ 4 *end ariston2
+ 6 *tropmi caves-1623/204/deepsouth/ariston2
+ 6 *import caves-1623/204/deepsouth/fledermaus
+ 4 *begin fledermaus
+ 4 *end fledermaus
+ 6 *tropmi caves-1623/204/deepsouth/fledermaus
+ 6 *import caves-1623/204/deepsouth/kiwisuit
+ 4 *begin kiwisuit
+ 4 *end kiwisuit
+ 6 *tropmi caves-1623/204/deepsouth/kiwisuit
+ 6 *import caves-1623/204/deepsouth/razor1
+ 4 *begin razor1
+ 4 *end razor1
+ 6 *tropmi caves-1623/204/deepsouth/razor1
+ 6 *import caves-1623/204/deepsouth/razor2
+ 4 *begin razor2
+ 4 *end razor2
+ 6 *tropmi caves-1623/204/deepsouth/razor2
+ 6 *import caves-1623/204/deepsouth/razor3
+ 4 *begin razor3
+ 4 *end razor3
+ 6 *tropmi caves-1623/204/deepsouth/razor3
+ 6 *import caves-1623/204/deepsouth/razor4
+ 4 *begin razor4
+ 4 *end razor4
+ 6 *tropmi caves-1623/204/deepsouth/razor4
+ 6 *import caves-1623/204/deepsouth/razor5
+ 4 *begin razor5
+ 4 *end razor5
+ 6 *tropmi caves-1623/204/deepsouth/razor5
+ 6 *import caves-1623/204/deepsouth/razor6
+ 4 *begin razor6
+ 4 *end razor6
+ 6 *tropmi caves-1623/204/deepsouth/razor6
+ 6 *import caves-1623/204/deepsouth/razor7
+ 4 *begin razor7
+ 4 *end razor7
+ 6 *tropmi caves-1623/204/deepsouth/razor7
+ 6 *import caves-1623/204/deepsouth/razor8
+ 4 *begin razor8
+ 4 *end razor8
+ 6 *tropmi caves-1623/204/deepsouth/razor8
+ 6 *import caves-1623/204/deepsouth/razor9
+ 4 *begin razor9
+ 4 *end razor9
+ 6 *tropmi caves-1623/204/deepsouth/razor9
+ 6 *import caves-1623/204/deepsouth/razor10
+ 4 *begin razor10
+ 4 *end razor10
+ 6 *tropmi caves-1623/204/deepsouth/razor10
+ 6 *import caves-1623/204/deepsouth/razor11
+ 4 *begin razor11
+ 4 *end razor11
+ 6 *tropmi caves-1623/204/deepsouth/razor11
+ 6 *import caves-1623/204/deepsouth/razor12
+ 4 *begin razor12
+ 4 *end razor12
+ 6 *tropmi caves-1623/204/deepsouth/razor12
+ 6 *import caves-1623/204/deepsouth/silkroad
+ 4 *begin silkroad
+ 4 *end silkroad
+ 6 *tropmi caves-1623/204/deepsouth/silkroad
+ 6 *import caves-1623/204/deepsouth/silkroad2
+ 4 *begin silkroad2
+ 4 *end silkroad2
+ 6 *tropmi caves-1623/204/deepsouth/silkroad2
+ 6 *import caves-1623/204/deepsouth/entertheflagon
+ 4 *begin entertheflagon
+ 4 *end entertheflagon
+ 6 *tropmi caves-1623/204/deepsouth/entertheflagon
+ 6 *import caves-1623/204/deepsouth/silkworm
+ 4 *begin silkworm
+ 4 *end silkworm
+ 6 *tropmi caves-1623/204/deepsouth/silkworm
+ 6 *import caves-1623/204/deepsouth/crouching
+ 4 *begin crouching
+ 4 *end crouching
+ 6 *tropmi caves-1623/204/deepsouth/crouching
+ 3 *end deepsouth
+ 5 *tropmi caves-1623/204/deepsouth/deepsouth
+ 5 *import caves-1623/204/trunk/trunk
+ 3 *begin trunk
+ 6 *import caves-1623/204/trunk/nopainnogain
+ 4 *begin nopainnogain
+ 4 *end nopainnogain
+ 6 *tropmi caves-1623/204/trunk/nopainnogain
+ 6 *import caves-1623/204/trunk/insig
+ 4 *begin insig
+ 4 *end insig
+ 6 *tropmi caves-1623/204/trunk/insig
+ 6 *import caves-1623/204/trunk/bonsai
+ 4 *begin bonsai
+ 4 *end bonsai
+ 6 *tropmi caves-1623/204/trunk/bonsai
+ 6 *import caves-1623/204/trunk/treeumphant
+ 4 *begin treeumphant
+ 4 *end treeumphant
+ 6 *tropmi caves-1623/204/trunk/treeumphant
+ 6 *import caves-1623/204/trunk/colonade
+ 4 *begin colonade
+ 4 *end colonade
+ 6 *tropmi caves-1623/204/trunk/colonade
+ 6 *import caves-1623/204/trunk/scroat
+ 4 *begin scroat
+ 4 *end scroat
+ 6 *tropmi caves-1623/204/trunk/scroat
+ 6 *import caves-1623/204/trunk/crowningglory
+ 4 *begin crowningglory
+ 4 *end crowningglory
+ 6 *tropmi caves-1623/204/trunk/crowningglory
+ 6 *import caves-1623/204/trunk/sucker
+ 4 *begin sucker
+ 4 *end sucker
+ 6 *tropmi caves-1623/204/trunk/sucker
+ 6 *import caves-1623/204/trunk/csballs
+ 4 *begin csballs
+ 4 *end csballs
+ 6 *tropmi caves-1623/204/trunk/csballs
+ 6 *import caves-1623/204/trunk/moreballs
+ 4 *begin moreballs
+ 4 *end moreballs
+ 6 *tropmi caves-1623/204/trunk/moreballs
+ 6 *import caves-1623/204/trunk/backpassage
+ 4 *begin backpassage
+ 4 *end backpassage
+ 6 *tropmi caves-1623/204/trunk/backpassage
+ 6 *import caves-1623/204/trunk/treeslope
+ 4 *begin treeslope
+ 4 *end treeslope
+ 6 *tropmi caves-1623/204/trunk/treeslope
+ 6 *import caves-1623/204/trunk/tree15c
+ 4 *begin tree15c
+ 4 *end tree15c
+ 6 *tropmi caves-1623/204/trunk/tree15c
+ 6 *import caves-1623/204/trunk/helterskelter
+ 4 *begin helterskelter
+ 4 *end helterskelter
+ 6 *tropmi caves-1623/204/trunk/helterskelter
+ 6 *import caves-1623/204/trunk/gknodel
+ 4 *begin gknodel
+ 5 *begin part1
+ 5 *end part1
+ 5 *begin part2
+ 5 *end part2
+ 4 *end gknodel
+ 6 *tropmi caves-1623/204/trunk/gknodel
+ 6 *import caves-1623/204/trunk/drillingdelight
+ 4 *begin drillingdelight
+ 4 *end drillingdelight
+ 6 *tropmi caves-1623/204/trunk/drillingdelight
+ 6 *import caves-1623/204/trunk/insig2
+ 4 *begin insig2
+ 4 *end insig2
+ 6 *tropmi caves-1623/204/trunk/insig2
+ 6 *import caves-1623/204/trunk/flopsy
+ 4 *begin flopsy
+ 4 *end flopsy
+ 6 *tropmi caves-1623/204/trunk/flopsy
+ 6 *import caves-1623/204/trunk/greatoak
+ 4 *begin greatoak
+ 4 *end greatoak
+ 6 *tropmi caves-1623/204/trunk/greatoak
+ 6 *import caves-1623/204/trunk/tree2glory
+ 4 *begin tree2glory
+ 4 *end tree2glory
+ 6 *tropmi caves-1623/204/trunk/tree2glory
+ 6 *import caves-1623/204/trunk/sandpit
+ 4 *begin sandpit
+ 4 *end sandpit
+ 6 *tropmi caves-1623/204/trunk/sandpit
+ 6 *import caves-1623/204/trunk/helterdig
+ 4 *begin helterdig
+ 4 *end helterdig
+ 6 *tropmi caves-1623/204/trunk/helterdig
+ 6 *import caves-1623/204/trunk/dontstep
+ 4 *begin dontstep
+ 5 *begin
+ 5 *end
+ 4 *end dontstep
+ 6 *tropmi caves-1623/204/trunk/dontstep
+ 6 *import caves-1623/204/trunk/insig2rhino
+ 4 *begin insig2rhino
+ 4 *end insig2rhino
+ 6 *tropmi caves-1623/204/trunk/insig2rhino
+ 6 *import caves-1623/204/trunk/twiglets
+ 4 *begin twiglets
+ 4 *end twiglets
+ 6 *tropmi caves-1623/204/trunk/twiglets
+ 6 *import caves-1623/204/trunk/stageleft
+ 4 *begin stageleft
+ 4 *end stageleft
+ 6 *tropmi caves-1623/204/trunk/stageleft
+ 6 *import caves-1623/204/trunk/goesser
+ 4 *begin goesser
+ 4 *end goesser
+ 6 *tropmi caves-1623/204/trunk/goesser
+ 6 *import caves-1623/204/trunk/greatoak2
+ 4 *begin greatoak2
+ 4 *end greatoak2
+ 6 *tropmi caves-1623/204/trunk/greatoak2
+ 6 *import caves-1623/204/trunk/riverdance
+ 4 *begin riverdance
+ 4 *end riverdance
+ 6 *tropmi caves-1623/204/trunk/riverdance
+ 6 *import caves-1623/204/trunk/riverdance2
+ 4 *begin riverdance2
+ 4 *end riverdance2
+ 6 *tropmi caves-1623/204/trunk/riverdance2
+ 6 *import caves-1623/204/trunk/riverdance3
+ 4 *begin riverdance3
+ 4 *end riverdance3
+ 6 *tropmi caves-1623/204/trunk/riverdance3
+ 6 *import caves-1623/204/trunk/fingerbang
+ 4 *begin fingerbang
+ 4 *end fingerbang
+ 6 *tropmi caves-1623/204/trunk/fingerbang
+ 6 *import caves-1623/204/trunk/fblink
+ 4 *begin fblink
+ 4 *end fblink
+ 6 *tropmi caves-1623/204/trunk/fblink
+ 6 *import caves-1623/204/trunk/dutchelm
+ 4 *begin dutchelm
+ 4 *end dutchelm
+ 6 *tropmi caves-1623/204/trunk/dutchelm
+ 6 *import caves-1623/204/trunk/dutchelm2
+ 4 *begin dutchelm2
+ 4 *end dutchelm2
+ 6 *tropmi caves-1623/204/trunk/dutchelm2
+ 6 *import caves-1623/204/trunk/wotnosurvey
+ 4 *begin wotnosurvey
+ 5 *begin
+ 5 *end
+ 5 *begin
+ 5 *end
+ 4 *end wotnosurvey
+ 6 *tropmi caves-1623/204/trunk/wotnosurvey
+ 6 *import caves-1623/204/trunk/goesser2
+ 4 *begin goesser2
+ 4 *end goesser2
+ 6 *tropmi caves-1623/204/trunk/goesser2
+ 6 *import caves-1623/204/trunk/crowningglory2
+ 4 *begin crowningglory2
+ 4 *end crowningglory2
+ 6 *tropmi caves-1623/204/trunk/crowningglory2
+ 6 *import caves-1623/204/trunk/crowningglory3
+ 4 *begin crowningglory3
+ 4 *end crowningglory3
+ 6 *tropmi caves-1623/204/trunk/crowningglory3
+ 6 *import caves-1623/204/trunk/11sr
+ 4 *begin 11sr
+ 4 *end 11sr
+ 6 *tropmi caves-1623/204/trunk/11sr
+ 6 *import caves-1623/204/trunk/swisscheese
+ 4 *begin swisscheese
+ 4 *end swisscheese
+ 6 *tropmi caves-1623/204/trunk/swisscheese
+ 6 *import caves-1623/204/trunk/wetdry
+ 4 *begin wetdry
+ 4 *end wetdry
+ 6 *tropmi caves-1623/204/trunk/wetdry
+ 6 *import caves-1623/204/trunk/goesser3
+ 4 *begin goesser3
+ 4 *end goesser3
+ 6 *tropmi caves-1623/204/trunk/goesser3
+ 6 *import caves-1623/204/trunk/godonlyknows
+ 4 *begin godonlyknows
+ 4 *end godonlyknows
+ 6 *tropmi caves-1623/204/trunk/godonlyknows
+ 6 *import caves-1623/204/trunk/goodvibrations
+ 4 *begin goodvibrations
+ 4 *end goodvibrations
+ 6 *tropmi caves-1623/204/trunk/goodvibrations
+ 6 *import caves-1623/204/trunk/sandpit2
+ 4 *begin sandpit2
+ 4 *end sandpit2
+ 6 *tropmi caves-1623/204/trunk/sandpit2
+ 6 *import caves-1623/204/trunk/pingu
+ 4 *begin pingu
+ 4 *end pingu
+ 6 *tropmi caves-1623/204/trunk/pingu
+ 6 *import caves-1623/204/trunk/noodnoodles
+ 4 *begin noodnoodles
+ 4 *end noodnoodles
+ 6 *tropmi caves-1623/204/trunk/noodnoodles
+ 6 *import caves-1623/204/trunk/sandpit3
+ 4 *begin sandpit3
+ 4 *end sandpit3
+ 6 *tropmi caves-1623/204/trunk/sandpit3
+ 6 *import caves-1623/204/trunk/pingu2
+ 4 *begin pingu2
+ 4 *end pingu2
+ 6 *tropmi caves-1623/204/trunk/pingu2
+ 6 *import caves-1623/204/trunk/pingu3
+ 4 *begin pingu3
+ 4 *end pingu3
+ 6 *tropmi caves-1623/204/trunk/pingu3
+ 6 *import caves-1623/204/trunk/appendix
+ 4 *begin appendix
+ 4 *end appendix
+ 6 *tropmi caves-1623/204/trunk/appendix
+ 6 *import caves-1623/204/trunk/root
+ 4 *begin root
+ 4 *end root
+ 6 *tropmi caves-1623/204/trunk/root
+ 3 *end trunk
+ 5 *tropmi caves-1623/204/trunk/trunk
+ 5 *import caves-1623/204/swings/allswings
+ 3 *begin allswings
+ 6 *import caves-1623/204/swings/playground
+ 4 *begin playground
+ 4 *end playground
+ 6 *tropmi caves-1623/204/swings/playground
+ 6 *import caves-1623/204/swings/swings
+ 4 *begin swings
+ 4 *end swings
+ 6 *tropmi caves-1623/204/swings/swings
+ 6 *import caves-1623/204/swings/swings2
+ 4 *begin swings2
+ 4 *end swings2
+ 6 *tropmi caves-1623/204/swings/swings2
+ 6 *import caves-1623/204/swings/swings3
+ 4 *begin swings3
+ 4 *end swings3
+ 6 *tropmi caves-1623/204/swings/swings3
+ 6 *import caves-1623/204/swings/swings4
+ 4 *begin swings4
+ 4 *end swings4
+ 6 *tropmi caves-1623/204/swings/swings4
+ 6 *import caves-1623/204/swings/swings5
+ 4 *begin swings5
+ 4 *end swings5
+ 6 *tropmi caves-1623/204/swings/swings5
+ 6 *import caves-1623/204/swings/swings6
+ 4 *begin swings6
+ 4 *end swings6
+ 6 *tropmi caves-1623/204/swings/swings6
+ 6 *import caves-1623/204/swings/swings7
+ 4 *begin swings7
+ 4 *end swings7
+ 6 *tropmi caves-1623/204/swings/swings7
+ 6 *import caves-1623/204/swings/swings8
+ 4 *begin swings8
+ 4 *end swings8
+ 6 *tropmi caves-1623/204/swings/swings8
+ 6 *import caves-1623/204/swings/swings9
+ 4 *begin swings9
+ 4 *end swings9
+ 6 *tropmi caves-1623/204/swings/swings9
+ 6 *import caves-1623/204/swings/prettybits
+ 4 *begin prettybits
+ 4 *end prettybits
+ 6 *tropmi caves-1623/204/swings/prettybits
+ 6 *import caves-1623/204/swings/juicybits
+ 4 *begin juicybits
+ 4 *end juicybits
+ 6 *tropmi caves-1623/204/swings/juicybits
+ 6 *import caves-1623/204/swings/merrygoround
+ 4 *begin merrygoround
+ 4 *end merrygoround
+ 6 *tropmi caves-1623/204/swings/merrygoround
+ 6 *import caves-1623/204/swings/merrygoround2
+ 4 *begin merrygoround2
+ 4 *end merrygoround2
+ 6 *tropmi caves-1623/204/swings/merrygoround2
+ 6 *import caves-1623/204/swings/merrygoround3
+ 4 *begin merrygoround3
+ 4 *end merrygoround3
+ 6 *tropmi caves-1623/204/swings/merrygoround3
+ 6 *import caves-1623/204/swings/ermintrude
+ 4 *begin ermintrude
+ 4 *end ermintrude
+ 6 *tropmi caves-1623/204/swings/ermintrude
+ 6 *import caves-1623/204/swings/trapeze
+ 4 *begin trapeze
+ 4 *end trapeze
+ 6 *tropmi caves-1623/204/swings/trapeze
+ 6 *import caves-1623/204/swings/crestarun
+ 4 *begin crestarun
+ 4 *end crestarun
+ 6 *tropmi caves-1623/204/swings/crestarun
+ 6 *import caves-1623/204/swings/piledriver
+ 4 *begin piledriver
+ 4 *end piledriver
+ 6 *tropmi caves-1623/204/swings/piledriver
+ 6 *import caves-1623/204/swings/toothless
+ 4 *begin toothless
+ 4 *end toothless
+ 6 *tropmi caves-1623/204/swings/toothless
+ 6 *import caves-1623/204/swings/highhopes
+ 4 *begin highhopes
+ 4 *end highhopes
+ 6 *tropmi caves-1623/204/swings/highhopes
+ 6 *import caves-1623/204/swings/highhopes2
+ 4 *begin highhopes2
+ 4 *end highhopes2
+ 6 *tropmi caves-1623/204/swings/highhopes2
+ 6 *import caves-1623/204/swings/highhopeslink
+ 4 *begin highhopeslink
+ 4 *end highhopeslink
+ 6 *tropmi caves-1623/204/swings/highhopeslink
+ 6 *import caves-1623/204/swings/highhopes3
+ 4 *begin highhopes3
+ 4 *end highhopes3
+ 6 *tropmi caves-1623/204/swings/highhopes3
+ 6 *import caves-1623/204/swings/enth
+ 4 *begin enth
+ 4 *end enth
+ 6 *tropmi caves-1623/204/swings/enth
+ 6 *import caves-1623/204/swings/enti
+ 4 *begin enti
+ 5 *begin
+ 5 *end
+ 4 *end enti
+ 6 *tropmi caves-1623/204/swings/enti
+ 6 *import caves-1623/204/swings/ermintrude2
+ 4 *begin ermintrude2
+ 4 *end ermintrude2
+ 6 *tropmi caves-1623/204/swings/ermintrude2
+ 6 *import caves-1623/204/swings/entg
+ 4 *begin entg
+ 4 *end entg
+ 6 *tropmi caves-1623/204/swings/entg
+ 6 *import caves-1623/204/swings/ubantu
+ 4 *begin ubantu
+ 4 *end ubantu
+ 6 *tropmi caves-1623/204/swings/ubantu
+ 6 *import caves-1623/204/swings/ubantu2
+ 4 *begin ubantu2
+ 4 *end ubantu2
+ 6 *tropmi caves-1623/204/swings/ubantu2
+ 6 *import caves-1623/204/swings/zebedee
+ 4 *begin zebedee
+ 4 *end zebedee
+ 6 *tropmi caves-1623/204/swings/zebedee
+ 6 *import caves-1623/204/swings/ubantu3
+ 4 *begin ubantu3
+ 4 *end ubantu3
+ 6 *tropmi caves-1623/204/swings/ubantu3
+ 6 *import caves-1623/204/swings/ubantu4
+ 4 *begin ubantu4
+ 4 *end ubantu4
+ 6 *tropmi caves-1623/204/swings/ubantu4
+ 6 *import caves-1623/204/swings/05-9cQMkilling
+ 4 *begin 05-9cQMkilling
+ 4 *end 05-9cQMkilling
+ 6 *tropmi caves-1623/204/swings/05-9cQMkilling
+ 6 *import caves-1623/204/swings/ubantu5
+ 4 *begin ubantu5
+ 4 *end ubantu5
+ 6 *tropmi caves-1623/204/swings/ubantu5
+ 3 *end allswings
+ 5 *tropmi caves-1623/204/swings/allswings
+ 5 *import caves-1623/204/gaffered/allgaffered
+ 3 *begin allgaffered
+ 6 *import caves-1623/204/gaffered/plan
+ 4 *begin plan
+ 4 *end plan
+ 6 *tropmi caves-1623/204/gaffered/plan
+ 6 *import caves-1623/204/gaffered/not
+ 4 *begin not
+ 4 *end not
+ 6 *tropmi caves-1623/204/gaffered/not
+ 6 *import caves-1623/204/gaffered/interesting
+ 4 *begin interesting
+ 4 *end interesting
+ 6 *tropmi caves-1623/204/gaffered/interesting
+ 6 *import caves-1623/204/gaffered/trihang
+ 4 *begin trihang
+ 4 *end trihang
+ 6 *tropmi caves-1623/204/gaffered/trihang
+ 6 *import caves-1623/204/gaffered/eeyore
+ 4 *begin eeyore
+ 4 *end eeyore
+ 6 *tropmi caves-1623/204/gaffered/eeyore
+ 6 *import caves-1623/204/gaffered/poohstyx
+ 4 *begin poohstyx
+ 4 *end poohstyx
+ 6 *tropmi caves-1623/204/gaffered/poohstyx
+ 6 *import caves-1623/204/gaffered/sirens
+ 4 *begin sirens
+ 4 *end sirens
+ 6 *tropmi caves-1623/204/gaffered/sirens
+ 6 *import caves-1623/204/gaffered/sirens2
+ 4 *begin sirens2
+ 4 *end sirens2
+ 6 *tropmi caves-1623/204/gaffered/sirens2
+ 6 *import caves-1623/204/gaffered/kanga
+ 4 *begin kanga
+ 4 *end kanga
+ 6 *tropmi caves-1623/204/gaffered/kanga
+ 6 *import caves-1623/204/gaffered/mudslope
+ 4 *begin mudslope
+ 4 *end mudslope
+ 6 *tropmi caves-1623/204/gaffered/mudslope
+ 6 *import caves-1623/204/gaffered/gardenersworld
+ 4 *begin gardenersworld
+ 4 *end gardenersworld
+ 6 *tropmi caves-1623/204/gaffered/gardenersworld
+ 6 *import caves-1623/204/gaffered/uppertube
+ 4 *begin uppertube
+ 4 *end uppertube
+ 6 *tropmi caves-1623/204/gaffered/uppertube
+ 6 *import caves-1623/204/gaffered/terrafirma
+ 4 *begin terrafirma
+ 4 *end terrafirma
+ 6 *tropmi caves-1623/204/gaffered/terrafirma
+ 6 *import caves-1623/204/gaffered/oxtailoxbow
+ 4 *begin oxtailoxbow
+ 4 *end oxtailoxbow
+ 6 *tropmi caves-1623/204/gaffered/oxtailoxbow
+ 6 *import caves-1623/204/gaffered/blackmaria
+ 4 *begin blackmaria
+ 4 *end blackmaria
+ 6 *tropmi caves-1623/204/gaffered/blackmaria
+ 6 *import caves-1623/204/gaffered/poohstyx2
+ 4 *begin poohstyx2
+ 4 *end poohstyx2
+ 6 *tropmi caves-1623/204/gaffered/poohstyx2
+ 6 *import caves-1623/204/gaffered/shprinkles
+ 4 *begin shprinkles
+ 4 *end shprinkles
+ 6 *tropmi caves-1623/204/gaffered/shprinkles
+ 6 *import caves-1623/204/gaffered/dangly
+ 4 *begin dangly
+ 4 *end dangly
+ 6 *tropmi caves-1623/204/gaffered/dangly
+ 6 *import caves-1623/204/gaffered/slimy1
+ 4 *begin slimy1
+ 4 *end slimy1
+ 6 *tropmi caves-1623/204/gaffered/slimy1
+ 6 *import caves-1623/204/gaffered/dangerous
+ 4 *begin dangerous
+ 4 *end dangerous
+ 6 *tropmi caves-1623/204/gaffered/dangerous
+ 6 *import caves-1623/204/gaffered/slimy2
+ 4 *begin slimy2
+ 4 *end slimy2
+ 6 *tropmi caves-1623/204/gaffered/slimy2
+ 3 *end allgaffered
+ 5 *tropmi caves-1623/204/gaffered/allgaffered
+ 5 *import caves-1623/204/rhino/allrhino
+ 3 *begin allrhino
+ 6 *import caves-1623/204/rhino/21boltsalute
+ 4 *begin 21boltsalute
+ 4 *end 21boltsalute
+ 6 *tropmi caves-1623/204/rhino/21boltsalute
+ 6 *import caves-1623/204/rhino/rhinorift
+ 4 *begin rhinorift
+ 4 *end rhinorift
+ 6 *tropmi caves-1623/204/rhino/rhinorift
+ 6 *import caves-1623/204/rhino/onamission
+ 4 *begin onamission
+ 4 *end onamission
+ 6 *tropmi caves-1623/204/rhino/onamission
+ 6 *import caves-1623/204/rhino/watnobutcombe
+ 4 *begin watnobutcombe
+ 4 *end watnobutcombe
+ 6 *tropmi caves-1623/204/rhino/watnobutcombe
+ 6 *import caves-1623/204/rhino/rhinorift2
+ 4 *begin rhinorift2
+ 4 *end rhinorift2
+ 6 *tropmi caves-1623/204/rhino/rhinorift2
+ 6 *import caves-1623/204/rhino/ratbiscuit
+ 4 *begin ratbiscuit
+ 4 *end ratbiscuit
+ 6 *tropmi caves-1623/204/rhino/ratbiscuit
+ 6 *import caves-1623/204/rhino/crimper
+ 4 *begin crimper
+ 4 *end crimper
+ 6 *tropmi caves-1623/204/rhino/crimper
+ 6 *import caves-1623/204/rhino/swallowhard
+ 4 *begin swallowhard
+ 4 *end swallowhard
+ 6 *tropmi caves-1623/204/rhino/swallowhard
+ 6 *import caves-1623/204/rhino/takingthepiss
+ 4 *begin takingthepiss
+ 4 *end takingthepiss
+ 6 *tropmi caves-1623/204/rhino/takingthepiss
+ 6 *import caves-1623/204/rhino/rhinorift3
+ 4 *begin rhinorift3
+ 4 *end rhinorift3
+ 6 *tropmi caves-1623/204/rhino/rhinorift3
+ 6 *import caves-1623/204/rhino/unconformity
+ 4 *begin unconformity
+ 4 *end unconformity
+ 6 *tropmi caves-1623/204/rhino/unconformity
+ 6 *import caves-1623/204/rhino/unconformity2
+ 4 *begin unconformity2
+ 4 *end unconformity2
+ 6 *tropmi caves-1623/204/rhino/unconformity2
+ 6 *import caves-1623/204/rhino/belief
+ 4 *begin belief
+ 4 *end belief
+ 6 *tropmi caves-1623/204/rhino/belief
+ 6 *import caves-1623/204/rhino/onamission2
+ 4 *begin onamission2
+ 4 *end onamission2
+ 6 *tropmi caves-1623/204/rhino/onamission2
+ 6 *import caves-1623/204/rhino/onamission3
+ 4 *begin onamission3
+ 4 *end onamission3
+ 6 *tropmi caves-1623/204/rhino/onamission3
+ 6 *import caves-1623/204/rhino/faith
+ 4 *begin faith
+ 4 *end faith
+ 6 *tropmi caves-1623/204/rhino/faith
+ 6 *import caves-1623/204/rhino/roundtrip
+ 4 *begin roundtrip
+ 4 *end roundtrip
+ 6 *tropmi caves-1623/204/rhino/roundtrip
+ 6 *import caves-1623/204/rhino/wotnoconnection
+ 4 *begin wotnoconnection
+ 4 *end wotnoconnection
+ 6 *tropmi caves-1623/204/rhino/wotnoconnection
+ 6 *import caves-1623/204/rhino/grater
+ 4 *begin grater
+ 4 *end grater
+ 6 *tropmi caves-1623/204/rhino/grater
+ 6 *import caves-1623/204/rhino/uncrimped
+ 4 *begin uncrimped
+ 4 *end uncrimped
+ 6 *tropmi caves-1623/204/rhino/uncrimped
+ 6 *import caves-1623/204/rhino/beyondbelief
+ 4 *begin beyondbelief
+ 4 *end beyondbelief
+ 6 *tropmi caves-1623/204/rhino/beyondbelief
+ 6 *import caves-1623/204/rhino/beyondbelief2
+ 4 *begin beyondbelief2
+ 4 *end beyondbelief2
+ 6 *tropmi caves-1623/204/rhino/beyondbelief2
+ 6 *import caves-1623/204/rhino/beyondbelief3
+ 4 *begin beyondbelief3
+ 4 *end beyondbelief3
+ 6 *tropmi caves-1623/204/rhino/beyondbelief3
+ 6 *import caves-1623/204/rhino/hangingontofaith
+ 4 *begin hangingontofaith
+ 4 *end hangingontofaith
+ 6 *tropmi caves-1623/204/rhino/hangingontofaith
+ 6 *import caves-1623/204/rhino/shanks
+ 4 *begin shanks
+ 4 *end shanks
+ 6 *tropmi caves-1623/204/rhino/shanks
+ 6 *import caves-1623/204/rhino/nonconformism
+ 4 *begin nonconformism
+ 4 *end nonconformism
+ 6 *tropmi caves-1623/204/rhino/nonconformism
+ 6 *import caves-1623/204/rhino/spittersend
+ 4 *begin spittersend
+ 4 *end spittersend
+ 6 *tropmi caves-1623/204/rhino/spittersend
+ 6 *import caves-1623/204/rhino/hollow
+ 4 *begin hollow
+ 4 *end hollow
+ 6 *tropmi caves-1623/204/rhino/hollow
+ 3 *end allrhino
+ 5 *tropmi caves-1623/204/rhino/allrhino
+ 5 *import caves-1623/204/subsoil/allsubsoil
+ 3 *begin allsubsoil
+ 6 *import caves-1623/204/subsoil/subsoil
+ 4 *begin subsoil
+ 4 *end subsoil
+ 6 *tropmi caves-1623/204/subsoil/subsoil
+ 6 *import caves-1623/204/subsoil/subsoil2
+ 4 *begin subsoil2
+ 4 *end subsoil2
+ 6 *tropmi caves-1623/204/subsoil/subsoil2
+ 6 *import caves-1623/204/subsoil/hippohollows
+ 4 *begin hippohollows
+ 4 *end hippohollows
+ 6 *tropmi caves-1623/204/subsoil/hippohollows
+ 6 *import caves-1623/204/subsoil/fatworm
+ 4 *begin fatworm
+ 4 *end fatworm
+ 6 *tropmi caves-1623/204/subsoil/fatworm
+ 6 *import caves-1623/204/subsoil/heavilysoiled
+ 4 *begin heavilysoiled
+ 4 *end heavilysoiled
+ 6 *tropmi caves-1623/204/subsoil/heavilysoiled
+ 6 *import caves-1623/204/subsoil/earthenware
+ 4 *begin earthenware
+ 4 *end earthenware
+ 6 *tropmi caves-1623/204/subsoil/earthenware
+ 6 *import caves-1623/204/subsoil/fatworm2
+ 4 *begin fatworm2
+ 4 *end fatworm2
+ 6 *tropmi caves-1623/204/subsoil/fatworm2
+ 6 *import caves-1623/204/subsoil/fatworm3
+ 4 *begin fatworm3
+ 4 *end fatworm3
+ 6 *tropmi caves-1623/204/subsoil/fatworm3
+ 6 *import caves-1623/204/subsoil/thinrift
+ 4 *begin thinrift
+ 4 *end thinrift
+ 6 *tropmi caves-1623/204/subsoil/thinrift
+ 6 *import caves-1623/204/subsoil/earthenware2
+ 4 *begin earthenware2
+ 4 *end earthenware2
+ 6 *tropmi caves-1623/204/subsoil/earthenware2
+ 6 *import caves-1623/204/subsoil/earthenware3
+ 4 *begin earthenware3
+ 4 *end earthenware3
+ 6 *tropmi caves-1623/204/subsoil/earthenware3
+ 6 *import caves-1623/204/subsoil/chimney
+ 4 *begin chimney
+ 4 *end chimney
+ 6 *tropmi caves-1623/204/subsoil/chimney
+ 6 *import caves-1623/204/subsoil/hardware
+ 4 *begin hardware
+ 4 *end hardware
+ 6 *tropmi caves-1623/204/subsoil/hardware
+ 6 *import caves-1623/204/subsoil/someware
+ 4 *begin someware
+ 4 *end someware
+ 6 *tropmi caves-1623/204/subsoil/someware
+ 6 *import caves-1623/204/subsoil/software
+ 4 *begin software
+ 4 *end software
+ 6 *tropmi caves-1623/204/subsoil/software
+ 6 *import caves-1623/204/subsoil/hardware_QM04-43a
+ 4 *begin QM04_43A
+ 4 *end QM04_43A
+ 6 *tropmi caves-1623/204/subsoil/hardware_QM04-43a
+ 6 *import caves-1623/204/subsoil/hardware_QM04-38b
+ 4 *begin QM04_38b
+ 4 *end QM04_38b
+ 6 *tropmi caves-1623/204/subsoil/hardware_QM04-38b
+ 6 *import caves-1623/204/subsoil/nightsoil
+ 4 *begin nightsoil
+ 4 *end nightsoil
+ 6 *tropmi caves-1623/204/subsoil/nightsoil
+ 6 *import caves-1623/204/subsoil/hippocratic
+ 4 *begin hippocratic
+ 4 *end hippocratic
+ 6 *tropmi caves-1623/204/subsoil/hippocratic
+ 6 *import caves-1623/204/subsoil/hippocratic2
+ 4 *begin hippocratic2
+ 4 *end hippocratic2
+ 6 *tropmi caves-1623/204/subsoil/hippocratic2
+ 6 *import caves-1623/204/subsoil/software2
+ 4 *begin software2
+ 4 *end software2
+ 6 *tropmi caves-1623/204/subsoil/software2
+ 6 *import caves-1623/204/subsoil/software3
+ 4 *begin software3
+ 4 *end software3
+ 6 *tropmi caves-1623/204/subsoil/software3
+ 6 *import caves-1623/204/subsoil/whereoware
+ 4 *begin whereoware
+ 4 *end whereoware
+ 6 *tropmi caves-1623/204/subsoil/whereoware
+ 6 *import caves-1623/204/subsoil/whereoware2
+ 4 *begin whereoware2
+ 4 *end whereoware2
+ 6 *tropmi caves-1623/204/subsoil/whereoware2
+ 6 *import caves-1623/204/subsoil/whereoware3
+ 4 *begin whereoware3
+ 4 *end whereoware3
+ 6 *tropmi caves-1623/204/subsoil/whereoware3
+ 6 *import caves-1623/204/subsoil/whereoware4
+ 4 *begin whereoware4
+ 4 *end whereoware4
+ 6 *tropmi caves-1623/204/subsoil/whereoware4
+ 6 *import caves-1623/204/subsoil/whereoware5
+ 4 *begin whereoware5
+ 4 *end whereoware5
+ 6 *tropmi caves-1623/204/subsoil/whereoware5
+ 6 *import caves-1623/204/subsoil/wareforartthou
+ 4 *begin wareforartthou
+ 4 *end wareforartthou
+ 6 *tropmi caves-1623/204/subsoil/wareforartthou
+ 6 *import caves-1623/204/subsoil/wareforartthou2
+ 4 *begin wareforartthou2
+ 4 *end wareforartthou2
+ 6 *tropmi caves-1623/204/subsoil/wareforartthou2
+ 6 *import caves-1623/204/subsoil/stupidhole
+ 4 *begin stupidhole
+ 4 *end stupidhole
+ 6 *tropmi caves-1623/204/subsoil/stupidhole
+ 6 *import caves-1623/204/subsoil/stupidhole2
+ 4 *begin stupidhole2
+ 4 *end stupidhole2
+ 6 *tropmi caves-1623/204/subsoil/stupidhole2
+ 6 *import caves-1623/204/subsoil/stupidhole3
+ 4 *begin stupidhole3
+ 4 *end stupidhole3
+ 6 *tropmi caves-1623/204/subsoil/stupidhole3
+ 6 *import caves-1623/204/subsoil/granddayout
+ 4 *begin granddayout
+ 4 *end granddayout
+ 6 *tropmi caves-1623/204/subsoil/granddayout
+ 6 *import caves-1623/204/subsoil/granddayout2
+ 4 *begin granddayout2
+ 4 *end granddayout2
+ 6 *tropmi caves-1623/204/subsoil/granddayout2
+ 6 *import caves-1623/204/subsoil/birdonawire
+ 4 *begin birdonawire
+ 4 *end birdonawire
+ 6 *tropmi caves-1623/204/subsoil/birdonawire
+ 6 *import caves-1623/204/subsoil/birdonawire2
+ 4 *begin birdonawire2
+ 4 *end birdonawire2
+ 6 *tropmi caves-1623/204/subsoil/birdonawire2
+ 6 *import caves-1623/204/subsoil/granddayout3
+ 4 *begin granddayout3
+ 4 *end granddayout3
+ 6 *tropmi caves-1623/204/subsoil/granddayout3
+ 3 *end allsubsoil
+ 5 *tropmi caves-1623/204/subsoil/allsubsoil
+ 5 *import caves-1623/204/subway/subway
+ 3 *begin subway
+ 6 *import caves-1623/204/subway/apocalypse
+ 4 *begin apocalypse
+ 4 *end apocalypse
+ 6 *tropmi caves-1623/204/subway/apocalypse
+ 6 *import caves-1623/204/subway/thetube
+ 4 *begin thetube
+ 4 *end thetube
+ 6 *tropmi caves-1623/204/subway/thetube
+ 6 *import caves-1623/204/subway/thetube2
+ 4 *begin thetube2
+ 4 *end thetube2
+ 6 *tropmi caves-1623/204/subway/thetube2
+ 6 *import caves-1623/204/subway/thetube3
+ 4 *begin thetube3
+ 4 *end thetube3
+ 6 *tropmi caves-1623/204/subway/thetube3
+ 6 *import caves-1623/204/subway/thetube4
+ 4 *begin thetube4
+ 4 *end thetube4
+ 6 *tropmi caves-1623/204/subway/thetube4
+ 6 *import caves-1623/204/subway/morningtoncrescent
+ 4 *begin morningtoncrescent
+ 4 *end morningtoncrescent
+ 6 *tropmi caves-1623/204/subway/morningtoncrescent
+ 3 *end subway
+ 5 *tropmi caves-1623/204/subway/subway
+ 3 *begin slimylink
+ 3 *end slimylink
+ 5 *import caves-1623/204/convenience/allconvenience
+ 3 *begin allconvenience
+ 6 *import caves-1623/204/convenience/convenience
+ 4 *begin convenience
+ 4 *end convenience
+ 6 *tropmi caves-1623/204/convenience/convenience
+ 6 *import caves-1623/204/convenience/worry
+ 4 *begin worry
+ 4 *end worry
+ 6 *tropmi caves-1623/204/convenience/worry
+ 6 *import caves-1623/204/convenience/cakes
+ 4 *begin cakes
+ 4 *end cakes
+ 6 *tropmi caves-1623/204/convenience/cakes
+ 6 *import caves-1623/204/convenience/engaged
+ 4 *begin engaged
+ 4 *end engaged
+ 6 *tropmi caves-1623/204/convenience/engaged
+ 6 *import caves-1623/204/convenience/shit
+ 4 *begin shit
+ 4 *end shit
+ 6 *tropmi caves-1623/204/convenience/shit
+ 6 *import caves-1623/204/convenience/sltr
+ 4 *begin sltr
+ 4 *end sltr
+ 6 *tropmi caves-1623/204/convenience/sltr
+ 6 *import caves-1623/204/convenience/crapper1
+ 4 *begin crapper1
+ 4 *end crapper1
+ 6 *tropmi caves-1623/204/convenience/crapper1
+ 6 *import caves-1623/204/convenience/crapper2
+ 4 *begin crapper2
+ 4 *end crapper2
+ 6 *tropmi caves-1623/204/convenience/crapper2
+ 6 *import caves-1623/204/convenience/crapper3
+ 4 *begin crapper3
+ 4 *end crapper3
+ 6 *tropmi caves-1623/204/convenience/crapper3
+ 6 *import caves-1623/204/convenience/channelfive1
+ 4 *begin channelfive1
+ 4 *end channelfive1
+ 6 *tropmi caves-1623/204/convenience/channelfive1
+ 6 *import caves-1623/204/convenience/channelfive2
+ 4 *begin channelfive2
+ 4 *end channelfive2
+ 6 *tropmi caves-1623/204/convenience/channelfive2
+ 3 *end allconvenience
+ 5 *tropmi caves-1623/204/convenience/allconvenience
+ 2 *end 204
+ 4 *tropmi caves-1623/204/204
+ 4 *import caves-1623/258/258
+ 2 *begin 258
+ 5 *import caves-1623/258/stonemonkey/stonemonkeyall
+ 3 *begin
+ 6 *import caves-1623/258/stonemonkey/stonemonkey
+ 4 *begin stonemonkey
+ 4 *end stonemonkey
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey
+ 6 *import caves-1623/258/stonemonkey/stonemonkey2
+ 4 *begin stonemonkey2
+ 4 *end stonemonkey2
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey2
+ 6 *import caves-1623/258/stonemonkey/stonemonkey3
+ 4 *begin stonemonkey3
+ 4 *end stonemonkey3
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey3
+ 6 *import caves-1623/258/stonemonkey/stonemonkey4
+ 4 *begin stonemonkey4
+ 4 *end stonemonkey4
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey4
+ 6 *import caves-1623/258/stonemonkey/stonemonkey5
+ 4 *begin stonemonkey5
+ 4 *end stonemonkey5
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey5
+ 6 *import caves-1623/258/stonemonkey/stonemonkey6
+ 4 *begin stonemonkey6
+ 4 *end stonemonkey6
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey6
+ 6 *import caves-1623/258/stonemonkey/stonemonkey7
+ 4 *begin stonemonkey7
+ 4 *end stonemonkey7
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey7
+ 6 *import caves-1623/258/stonemonkey/stonemonkey8
+ 4 *begin stonemonkey8
+ 4 *end stonemonkey8
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey8
+ 6 *import caves-1623/258/stonemonkey/stonemonkey9
+ 4 *begin stonemonkey9
+ 4 *end stonemonkey9
+ 6 *tropmi caves-1623/258/stonemonkey/stonemonkey9
+ 3 *end
+ 5 *tropmi caves-1623/258/stonemonkey/stonemonkeyall
+ 5 *import caves-1623/258/hydra/hydra
+ 3 *begin
+ 6 *import caves-1623/258/hydra/kraken
+ 4 *begin kraken
+ 4 *end kraken
+ 6 *tropmi caves-1623/258/hydra/kraken
+ 6 *import caves-1623/258/hydra/tentacle
+ 4 *begin tentacle
+ 4 *end tentacle
+ 6 *tropmi caves-1623/258/hydra/tentacle
+ 6 *import caves-1623/258/hydra/livingthedream
+ 4 *begin livingthedream
+ 4 *end livingthedream
+ 6 *tropmi caves-1623/258/hydra/livingthedream
+ 6 *import caves-1623/258/hydra/slackers
+ 4 *begin slackers
+ 4 *end slackers
+ 6 *tropmi caves-1623/258/hydra/slackers
+ 6 *import caves-1623/258/hydra/slackers2
+ 4 *begin slackers2
+ 4 *end slackers2
+ 6 *tropmi caves-1623/258/hydra/slackers2
+ 6 *import caves-1623/258/hydra/slackers3
+ 4 *begin slackers3
+ 4 *end slackers3
+ 6 *tropmi caves-1623/258/hydra/slackers3
+ 6 *import caves-1623/258/hydra/slackers4
+ 4 *begin slackers4
+ 4 *end slackers4
+ 6 *tropmi caves-1623/258/hydra/slackers4
+ 6 *import caves-1623/258/hydra/slackers5
+ 4 *begin slackers5
+ 4 *end slackers5
+ 6 *tropmi caves-1623/258/hydra/slackers5
+ 6 *import caves-1623/258/hydra/slackers6
+ 4 *begin slackers6
+ 4 *end slackers6
+ 6 *tropmi caves-1623/258/hydra/slackers6
+ 6 *import caves-1623/258/hydra/wrongcustard
+ 4 *begin wrongcustard
+ 4 *end wrongcustard
+ 6 *tropmi caves-1623/258/hydra/wrongcustard
+ 6 *import caves-1623/258/hydra/slackers7
+ 4 *begin slackers7
+ 4 *end slackers7
+ 6 *tropmi caves-1623/258/hydra/slackers7
+ 6 *import caves-1623/258/hydra/lobsterpot
+ 4 *begin lobsterpot
+ 4 *end lobsterpot
+ 6 *tropmi caves-1623/258/hydra/lobsterpot
+ 6 *import caves-1623/258/hydra/kippercock
+ 4 *begin kippercock
+ 4 *end kippercock
+ 6 *tropmi caves-1623/258/hydra/kippercock
+ 6 *import caves-1623/258/hydra/indianropetrick
+ 4 *begin indianropetrick
+ 4 *end indianropetrick
+ 6 *tropmi caves-1623/258/hydra/indianropetrick
+ 6 *import caves-1623/258/hydra/songoftheearth
+ 4 *begin songoftheearth
+ 5 *begin part1
+ 5 *end part1
+ 5 *begin part2
+ 5 *end part2
+ 5 *begin part3
+ 5 *end part3
+ 4 *end songoftheearth
+ 6 *tropmi caves-1623/258/hydra/songoftheearth
+ 6 *import caves-1623/258/hydra/dontstopmenow
+ 4 *begin dontstopmenow
+ 4 *end dontstopmenow
+ 6 *tropmi caves-1623/258/hydra/dontstopmenow
+ 6 *import caves-1623/258/hydra/screamer
+ 4 *begin Screamer
+ 4 *end screamer
+ 6 *tropmi caves-1623/258/hydra/screamer
+ 6 *import caves-1623/258/hydra/papawpassage
+ 4 *begin papawpassage
+ 4 *end papawpassage
+ 6 *tropmi caves-1623/258/hydra/papawpassage
+ 6 *import caves-1623/258/hydra/therestherub
+ 4 *begin therestherub
+ 4 *end therestherub
+ 6 *tropmi caves-1623/258/hydra/therestherub
+ 6 *import caves-1623/258/hydra/biglad
+ 4 *begin biglad
+ 4 *end biglad
+ 6 *tropmi caves-1623/258/hydra/biglad
+ 6 *import caves-1623/258/hydra/slackerstidyup1
+ 4 *begin slackerstidyup1
+ 4 *end slackerstidyup1
+ 6 *tropmi caves-1623/258/hydra/slackerstidyup1
+ 6 *import caves-1623/258/hydra/slackerstidyup2
+ 4 *begin slackerstidyup2
+ 4 *end slackerstidyup2
+ 6 *tropmi caves-1623/258/hydra/slackerstidyup2
+ 6 *import caves-1623/258/hydra/snakecharmer
+ 4 *begin snakecharmer
+ 4 *end snakecharmer
+ 6 *tropmi caves-1623/258/hydra/snakecharmer
+ 6 *import caves-1623/258/hydra/mastercave
+ 4 *begin mastercave
+ 4 *end mastercave
+ 6 *tropmi caves-1623/258/hydra/mastercave
+ 6 *import caves-1623/258/hydra/gryke-of-the-earth
+ 4 *begin gryke-of-the-earth
+ 4 *end gryke-of-the-earth
+ 6 *tropmi caves-1623/258/hydra/gryke-of-the-earth
+ 6 *import caves-1623/258/hydra/snakecharmer2
+ 4 *begin snakecharmer2
+ 4 *end snakecharmer2
+ 6 *tropmi caves-1623/258/hydra/snakecharmer2
+ 6 *import caves-1623/258/hydra/snakecharmer3
+ 4 *begin snakecharmer3
+ 4 *end snakecharmer3
+ 6 *tropmi caves-1623/258/hydra/snakecharmer3
+ 6 *import caves-1623/258/hydra/hipstersreturn
+ 4 *begin hipstersreturn
+ 4 *end hipstersreturn
+ 6 *tropmi caves-1623/258/hydra/hipstersreturn
+ 6 *import caves-1623/258/hydra/beckoning_silence
+ 4 *begin beckoning_silence
+ 4 *end beckoning_silence
+ 6 *tropmi caves-1623/258/hydra/beckoning_silence
+ 6 *import caves-1623/258/hydra/theloserlido
+ 4 *begin theloserlido
+ 4 *end theloserlido
+ 6 *tropmi caves-1623/258/hydra/theloserlido
+ 6 *import caves-1623/258/hydra/bahamastunnel
+ 4 *begin bahamastunnel
+ 4 *end bahamastunnel
+ 6 *tropmi caves-1623/258/hydra/bahamastunnel
+ 6 *import caves-1623/258/hydra/unfathomablestupidity
+ 4 *begin unfathomablestupidity
+ 4 *end unfathomablestupidity
+ 6 *tropmi caves-1623/258/hydra/unfathomablestupidity
+ 6 *import caves-1623/258/hydra/lower_snakebite
+ 4 *begin lower_snakebite
+ 4 *end lower_snakebite
+ 6 *tropmi caves-1623/258/hydra/lower_snakebite
+ 6 *import caves-1623/258/hydra/radiosilence
+ 4 *begin radiosilence
+ 4 *end radiosilence
+ 6 *tropmi caves-1623/258/hydra/radiosilence
+ 6 *import caves-1623/258/hydra/scumoftheearth
+ 4 *begin scumoftheearth
+ 4 *end scumoftheearth
+ 6 *tropmi caves-1623/258/hydra/scumoftheearth
+ 6 *import caves-1623/258/hydra/scum2
+ 4 *begin scum2
+ 4 *end scum2
+ 6 *tropmi caves-1623/258/hydra/scum2
+ 3 *end
+ 5 *tropmi caves-1623/258/hydra/hydra
+ 5 *import caves-1623/258/1
+ 3 *begin 1
+ 3 *end 1
+ 5 *tropmi caves-1623/258/1
+ 5 *import caves-1623/258/2
+ 3 *begin 2
+ 3 *end 2
+ 5 *tropmi caves-1623/258/2
+ 5 *import caves-1623/258/ribsknodel
+ 3 *begin ribsknodel
+ 3 *end ribsknodel
+ 5 *tropmi caves-1623/258/ribsknodel
+ 5 *import caves-1623/258/ribsknodel2
+ 3 *begin ribsknodel2
+ 3 *end ribsknodel2
+ 5 *tropmi caves-1623/258/ribsknodel2
+ 5 *import caves-1623/258/skrautlink
+ 3 *begin skrautlink
+ 3 *end skrautlink
+ 5 *tropmi caves-1623/258/skrautlink
+ 5 *import caves-1623/258/sauerkraut
+ 3 *begin sauerkraut
+ 3 *end sauerkraut
+ 5 *tropmi caves-1623/258/sauerkraut
+ 5 *import caves-1623/258/gknodel
+ 3 *begin gknodel
+ 3 *end gknodel
+ 5 *tropmi caves-1623/258/gknodel
+ 5 *import caves-1623/258/literalnorth
+ 3 *begin literalnorth
+ 3 *end literalnorth
+ 5 *tropmi caves-1623/258/literalnorth
+ 5 *import caves-1623/258/squirrel
+ 3 *begin squirrel
+ 3 *end squirrel
+ 5 *tropmi caves-1623/258/squirrel
+ 5 *import caves-1623/258/oompah
+ 3 *begin oompah
+ 3 *end oompah
+ 5 *tropmi caves-1623/258/oompah
+ 5 *import caves-1623/258/apfelstrudel
+ 3 *begin apfelstrudel
+ 3 *end apfelstrudel
+ 5 *tropmi caves-1623/258/apfelstrudel
+ 5 *import caves-1623/258/literalnorth2
+ 3 *begin literalnorth2
+ 3 *end literalnorth2
+ 5 *tropmi caves-1623/258/literalnorth2
+ 5 *import caves-1623/258/literalnorth3
+ 3 *begin literalnorth3
+ 3 *end literalnorth3
+ 5 *tropmi caves-1623/258/literalnorth3
+ 5 *import caves-1623/258/maxpleasure1
+ 3 *begin maxpleasure1
+ 3 *end maxpleasure1
+ 5 *tropmi caves-1623/258/maxpleasure1
+ 5 *import caves-1623/258/dubiouspleasure
+ 3 *begin dubiouspleasure
+ 3 *end dubiouspleasure
+ 5 *tropmi caves-1623/258/dubiouspleasure
+ 5 *import caves-1623/258/maxpleasure2
+ 3 *begin maxpleasure2
+ 3 *end maxpleasure2
+ 5 *tropmi caves-1623/258/maxpleasure2
+ 5 *import caves-1623/258/hedonismhighway
+ 3 *begin hedonismhighway
+ 3 *end hedonismhighway
+ 5 *tropmi caves-1623/258/hedonismhighway
+ 5 *import caves-1623/258/flyinghigh
+ 3 *begin flyinghigh
+ 3 *end flyinghigh
+ 5 *tropmi caves-1623/258/flyinghigh
+ 5 *import caves-1623/258/flyinghigh2
+ 3 *begin flyinghigh2
+ 3 *end flyinghigh2
+ 5 *tropmi caves-1623/258/flyinghigh2
+ 5 *import caves-1623/258/pantinsales
+ 3 *begin pantinsales
+ 3 *end pantinsales
+ 5 *tropmi caves-1623/258/pantinsales
+ 5 *import caves-1623/258/maxpleasure3
+ 3 *begin maxpleasure3
+ 3 *end maxpleasure3
+ 5 *tropmi caves-1623/258/maxpleasure3
+ 5 *import caves-1623/258/maxpleasure4
+ 3 *begin maxpleasure4
+ 3 *end maxpleasure4
+ 5 *tropmi caves-1623/258/maxpleasure4
+ 5 *import caves-1623/258/literalnorth4
+ 3 *begin literalnorth4
+ 3 *end literalnorth4
+ 5 *tropmi caves-1623/258/literalnorth4
+ 5 *import caves-1623/258/maxpleasure5
+ 3 *begin maxpleasure5
+ 3 *end maxpleasure5
+ 5 *tropmi caves-1623/258/maxpleasure5
+ 5 *import caves-1623/258/justforalaugh
+ 3 *begin justforalaugh
+ 3 *end justforalaugh
+ 5 *tropmi caves-1623/258/justforalaugh
+ 5 *import caves-1623/258/letsgetnaked
+ 3 *begin letsgetnaked
+ 3 *end letsgetnaked
+ 5 *tropmi caves-1623/258/letsgetnaked
+ 5 *import caves-1623/258/maxpleasure6
+ 3 *begin maxpleasure6
+ 3 *end maxpleasure6
+ 5 *tropmi caves-1623/258/maxpleasure6
+ 5 *import caves-1623/258/justforalaugh2
+ 3 *begin justforalaugh2
+ 3 *end justforalaugh2
+ 5 *tropmi caves-1623/258/justforalaugh2
+ 5 *import caves-1623/258/loompah
+ 3 *begin loompah
+ 3 *end loompah
+ 5 *tropmi caves-1623/258/loompah
+ 5 *import caves-1623/258/delicious1
+ 3 *begin delicious1
+ 3 *end delicious1
+ 5 *tropmi caves-1623/258/delicious1
+ 5 *import caves-1623/258/delicious2
+ 3 *begin delicious2
+ 3 *end delicious2
+ 5 *tropmi caves-1623/258/delicious2
+ 5 *import caves-1623/258/darkfumblings
+ 3 *begin darkfumblings
+ 3 *end darkfumblings
+ 5 *tropmi caves-1623/258/darkfumblings
+ 5 *import caves-1623/258/bouldersurfer
+ 3 *begin bouldersurfer
+ 3 *end bouldersurfer
+ 5 *tropmi caves-1623/258/bouldersurfer
+ 5 *import caves-1623/258/naughtynaughty
+ 3 *begin naughtynaughty
+ 3 *end naughtynaughty
+ 5 *tropmi caves-1623/258/naughtynaughty
+ 5 *import caves-1623/258/flapjackchoke
+ 3 *begin flapjackchoke
+ 3 *end flapjackchoke
+ 5 *tropmi caves-1623/258/flapjackchoke
+ 5 *import caves-1623/258/rockyroad
+ 3 *begin rockyroad
+ 3 *end rockyroad
+ 5 *tropmi caves-1623/258/rockyroad
+ 5 *import caves-1623/258/flyinghigh3
+ 3 *begin flyinghigh3
+ 3 *end flyinghigh3
+ 5 *tropmi caves-1623/258/flyinghigh3
+ 5 *import caves-1623/258/gravityalwayswins
+ 3 *begin gravityalwayswins
+ 3 *end gravityalwayswins
+ 5 *tropmi caves-1623/258/gravityalwayswins
+ 5 *import caves-1623/258/thinredline
+ 3 *begin thinredline
+ 3 *end thinredline
+ 5 *tropmi caves-1623/258/thinredline
+ 5 *import caves-1623/258/blindandbroken
+ 3 *begin blindandbroken
+ 3 *end blindandbroken
+ 5 *tropmi caves-1623/258/blindandbroken
+ 5 *import caves-1623/258/franklyfreezing
+ 3 *begin franklyfreezing
+ 3 *end franklyfreezing
+ 5 *tropmi caves-1623/258/franklyfreezing
+ 5 *import caves-1623/258/franklyfreezing2
+ 3 *begin franklyfreezing2
+ 3 *end franklyfreezing2
+ 5 *tropmi caves-1623/258/franklyfreezing2
+ 5 *import caves-1623/258/literalnorth5
+ 3 *begin literalnorth5
+ 3 *end literalnorth5
+ 5 *tropmi caves-1623/258/literalnorth5
+ 5 *import caves-1623/258/naughtynaughty2
+ 3 *begin naughtynaughty2
+ 3 *end naughtynaughty2
+ 5 *tropmi caves-1623/258/naughtynaughty2
+ 5 *import caves-1623/258/thinredline2
+ 3 *begin thinredline2
+ 3 *end thinredline2
+ 5 *tropmi caves-1623/258/thinredline2
+ 5 *import caves-1623/258/toomuch
+ 3 *begin toomuch
+ 3 *end toomuch
+ 5 *tropmi caves-1623/258/toomuch
+ 5 *import caves-1623/258/sleepingbeauty
+ 3 *begin sleepingbeauty
+ 3 *end sleepingbeauty
+ 5 *tropmi caves-1623/258/sleepingbeauty
+ 5 *import caves-1623/258/usualsuspects
+ 3 *begin usualsuspects
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 4 *end 2
+ 4 *begin 3
+ 4 *end 3
+ 3 *end usualsuspects
+ 5 *tropmi caves-1623/258/usualsuspects
+ 5 *import caves-1623/258/marconianempire1
+ 3 *begin marconianempire1
+ 3 *end marconianempire1
+ 5 *tropmi caves-1623/258/marconianempire1
+ 5 *import caves-1623/258/stomachulsa
+ 3 *begin stomachulsa
+ 3 *end stomachulsa
+ 5 *tropmi caves-1623/258/stomachulsa
+ 5 *import caves-1623/258/dampsquib
+ 3 *begin dampsquib
+ 3 *end dampsquib
+ 5 *tropmi caves-1623/258/dampsquib
+ 5 *import caves-1623/258/stomachulsa2
+ 3 *begin stomachulsa2
+ 3 *end stomachulsa2
+ 5 *tropmi caves-1623/258/stomachulsa2
+ 5 *import caves-1623/258/cleadjackpot
+ 3 *begin cleadjackpot
+ 3 *end cleadjackpot
+ 5 *tropmi caves-1623/258/cleadjackpot
+ 5 *import caves-1623/258/alphabetsoup
+ 3 *begin alphabetsoup
+ 3 *end alphabetsoup
+ 5 *tropmi caves-1623/258/alphabetsoup
+ 5 *import caves-1623/258/goodygoody
+ 3 *begin goodygoody
+ 3 *end goodygoody
+ 5 *tropmi caves-1623/258/goodygoody
+ 5 *import caves-1623/258/atobtoc
+ 3 *begin atobtoc
+ 3 *end atobtoc
+ 5 *tropmi caves-1623/258/atobtoc
+ 5 *import caves-1623/258/stringtheory
+ 3 *begin stringtheory
+ 3 *end stringtheory
+ 5 *tropmi caves-1623/258/stringtheory
+ 5 *import caves-1623/258/konigsbergpassage
+ 3 *begin konigsbergpassage
+ 3 *end konigsbergpassage
+ 5 *tropmi caves-1623/258/konigsbergpassage
+ 5 *import caves-1623/258/usualsuspects4
+ 3 *begin usualsuspects4
+ 3 *end usualsuspects4
+ 5 *tropmi caves-1623/258/usualsuspects4
+ 5 *import caves-1623/258/usualsuspects5
+ 3 *begin usualsuspects5
+ 3 *end usualsuspects5
+ 5 *tropmi caves-1623/258/usualsuspects5
+ 5 *import caves-1623/258/usualsuspects6
+ 3 *begin usualsuspects6
+ 3 *end usualsuspects6
+ 5 *tropmi caves-1623/258/usualsuspects6
+ 5 *import caves-1623/258/sovein
+ 3 *begin sovein
+ 3 *end sovein
+ 5 *tropmi caves-1623/258/sovein
+ 5 *import caves-1623/258/konigsberg2
+ 3 *begin konigsberg2
+ 3 *end konigsberg2
+ 5 *tropmi caves-1623/258/konigsberg2
+ 5 *import caves-1623/258/konigsberg3
+ 3 *begin konigsberg3
+ 3 *end konigsberg3
+ 5 *tropmi caves-1623/258/konigsberg3
+ 5 *import caves-1623/258/fallempire
+ 3 *begin fallempire
+ 3 *end fallempire
+ 5 *tropmi caves-1623/258/fallempire
+ 5 *import caves-1623/258/pigeondroppings
+ 3 *begin pigeondroppings
+ 3 *end pigeondroppings
+ 5 *tropmi caves-1623/258/pigeondroppings
+ 5 *import caves-1623/258/pigeondroppings2
+ 3 *begin pigeondroppings2
+ 3 *end pigeondroppings2
+ 5 *tropmi caves-1623/258/pigeondroppings2
+ 5 *import caves-1623/258/pigeondroppings3
+ 3 *begin pigeondroppings3
+ 3 *end pigeondroppings3
+ 5 *tropmi caves-1623/258/pigeondroppings3
+ 5 *import caves-1623/258/trident
+ 3 *begin trident
+ 3 *end trident
+ 5 *tropmi caves-1623/258/trident
+ 5 *import caves-1623/258/hastespeed
+ 3 *begin hastespeed
+ 3 *end hastespeed
+ 5 *tropmi caves-1623/258/hastespeed
+ 5 *import caves-1623/258/straightchoice
+ 3 *begin straightchoice
+ 3 *end straightchoice
+ 5 *tropmi caves-1623/258/straightchoice
+ 5 *import caves-1623/258/arcticangle
+ 3 *begin arcticangle
+ 3 *end arcticangle
+ 5 *tropmi caves-1623/258/arcticangle
+ 5 *import caves-1623/258/straightchoiceexposed
+ 3 *begin straightchoiceexposed
+ 3 *end straightchoiceexposed
+ 5 *tropmi caves-1623/258/straightchoiceexposed
+ 5 *import caves-1623/258/beerandsunshine
+ 3 *begin beerandsunshine
+ 3 *end beerandsunshine
+ 5 *tropmi caves-1623/258/beerandsunshine
+ 5 *import caves-1623/258/trident2
+ 3 *begin trident2
+ 3 *end trident2
+ 5 *tropmi caves-1623/258/trident2
+ 5 *import caves-1623/258/konigsberg4
+ 3 *begin konigsberg4
+ 3 *end konigsberg4
+ 5 *tropmi caves-1623/258/konigsberg4
+ 5 *import caves-1623/258/sovein2
+ 3 *begin sovein2
+ 3 *end sovein2
+ 5 *tropmi caves-1623/258/sovein2
+ 5 *import caves-1623/258/downtoearth
+ 3 *begin downtoearth
+ 3 *end downtoearth
+ 5 *tropmi caves-1623/258/downtoearth
+ 5 *import caves-1623/258/konigsberg5
+ 3 *begin konigsberg5
+ 3 *end konigsberg5
+ 5 *tropmi caves-1623/258/konigsberg5
+ 5 *import caves-1623/258/downtoearth2
+ 3 *begin downtoearth2
+ 3 *end downtoearth2
+ 5 *tropmi caves-1623/258/downtoearth2
+ 5 *import caves-1623/258/flyinghigh4
+ 3 *begin flyinghigh4
+ 3 *end flyinghigh4
+ 5 *tropmi caves-1623/258/flyinghigh4
+ 5 *import caves-1623/258/flyinghigh5
+ 3 *begin flyinghigh5
+ 3 *end flyinghigh5
+ 5 *tropmi caves-1623/258/flyinghigh5
+ 5 *import caves-1623/258/gawbypass
+ 3 *begin gawbypass
+ 3 *end gawbypass
+ 5 *tropmi caves-1623/258/gawbypass
+ 5 *import caves-1623/258/iceflow
+ 3 *begin iceflow
+ 3 *end iceflow
+ 5 *tropmi caves-1623/258/iceflow
+ 5 *import caves-1623/258/rampant
+ 3 *begin rampant
+ 3 *end rampant
+ 5 *tropmi caves-1623/258/rampant
+ 3 *begin
+ 5 *import caves-1623/258/tagbolts
+ 4 *begin tagbolta
+ 4 *end tagbolta
+ 4 *begin tagboltb
+ 4 *end tagboltb
+ 5 *tropmi caves-1623/258/tagbolts
+ 3 *end
+ 5 *import caves-1623/258/popcornrift
+ 3 *begin popcornrift
+ 3 *end popcornrift
+ 5 *tropmi caves-1623/258/popcornrift
+ 5 *import caves-1623/258/westsidestory
+ 3 *begin westsidestory
+ 3 *end westsidestory
+ 5 *tropmi caves-1623/258/westsidestory
+ 5 *import caves-1623/258/sovein3
+ 3 *begin sovein3
+ 3 *end sovein3
+ 5 *tropmi caves-1623/258/sovein3
+ 5 *import caves-1623/258/intothinair
+ 3 *begin intothinair
+ 3 *end intothinair
+ 5 *tropmi caves-1623/258/intothinair
+ 5 *import caves-1623/258/tenthousandbusstops
+ 3 *begin tenthousandbusstops
+ 3 *end tenthousandbusstops
+ 5 *tropmi caves-1623/258/tenthousandbusstops
+ 5 *import caves-1623/258/bobon
+ 3 *begin bobon
+ 3 *end bobon
+ 3 *begin bobon2
+ 3 *end bobon2
+ 5 *tropmi caves-1623/258/bobon
+ 5 *import caves-1623/258/aboveandbeyond
+ 3 *begin aboveandbeyond
+ 3 *end aboveandbeyond
+ 5 *tropmi caves-1623/258/aboveandbeyond
+ 5 *import caves-1623/258/thirtyninesteps
+ 3 *begin thirtyninesteps
+ 3 *end thirtyninesteps
+ 5 *tropmi caves-1623/258/thirtyninesteps
+ 5 *import caves-1623/258/marchofthepenguins
+ 3 *begin marchofthepenguins
+ 3 *end marchofthepenguins
+ 3 *begin marchofthepenguins2
+ 3 *end marchofthepenguins2
+ 3 *begin marchofthepenguins2b
+ 3 *end marchofthepenguins2b
+ 3 *begin marchofthepenguins2a
+ 3 *end marchofthepenguins2a
+ 3 *begin grannyscrogginsdelight
+ 3 *end grannyscrogginsdelight
+ 5 *tropmi caves-1623/258/marchofthepenguins
+ 5 *import caves-1623/258/aboveandbeyond2
+ 3 *begin aboveandbeyond2
+ 3 *end aboveandbeyond2
+ 5 *tropmi caves-1623/258/aboveandbeyond2
+ 5 *import caves-1623/258/thatsthewaytodoit
+ 3 *begin thatsthewaytodoit
+ 3 *end thatsthewaytodoit
+ 5 *tropmi caves-1623/258/thatsthewaytodoit
+ 5 *import caves-1623/258/thirtyninesteps2
+ 3 *begin thirtyninesteps2
+ 3 *end thirtyninesteps2
+ 5 *tropmi caves-1623/258/thirtyninesteps2
+ 5 *import caves-1623/258/thirtyninesteps3
+ 3 *begin thirtyninesteps3
+ 3 *end thirtyninesteps3
+ 5 *tropmi caves-1623/258/thirtyninesteps3
+ 5 *import caves-1623/258/thirtyninesteps4
+ 3 *begin thirtyninesteps4
+ 3 *end thirtyninesteps4
+ 5 *tropmi caves-1623/258/thirtyninesteps4
+ 5 *import caves-1623/258/itsbehindyou
+ 3 *begin itsbehindyou
+ 3 *end itsbehindyou
+ 5 *tropmi caves-1623/258/itsbehindyou
+ 5 *import caves-1623/258/procrastination
+ 3 *begin procrastination
+ 3 *end procrastination
+ 5 *tropmi caves-1623/258/procrastination
+ 5 *import caves-1623/258/climbofthepenguins1
+ 3 *begin climbofthepenguins1
+ 3 *end climbofthepenguins1
+ 5 *tropmi caves-1623/258/climbofthepenguins1
+ 5 *import caves-1623/258/climbofthepenguins2
+ 3 *begin climbofthepenguins2
+ 3 *end climbofthepenguins2
+ 5 *tropmi caves-1623/258/climbofthepenguins2
+ 5 *import caves-1623/258/penguinacrobatics
+ 3 *begin PenguinAcrobatics
+ 3 *end PenguinAcrobatics
+ 5 *tropmi caves-1623/258/penguinacrobatics
+ 5 *import caves-1623/258/penguinrift
+ 3 *begin penguinrift
+ 3 *end penguinrift
+ 5 *tropmi caves-1623/258/penguinrift
+ 5 *import caves-1623/258/innerflapcontinuation
+ 3 *begin Innerflapcontinuation
+ 3 *end Innerflapcontinuation
+ 5 *tropmi caves-1623/258/innerflapcontinuation
+ 5 *import caves-1623/258/suicidalvampyre
+ 3 *begin suicidalvampyre
+ 3 *end suicidalvampyre
+ 5 *tropmi caves-1623/258/suicidalvampyre
+ 5 *import caves-1623/258/bringontheclowns
+ 3 *begin bringontheclowns
+ 3 *end bringontheclowns
+ 5 *tropmi caves-1623/258/bringontheclowns
+ 5 *import caves-1623/258/determination
+ 3 *begin determination
+ 3 *end determination
+ 5 *tropmi caves-1623/258/determination
+ 5 *import caves-1623/258/determination2
+ 3 *begin Determination2
+ 3 *end Determination2
+ 5 *tropmi caves-1623/258/determination2
+ 5 *import caves-1623/258/surfergirl
+ 3 *begin surfergirl
+ 3 *end surfergirl
+ 5 *tropmi caves-1623/258/surfergirl
+ 5 *import caves-1623/258/bringontheclowns2
+ 3 *begin BringOnTheClowns2
+ 3 *end BringOnTheClowns2
+ 5 *tropmi caves-1623/258/bringontheclowns2
+ 5 *import caves-1623/258/numberofthebeast
+ 3 *begin numberofthebeast
+ 3 *end numberofthebeast
+ 5 *tropmi caves-1623/258/numberofthebeast
+ 5 *import caves-1623/258/numberofthebeast2
+ 3 *begin numberofthebeast2
+ 3 *end numberofthebeast2
+ 5 *tropmi caves-1623/258/numberofthebeast2
+ 5 *import caves-1623/258/justforalaugh3
+ 3 *begin justforalaugh3
+ 3 *end justforalaugh3
+ 5 *tropmi caves-1623/258/justforalaugh3
+ 5 *import caves-1623/258/downgrade
+ 3 *begin downgrade
+ 3 *end downgrade
+ 5 *tropmi caves-1623/258/downgrade
+ 5 *import caves-1623/258/boomboom
+ 3 *begin boomboom
+ 3 *end boomboom
+ 5 *tropmi caves-1623/258/boomboom
+ 5 *import caves-1623/258/window
+ 3 *begin window
+ 3 *end window
+ 5 *tropmi caves-1623/258/window
+ 5 *import caves-1623/258/crossword
+ 3 *begin crossword
+ 3 *end crossword
+ 5 *tropmi caves-1623/258/crossword
+ 5 *import caves-1623/258/oompharift
+ 3 *begin oompharift
+ 3 *end oompharift
+ 5 *tropmi caves-1623/258/oompharift
+ 5 *import caves-1623/258/withintheabove
+ 3 *begin withintheabove
+ 3 *end withintheabove
+ 5 *tropmi caves-1623/258/withintheabove
+ 5 *import caves-1623/258/trireme
+ 3 *begin trireme
+ 3 *end trireme
+ 5 *tropmi caves-1623/258/trireme
+ 5 *import caves-1623/258/ducksonice
+ 3 *begin ducksonice
+ 3 *end ducksonice
+ 5 *tropmi caves-1623/258/ducksonice
+ 5 *import caves-1623/258/coldladyslegs1
+ 3 *begin coldladyslegs1
+ 3 *end coldladyslegs1
+ 5 *tropmi caves-1623/258/coldladyslegs1
+ 5 *import caves-1623/258/coldfinger
+ 3 *begin coldfinger
+ 3 *end coldfinger
+ 5 *tropmi caves-1623/258/coldfinger
+ 5 *import caves-1623/258/coldfinger2
+ 3 *begin coldfinger2
+ 3 *end coldfinger2
+ 5 *tropmi caves-1623/258/coldfinger2
+ 5 *import caves-1623/258/coldfinger3
+ 3 *begin coldfinger3
+ 3 *end coldfinger3
+ 5 *tropmi caves-1623/258/coldfinger3
+ 5 *import caves-1623/258/thewrongchoice
+ 3 *begin thewrongchoice
+ 3 *end thewrongchoice
+ 5 *tropmi caves-1623/258/thewrongchoice
+ 5 *import caves-1623/258/nochoiceatall
+ 3 *begin nochoiceatall
+ 3 *end nochoiceatall
+ 5 *tropmi caves-1623/258/nochoiceatall
+ 5 *import caves-1623/258/nochoiceatall2
+ 3 *begin nochoiceatall2
+ 3 *end nochoiceatall2
+ 5 *tropmi caves-1623/258/nochoiceatall2
+ 5 *import caves-1623/258/generalscrot
+ 3 *begin generalscrot
+ 3 *end generalscrot
+ 5 *tropmi caves-1623/258/generalscrot
+ 5 *import caves-1623/258/feckingtight
+ 3 *begin feckingtight
+ 3 *end feckingtight
+ 5 *tropmi caves-1623/258/feckingtight
+ 5 *import caves-1623/258/grikeexpectations
+ 3 *begin grikeexpectations
+ 3 *end grikeexpectations
+ 5 *tropmi caves-1623/258/grikeexpectations
+ 5 *import caves-1623/258/inferno
+ 3 *begin inferno
+ 3 *end inferno
+ 5 *tropmi caves-1623/258/inferno
+ 5 *import caves-1623/258/anthemusa
+ 3 *begin anthemusa
+ 3 *end anthemusa
+ 5 *tropmi caves-1623/258/anthemusa
+ 5 *import caves-1623/258/flashhard
+ 3 *begin flashhard
+ 3 *end flashhard
+ 5 *tropmi caves-1623/258/flashhard
+ 5 *import caves-1623/258/flashhard2
+ 3 *begin flashhard2
+ 3 *end flashhard2
+ 5 *tropmi caves-1623/258/flashhard2
+ 5 *import caves-1623/258/claytonscockup
+ 3 *begin claytonscockup
+ 3 *end claytonscockup
+ 5 *tropmi caves-1623/258/claytonscockup
+ 5 *import caves-1623/258/penguinfellatio2
+ 3 *begin penguinfellatio2
+ 3 *end penguinfellatio2
+ 5 *tropmi caves-1623/258/penguinfellatio2
+ 5 *import caves-1623/258/daftchoice
+ 3 *begin daftchoice
+ 3 *end daftchoice
+ 5 *tropmi caves-1623/258/daftchoice
+ 5 *import caves-1623/258/daftchoice2
+ 3 *begin daftchoice2
+ 3 *end daftchoice2
+ 5 *tropmi caves-1623/258/daftchoice2
+ 5 *import caves-1623/258/daftchoice3
+ 3 *begin daftchoice3
+ 3 *end daftchoice3
+ 5 *tropmi caves-1623/258/daftchoice3
+ 5 *import caves-1623/258/whatwouldyourmothersay
+ 3 *begin whatwouldyourmothersay
+ 3 *end whatwouldyourmothersay
+ 5 *tropmi caves-1623/258/whatwouldyourmothersay
+ 5 *import caves-1623/258/wrongway
+ 3 *begin wrongway
+ 3 *end wrongway
+ 5 *tropmi caves-1623/258/wrongway
+ 5 *import caves-1623/258/not_the_beast
+ 3 *begin not_the_beast
+ 3 *end not_the_beast
+ 5 *tropmi caves-1623/258/not_the_beast
+ 5 *import caves-1623/258/riggermortis
+ 3 *begin riggermortis
+ 3 *end riggermortis
+ 5 *tropmi caves-1623/258/riggermortis
+ 5 *import caves-1623/258/thebeastloop
+ 3 *begin thebeastloop
+ 3 *end thebeastloop
+ 5 *tropmi caves-1623/258/thebeastloop
+ 5 *import caves-1623/258/beastsideleads
+ 3 *begin beastsideleads
+ 3 *end beastsideleads
+ 5 *tropmi caves-1623/258/beastsideleads
+ 5 *import caves-1623/258/corroborate
+ 3 *begin corroborate1
+ 3 *end corroborate1
+ 3 *begin corroborate2
+ 3 *end corroborate2
+ 5 *tropmi caves-1623/258/corroborate
+ 2 *end 258
+ 4 *tropmi caves-1623/258/258
+ 4 *import caves-1623/264/264
+ 2 *begin 264
+ 5 *import caves-1623/264/lower_balkon/lower_balkon
+ 3 *begin lower_balkon
+ 6 *import caves-1623/264/lower_balkon/naturecalls
+ 4 *begin naturecalls
+ 4 *end naturecalls
+ 6 *tropmi caves-1623/264/lower_balkon/naturecalls
+ 6 *import caves-1623/264/lower_balkon/mash
+ 4 *begin mash
+ 4 *end mash
+ 6 *tropmi caves-1623/264/lower_balkon/mash
+ 6 *import caves-1623/264/lower_balkon/mash2
+ 4 *begin mash2
+ 4 *end mash2
+ 6 *tropmi caves-1623/264/lower_balkon/mash2
+ 6 *import caves-1623/264/lower_balkon/hangman
+ 4 *begin hangman
+ 4 *end hangman
+ 6 *tropmi caves-1623/264/lower_balkon/hangman
+ 6 *import caves-1623/264/lower_balkon/hangmansdaughter
+ 4 *begin hangmansdaughter
+ 4 *end hangmansdaughter
+ 6 *tropmi caves-1623/264/lower_balkon/hangmansdaughter
+ 6 *import caves-1623/264/lower_balkon/prangman
+ 4 *begin prangman
+ 4 *end prangman
+ 6 *tropmi caves-1623/264/lower_balkon/prangman
+ 6 *import caves-1623/264/lower_balkon/snailtrail
+ 4 *begin snailtrail
+ 4 *end snailtrail
+ 6 *tropmi caves-1623/264/lower_balkon/snailtrail
+ 6 *import caves-1623/264/lower_balkon/sluggish
+ 4 *begin sluggish
+ 4 *end sluggish
+ 6 *tropmi caves-1623/264/lower_balkon/sluggish
+ 6 *import caves-1623/264/lower_balkon/mudslope
+ 4 *begin mudslope
+ 4 *end mudslope
+ 6 *tropmi caves-1623/264/lower_balkon/mudslope
+ 6 *import caves-1623/264/lower_balkon/choked
+ 4 *begin choked
+ 4 *end choked
+ 6 *tropmi caves-1623/264/lower_balkon/choked
+ 6 *import caves-1623/264/lower_balkon/mudslope2
+ 4 *begin mudslope2
+ 4 *end mudslope2
+ 6 *tropmi caves-1623/264/lower_balkon/mudslope2
+ 6 *import caves-1623/264/lower_balkon/mongolrally
+ 4 *begin mongolrally
+ 4 *end mongolrally
+ 6 *tropmi caves-1623/264/lower_balkon/mongolrally
+ 6 *import caves-1623/264/lower_balkon/littleboy
+ 4 *begin littleboy
+ 4 *end littleboy
+ 6 *tropmi caves-1623/264/lower_balkon/littleboy
+ 6 *import caves-1623/264/lower_balkon/floodland
+ 4 *begin floodland
+ 4 *end floodland
+ 6 *tropmi caves-1623/264/lower_balkon/floodland
+ 6 *import caves-1623/264/lower_balkon/catlitter
+ 4 *begin catlitter
+ 4 *end catlitter
+ 6 *tropmi caves-1623/264/lower_balkon/catlitter
+ 6 *import caves-1623/264/lower_balkon/myopia
+ 4 *begin myopia
+ 4 *end myopia
+ 6 *tropmi caves-1623/264/lower_balkon/myopia
+ 6 *import caves-1623/264/lower_balkon/pitstop
+ 4 *begin pitstop
+ 4 *end pitstop
+ 6 *tropmi caves-1623/264/lower_balkon/pitstop
+ 6 *import caves-1623/264/lower_balkon/safencomfortable
+ 4 *begin safencomfortable
+ 4 *end safencomfortable
+ 6 *tropmi caves-1623/264/lower_balkon/safencomfortable
+ 6 *import caves-1623/264/lower_balkon/turnbacktime
+ 4 *begin turnbacktime
+ 4 *end turnbacktime
+ 6 *tropmi caves-1623/264/lower_balkon/turnbacktime
+ 6 *import caves-1623/264/lower_balkon/pitstop_2
+ 4 *begin pitstop_2
+ 4 *end pitstop_2
+ 6 *tropmi caves-1623/264/lower_balkon/pitstop_2
+ 6 *import caves-1623/264/lower_balkon/pitstop_3
+ 4 *begin pitstop_3
+ 4 *end pitstop_3
+ 6 *tropmi caves-1623/264/lower_balkon/pitstop_3
+ 6 *import caves-1623/264/lower_balkon/pitstop_4
+ 4 *begin pitstop_4
+ 4 *end pitstop_4
+ 6 *tropmi caves-1623/264/lower_balkon/pitstop_4
+ 6 *import caves-1623/264/lower_balkon/suctioncup
+ 4 *begin suctioncup
+ 4 *end suctioncup
+ 6 *tropmi caves-1623/264/lower_balkon/suctioncup
+ 6 *import caves-1623/264/lower_balkon/onedirection
+ 4 *begin onedirection
+ 4 *end onedirection
+ 6 *tropmi caves-1623/264/lower_balkon/onedirection
+ 6 *import caves-1623/264/lower_balkon/scoopyloopy
+ 4 *begin scoopyloopy
+ 4 *end scoopyloopy
+ 6 *tropmi caves-1623/264/lower_balkon/scoopyloopy
+ 6 *import caves-1623/264/lower_balkon/2cold2think
+ 4 *begin 2cold2think
+ 4 *end 2cold2think
+ 6 *tropmi caves-1623/264/lower_balkon/2cold2think
+ 6 *import caves-1623/264/lower_balkon/mush
+ 4 *begin mush
+ 4 *end mush
+ 6 *tropmi caves-1623/264/lower_balkon/mush
+ 6 *import caves-1623/264/lower_balkon/rubberman
+ 4 *begin rubberman
+ 4 *end rubberman
+ 6 *tropmi caves-1623/264/lower_balkon/rubberman
+ 6 *import caves-1623/264/lower_balkon/rubbermanstream
+ 4 *begin rubbermanstream
+ 4 *end rubbermanstream
+ 6 *tropmi caves-1623/264/lower_balkon/rubbermanstream
+ 6 *import caves-1623/264/lower_balkon/camploop
+ 4 *begin CAMPLOOP
+ 4 *end CAMPLOOP
+ 6 *tropmi caves-1623/264/lower_balkon/camploop
+ 6 *import caves-1623/264/lower_balkon/waterhole
+ 4 *begin waterhole
+ 4 *end waterhole
+ 6 *tropmi caves-1623/264/lower_balkon/waterhole
+ 6 *import caves-1623/264/lower_balkon/littleboyboltclimbs
+ 4 *begin littleboyboltclimbs
+ 4 *end littleboyboltclimbs
+ 6 *tropmi caves-1623/264/lower_balkon/littleboyboltclimbs
+ 6 *import caves-1623/264/lower_balkon/lbbeneaththeboulders
+ 4 *begin lbbeneaththeboulders
+ 4 *end lbbeneaththeboulders
+ 6 *tropmi caves-1623/264/lower_balkon/lbbeneaththeboulders
+ 6 *import caves-1623/264/lower_balkon/ntdwyt
+ 4 *begin ntdwyt
+ 4 *end ntdwyt
+ 6 *tropmi caves-1623/264/lower_balkon/ntdwyt
+ 6 *import caves-1623/264/lower_balkon/northernpowerhouse
+ 4 *begin northernpowerhouse
+ 4 *end northernpowerhouse
+ 6 *tropmi caves-1623/264/lower_balkon/northernpowerhouse
+ 6 *import caves-1623/264/lower_balkon/youdontknowyourebeautiful
+ 4 *begin youdontknowyourebeautiful
+ 4 *end youdontknowyourebeautiful
+ 6 *tropmi caves-1623/264/lower_balkon/youdontknowyourebeautiful
+ 6 *import caves-1623/264/lower_balkon/microscopicthunder
+ 4 *begin microscopicthunder
+ 4 *end microscopicthunder
+ 6 *tropmi caves-1623/264/lower_balkon/microscopicthunder
+ 6 *import caves-1623/264/lower_balkon/ichfuhlenichts
+ 4 *begin ichfuhlenichts
+ 4 *end ichfuhlenichts
+ 6 *tropmi caves-1623/264/lower_balkon/ichfuhlenichts
+ 6 *import caves-1623/264/lower_balkon/einfach
+ 4 *begin einfach
+ 4 *end einfach
+ 6 *tropmi caves-1623/264/lower_balkon/einfach
+ 6 *import caves-1623/264/lower_balkon/lipstickdipstick
+ 4 *begin lipstickdipstick
+ 4 *end lipstickdipstick
+ 6 *tropmi caves-1623/264/lower_balkon/lipstickdipstick
+ 6 *import caves-1623/264/lower_balkon/medusasmaze
+ 4 *begin medusasmaze
+ 4 *end medusasmaze
+ 6 *tropmi caves-1623/264/lower_balkon/medusasmaze
+ 6 *import caves-1623/264/lower_balkon/medusasmaze2
+ 4 *begin medusasmaze2
+ 4 *end medusasmaze2
+ 6 *tropmi caves-1623/264/lower_balkon/medusasmaze2
+ 6 *import caves-1623/264/lower_balkon/wheresthemilk
+ 4 *begin wheresthemilk
+ 4 *end wheresthemilk
+ 6 *tropmi caves-1623/264/lower_balkon/wheresthemilk
+ 6 *import caves-1623/264/lower_balkon/drunkdrivers
+ 4 *begin drunkdrivers
+ 4 *end drunkdrivers
+ 6 *tropmi caves-1623/264/lower_balkon/drunkdrivers
+ 6 *import caves-1623/264/lower_balkon/custardcavalry
+ 4 *begin custardcavalry
+ 4 *end custardcavalry
+ 6 *tropmi caves-1623/264/lower_balkon/custardcavalry
+ 6 *import caves-1623/264/lower_balkon/myopia2
+ 4 *begin myopia2
+ 4 *end myopia2
+ 6 *tropmi caves-1623/264/lower_balkon/myopia2
+ 3 *end lower_balkon
+ 5 *tropmi caves-1623/264/lower_balkon/lower_balkon
+ 5 *import caves-1623/264/horizontalentrance
+ 3 *begin horizontalentrance
+ 3 *end horizontalentrance
+ 5 *tropmi caves-1623/264/horizontalentrance
+ 5 *import caves-1623/264/entrancepitch1
+ 3 *begin entrancepitch1
+ 3 *end entrancepitch1
+ 5 *tropmi caves-1623/264/entrancepitch1
+ 5 *import caves-1623/264/entrancepitch2
+ 3 *begin entrancepitch2
+ 3 *end entrancepitch2
+ 5 *tropmi caves-1623/264/entrancepitch2
+ 5 *import caves-1623/264/roomwithaview
+ 3 *begin roomwithaview
+ 3 *end roomwithaview
+ 5 *tropmi caves-1623/264/roomwithaview
+ 5 *import caves-1623/264/roommop
+ 3 *begin roommop
+ 3 *end roommop
+ 5 *tropmi caves-1623/264/roommop
+ 5 *import caves-1623/264/roomwithaview2
+ 3 *begin roomwithaview2
+ 3 *end roomwithaview2
+ 5 *tropmi caves-1623/264/roomwithaview2
+ 5 *import caves-1623/264/smashcrashpassage
+ 3 *begin smashcrashpassage
+ 3 *end smashcrashpassage
+ 5 *tropmi caves-1623/264/smashcrashpassage
+ 5 *import caves-1623/264/crashmop
+ 3 *begin crashmop
+ 3 *end crashmop
+ 5 *tropmi caves-1623/264/crashmop
+ 5 *import caves-1623/264/liarsbakery
+ 3 *begin liarsbakery
+ 3 *end liarsbakery
+ 5 *tropmi caves-1623/264/liarsbakery
+ 5 *import caves-1623/264/pitpot
+ 3 *begin pitpot
+ 3 *end pitpot
+ 5 *tropmi caves-1623/264/pitpot
+ 5 *import caves-1623/264/lemonsnout
+ 3 *begin lemonsnout
+ 3 *end lemonsnout
+ 5 *tropmi caves-1623/264/lemonsnout
+ 5 *import caves-1623/264/leedsbypass
+ 3 *begin leedsbypass
+ 3 *end leedsbypass
+ 5 *tropmi caves-1623/264/leedsbypass
+ 5 *import caves-1623/264/pitpot2
+ 3 *begin pitpot2
+ 3 *end pitpot2
+ 5 *tropmi caves-1623/264/pitpot2
+ 5 *import caves-1623/264/pitpot3
+ 3 *begin pitpot3
+ 3 *end pitpot3
+ 5 *tropmi caves-1623/264/pitpot3
+ 5 *import caves-1623/264/amalgamation
+ 3 *begin amalgamation
+ 3 *end amalgamation
+ 5 *tropmi caves-1623/264/amalgamation
+ 5 *import caves-1623/264/darkarts
+ 3 *begin darkarts
+ 3 *end darkarts
+ 5 *tropmi caves-1623/264/darkarts
+ 5 *import caves-1623/264/darkartsII
+ 3 *begin darkartsII
+ 3 *end darkartsII
+ 5 *tropmi caves-1623/264/darkartsII
+ 5 *import caves-1623/264/darkartsI
+ 3 *begin darkartsI
+ 3 *end darkartsI
+ 5 *tropmi caves-1623/264/darkartsI
+ 5 *import caves-1623/264/leedsbypass2
+ 3 *begin leedsbypass2
+ 3 *end leedsbypass2
+ 5 *tropmi caves-1623/264/leedsbypass2
+ 5 *import caves-1623/264/darkartsiii
+ 3 *begin darkartsiii
+ 3 *end darkartsiii
+ 5 *tropmi caves-1623/264/darkartsiii
+ 5 *import caves-1623/264/scrottytubei
+ 3 *begin scrottytubei
+ 3 *end scrottytubei
+ 5 *tropmi caves-1623/264/scrottytubei
+ 5 *import caves-1623/264/scrottytubeii
+ 3 *begin scrottytubeii
+ 3 *end scrottytubeii
+ 5 *tropmi caves-1623/264/scrottytubeii
+ 5 *import caves-1623/264/lemonsnoutrosyringpiece
+ 3 *begin lemonsnoutrosyringpiece
+ 3 *end lemonsnoutrosyringpiece
+ 5 *tropmi caves-1623/264/lemonsnoutrosyringpiece
+ 5 *import caves-1623/264/pointlesssniffing
+ 3 *begin pointlesssniffing
+ 3 *end pointlesssniffing
+ 5 *tropmi caves-1623/264/pointlesssniffing
+ 5 *import caves-1623/264/deadbatpitch
+ 3 *begin deadbatpitch
+ 3 *end deadbatpitch
+ 5 *tropmi caves-1623/264/deadbatpitch
+ 5 *import caves-1623/264/deadbatpitchconn
+ 3 *begin deadbatpitchconn
+ 3 *end deadbatpitchconn
+ 5 *tropmi caves-1623/264/deadbatpitchconn
+ 5 *import caves-1623/264/lemoncrapout
+ 3 *begin lemoncrapout
+ 3 *end lemoncrapout
+ 5 *tropmi caves-1623/264/lemoncrapout
+ 5 *import caves-1623/264/farside
+ 3 *begin farside
+ 3 *end farside
+ 3 *begin farsideco1
+ 3 *end farsideco1
+ 3 *begin farsideco2
+ 3 *end farsideco2
+ 3 *begin farsideco3
+ 3 *end farsideco3
+ 3 *begin farsideco4
+ 3 *end farsideco4
+ 3 *begin farsideco5
+ 3 *end farsideco5
+ 5 *tropmi caves-1623/264/farside
+ 5 *import caves-1623/264/turtlehead
+ 3 *begin turtlehead
+ 3 *end turtlehead
+ 5 *tropmi caves-1623/264/turtlehead
+ 5 *import caves-1623/264/turtleheadco
+ 3 *begin turtleheadco
+ 3 *end turtleheadco
+ 5 *tropmi caves-1623/264/turtleheadco
+ 5 *import caves-1623/264/leedsbypass3
+ 3 *begin leedsbypass3
+ 3 *end leedsbypass3
+ 5 *tropmi caves-1623/264/leedsbypass3
+ 5 *import caves-1623/264/hiltiaplenty
+ 3 *begin hiltiaplenty
+ 3 *end hiltiaplenty
+ 5 *tropmi caves-1623/264/hiltiaplenty
+ 5 *import caves-1623/264/spanner
+ 3 *begin spanner
+ 3 *end spanner
+ 5 *tropmi caves-1623/264/spanner
+ 5 *import caves-1623/264/cathedralchasm
+ 3 *begin cathedralchasm
+ 3 *end cathedralchasm
+ 5 *tropmi caves-1623/264/cathedralchasm
+ 5 *import caves-1623/264/cathedralLC1
+ 3 *begin cathedralLC1
+ 3 *end cathedralLC1
+ 5 *tropmi caves-1623/264/cathedralLC1
+ 5 *import caves-1623/264/cathedralLC2
+ 3 *begin cathedralLC2
+ 3 *end cathedralLC2
+ 5 *tropmi caves-1623/264/cathedralLC2
+ 5 *import caves-1623/264/avalancheexperience
+ 3 *begin avalancheexperience
+ 3 *end avalancheexperience
+ 5 *tropmi caves-1623/264/avalancheexperience
+ 5 *import caves-1623/264/pitch59b
+ 3 *begin pitch59b
+ 3 *end pitch59b
+ 5 *tropmi caves-1623/264/pitch59b
+ 5 *import caves-1623/264/noserock
+ 3 *begin noserock
+ 3 *end noserock
+ 5 *tropmi caves-1623/264/noserock
+ 5 *import caves-1623/264/einundzwanzig
+ 3 *begin einundzwanzig
+ 3 *end einundzwanzig
+ 5 *tropmi caves-1623/264/einundzwanzig
+ 5 *import caves-1623/264/icecock
+ 3 *begin icecock
+ 3 *end icecock
+ 5 *tropmi caves-1623/264/icecock
+ 5 *import caves-1623/264/noserock2
+ 3 *begin noserock2
+ 3 *end noserock2
+ 5 *tropmi caves-1623/264/noserock2
+ 5 *import caves-1623/264/northhole
+ 3 *begin northhole
+ 3 *end northhole
+ 5 *tropmi caves-1623/264/northhole
+ 5 *import caves-1623/264/icecock2
+ 3 *begin icecock2
+ 3 *end icecock2
+ 5 *tropmi caves-1623/264/icecock2
+ 5 *import caves-1623/264/gosserwager
+ 3 *begin gosserwager
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end gosserwager
+ 5 *tropmi caves-1623/264/gosserwager
+ 5 *import caves-1623/264/gosserwager2
+ 3 *begin gosserwager2
+ 3 *end gosserwager2
+ 5 *tropmi caves-1623/264/gosserwager2
+ 5 *import caves-1623/264/frozennorth
+ 3 *begin frozennorth
+ 3 *end frozennorth
+ 5 *tropmi caves-1623/264/frozennorth
+ 5 *import caves-1623/264/frozennorth2
+ 3 *begin frozennorth2
+ 3 *end frozennorth2
+ 5 *tropmi caves-1623/264/frozennorth2
+ 5 *import caves-1623/264/icecockLC1
+ 3 *begin icecockLC1
+ 3 *end icecockLC1
+ 5 *tropmi caves-1623/264/icecockLC1
+ 5 *import caves-1623/264/icecockLC2
+ 3 *begin icecockLC2
+ 3 *end icecockLC2
+ 5 *tropmi caves-1623/264/icecockLC2
+ 5 *import caves-1623/264/bipedal
+ 3 *begin bipedal
+ 3 *end bipedal
+ 5 *tropmi caves-1623/264/bipedal
+ 5 *import caves-1623/264/frozennorth3
+ 3 *begin frozennorth3
+ 3 *end frozennorth3
+ 5 *tropmi caves-1623/264/frozennorth3
+ 5 *import caves-1623/264/rabbitwarrens
+ 3 *begin rabbitwarrens
+ 3 *end rabbitwarrens
+ 5 *tropmi caves-1623/264/rabbitwarrens
+ 5 *import caves-1623/264/digdug
+ 3 *begin digdug
+ 3 *end digdug
+ 5 *tropmi caves-1623/264/digdug
+ 5 *import caves-1623/264/beyonddigdug
+ 3 *begin beyonddigdug
+ 3 *end beyonddigdug
+ 5 *tropmi caves-1623/264/beyonddigdug
+ 5 *import caves-1623/264/beyondthunderdome
+ 3 *begin beyondthunderdome
+ 3 *end beyondthunderdome
+ 5 *tropmi caves-1623/264/beyondthunderdome
+ 5 *import caves-1623/264/pubicsynthesis
+ 3 *begin pubicsynthesis
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end pubicsynthesis
+ 5 *tropmi caves-1623/264/pubicsynthesis
+ 5 *import caves-1623/264/hiltiaplentypitch
+ 3 *begin hiltiaplentypitch
+ 4 *begin
+ 4 *end
+ 3 *end hiltiaplentypitch
+ 5 *tropmi caves-1623/264/hiltiaplentypitch
+ 5 *import caves-1623/264/hiltiaplentychamber
+ 3 *begin hiltiaplentychamber
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end hiltiaplentychamber
+ 5 *tropmi caves-1623/264/hiltiaplentychamber
+ 5 *import caves-1623/264/ulsagrotto
+ 3 *begin ulsagrotto
+ 3 *end ulsagrotto
+ 5 *tropmi caves-1623/264/ulsagrotto
+ 5 *import caves-1623/264/sponge_chamber
+ 3 *begin sponge_chamber
+ 4 *begin
+ 4 *end
+ 3 *end sponge_chamber
+ 5 *tropmi caves-1623/264/sponge_chamber
+ 5 *import caves-1623/264/sponge_chamber2
+ 3 *begin sponge_chamber2
+ 3 *end sponge_chamber2
+ 5 *tropmi caves-1623/264/sponge_chamber2
+ 5 *import caves-1623/264/bipedalpassage
+ 3 *begin bipedalpassage
+ 3 *end bipedalpassage
+ 5 *tropmi caves-1623/264/bipedalpassage
+ 5 *import caves-1623/264/bipedalpassage2
+ 3 *begin bipedalpassage2
+ 3 *end bipedalpassage2
+ 5 *tropmi caves-1623/264/bipedalpassage2
+ 5 *import caves-1623/264/bipedalpassage3
+ 3 *begin bipedalpassage3
+ 3 *end bipedalpassage3
+ 5 *tropmi caves-1623/264/bipedalpassage3
+ 5 *import caves-1623/264/bipedalpassage4
+ 3 *begin bipedalpassage4
+ 3 *end bipedalpassage4
+ 5 *tropmi caves-1623/264/bipedalpassage4
+ 5 *import caves-1623/264/icecock3
+ 3 *begin icecock3
+ 3 *end icecock3
+ 5 *tropmi caves-1623/264/icecock3
+ 5 *import caves-1623/264/northhole2
+ 3 *begin northhole2
+ 3 *end northhole2
+ 5 *tropmi caves-1623/264/northhole2
+ 5 *import caves-1623/264/frozennorth4
+ 3 *begin frozennorth4
+ 3 *end frozennorth4
+ 5 *tropmi caves-1623/264/frozennorth4
+ 5 *import caves-1623/264/rabbitwarrenstoeinundzwanzig
+ 3 *begin rabbitwarrenstoeinundzwanzig
+ 3 *end rabbitwarrenstoeinundzwanzig
+ 5 *tropmi caves-1623/264/rabbitwarrenstoeinundzwanzig
+ 5 *import caves-1623/264/gosserwager3
+ 3 *begin gosserwager3
+ 3 *end gosserwager3
+ 5 *tropmi caves-1623/264/gosserwager3
+ 5 *import caves-1623/264/bipedalpassage5
+ 3 *begin bipedalpassage5
+ 3 *end bipedalpassage5
+ 5 *tropmi caves-1623/264/bipedalpassage5
+ 5 *import caves-1623/264/gosserwager4
+ 3 *begin gosserwager4
+ 3 *end gosserwager4
+ 5 *tropmi caves-1623/264/gosserwager4
+ 5 *import caves-1623/264/belowhiltiaplenty
+ 3 *begin belowhiltiaplenty
+ 3 *end belowhiltiaplenty
+ 5 *tropmi caves-1623/264/belowhiltiaplenty
+ 5 *import caves-1623/264/belowhiltiaplenty2
+ 3 *begin belowhiltiaplenty2
+ 3 *end belowhiltiaplenty2
+ 5 *tropmi caves-1623/264/belowhiltiaplenty2
+ 5 *import caves-1623/264/penguinfellatio
+ 3 *begin penguinfellatio
+ 3 *end penguinfellatio
+ 5 *tropmi caves-1623/264/penguinfellatio
+ 5 *import caves-1623/264/voyeur
+ 3 *begin voyeur
+ 3 *end voyeur
+ 5 *tropmi caves-1623/264/voyeur
+ 5 *import caves-1623/264/darkartsiv
+ 3 *begin darkartsiv
+ 3 *end darkartsiv
+ 5 *tropmi caves-1623/264/darkartsiv
+ 5 *import caves-1623/264/darkartsv
+ 3 *begin darkartsv
+ 3 *end darkartsv
+ 5 *tropmi caves-1623/264/darkartsv
+ 5 *import caves-1623/264/darkartsvi
+ 3 *begin darkartsvi
+ 3 *end darkartsvi
+ 5 *tropmi caves-1623/264/darkartsvi
+ 5 *import caves-1623/264/tightyorkshireman
+ 3 *begin tightyorkshireman
+ 3 *end tightyorkshireman
+ 5 *tropmi caves-1623/264/tightyorkshireman
+ 5 *import caves-1623/264/swingers
+ 3 *begin swingers
+ 3 *end swingers
+ 5 *tropmi caves-1623/264/swingers
+ 5 *import caves-1623/264/crushedplumbspitch
+ 3 *begin crushedplumbspitch
+ 3 *end crushedplumbspitch
+ 5 *tropmi caves-1623/264/crushedplumbspitch
+ 5 *import caves-1623/264/tinaturnersmerkin
+ 3 *begin tinaturnersmerkin
+ 3 *end tinaturnersmerkin
+ 5 *tropmi caves-1623/264/tinaturnersmerkin
+ 5 *import caves-1623/264/underexcitment
+ 3 *begin underexcitment
+ 3 *end underexcitment
+ 5 *tropmi caves-1623/264/underexcitment
+ 5 *import caves-1623/264/consolidation
+ 3 *begin consolidation
+ 3 *end consolidation
+ 5 *tropmi caves-1623/264/consolidation
+ 5 *import caves-1623/264/oneshotwonder
+ 3 *begin oneshotwonder
+ 3 *end oneshotwonder
+ 5 *tropmi caves-1623/264/oneshotwonder
+ 5 *import caves-1623/264/longdrop
+ 3 *begin longdrop
+ 3 *end longdrop
+ 5 *tropmi caves-1623/264/longdrop
+ 5 *import caves-1623/264/northern_straight
+ 3 *begin northernstraight
+ 3 *end northernstraight
+ 5 *tropmi caves-1623/264/northern_straight
+ 5 *import caves-1623/264/snowhole
+ 3 *begin snowhole
+ 3 *end snowhole
+ 5 *tropmi caves-1623/264/snowhole
+ 5 *import caves-1623/264/roundabout
+ 3 *begin roundabout
+ 3 *end roundabout
+ 5 *tropmi caves-1623/264/roundabout
+ 5 *import caves-1623/264/caving101
+ 3 *begin caving101
+ 3 *end caving101
+ 5 *tropmi caves-1623/264/caving101
+ 5 *import caves-1623/264/doublescoop
+ 3 *begin doublescoop
+ 3 *end doublescoop
+ 5 *tropmi caves-1623/264/doublescoop
+ 5 *import caves-1623/264/doublescoop2
+ 3 *begin doublescoop2
+ 3 *end doublescoop2
+ 5 *tropmi caves-1623/264/doublescoop2
+ 5 *import caves-1623/264/fatmanscoop
+ 3 *begin fatmanscoop
+ 3 *end fatmanscoop
+ 5 *tropmi caves-1623/264/fatmanscoop
+ 5 *import caves-1623/264/fatmanscoop2
+ 3 *begin fatmanscoop2
+ 3 *end fatmanscoop2
+ 5 *tropmi caves-1623/264/fatmanscoop2
+ 5 *import caves-1623/264/badattitude
+ 3 *begin badattitude
+ 3 *end badattitude
+ 5 *tropmi caves-1623/264/badattitude
+ 5 *import caves-1623/264/lets_be_appalling
+ 3 *begin lets_be_appalling
+ 3 *end lets_be_appalling
+ 5 *tropmi caves-1623/264/lets_be_appalling
+ 5 *import caves-1623/264/cant_stop_bat_country
+ 3 *begin cant_stop_bat_country
+ 3 *end cant_stop_bat_country
+ 5 *tropmi caves-1623/264/cant_stop_bat_country
+ 5 *import caves-1623/264/watertorture
+ 3 *begin watertorture
+ 3 *end watertorture
+ 5 *tropmi caves-1623/264/watertorture
+ 5 *import caves-1623/264/keepsongiving
+ 3 *begin keepsongiving
+ 3 *end keepsongiving
+ 5 *tropmi caves-1623/264/keepsongiving
+ 5 *import caves-1623/264/hiltigalactica
+ 3 *begin hiltigalactica
+ 3 *end hiltigalactica
+ 5 *tropmi caves-1623/264/hiltigalactica
+ 5 *import caves-1623/264/cathedralchasm2
+ 3 *begin cathedralchasm2
+ 3 *end cathedralchasm2
+ 5 *tropmi caves-1623/264/cathedralchasm2
+ 5 *import caves-1623/264/longdrop2
+ 3 *begin longdrop2
+ 3 *end longdrop2
+ 5 *tropmi caves-1623/264/longdrop2
+ 5 *import caves-1623/264/sloppyseconds1
+ 3 *begin sloppyseconds1
+ 3 *end sloppyseconds1
+ 5 *tropmi caves-1623/264/sloppyseconds1
+ 5 *import caves-1623/264/galactica
+ 3 *begin galactica
+ 3 *end galactica
+ 5 *tropmi caves-1623/264/galactica
+ 5 *import caves-1623/264/sloppyseconds2
+ 3 *begin sloppyseconds2
+ 3 *end sloppyseconds2
+ 5 *tropmi caves-1623/264/sloppyseconds2
+ 5 *import caves-1623/264/nothingtosee
+ 3 *begin nothingtosee
+ 3 *end nothingtosee
+ 5 *tropmi caves-1623/264/nothingtosee
+ 5 *import caves-1623/264/the_mendips
+ 3 *begin the_mendips
+ 3 *end the_mendips
+ 5 *tropmi caves-1623/264/the_mendips
+ 5 *import caves-1623/264/mysterious_schlag
+ 3 *begin mysterious_schlag
+ 3 *end mysterious_schlag
+ 5 *tropmi caves-1623/264/mysterious_schlag
+ 5 *import caves-1623/264/pointless_dig
+ 3 *begin pointless_dig
+ 3 *end pointless_dig
+ 5 *tropmi caves-1623/264/pointless_dig
+ 5 *import caves-1623/264/secondwind
+ 3 *begin secondwind
+ 3 *end secondwind
+ 5 *tropmi caves-1623/264/secondwind
+ 5 *import caves-1623/264/secondhand
+ 3 *begin secondhand
+ 3 *end secondhand
+ 5 *tropmi caves-1623/264/secondhand
+ 5 *import caves-1623/264/dog_end_series
+ 3 *begin dog_end_series
+ 3 *end dog_end_series
+ 5 *tropmi caves-1623/264/dog_end_series
+ 5 *import caves-1623/264/nothing2see
+ 3 *begin nothing2see
+ 3 *end nothing2see
+ 5 *tropmi caves-1623/264/nothing2see
+ 5 *import caves-1623/264/nothingtosee3
+ 3 *begin nothingtosee3
+ 3 *end nothingtosee3
+ 5 *tropmi caves-1623/264/nothingtosee3
+ 5 *import caves-1623/264/hilti_nts_bones_pitch
+ 3 *begin hilti_nts_bones_pitch
+ 3 *end hilti_nts_bones_pitch
+ 5 *tropmi caves-1623/264/hilti_nts_bones_pitch
+ 5 *import caves-1623/264/hilti_nts_near_bats
+ 3 *begin hilti_nts_near_bats
+ 3 *end hilti_nts_near_bats
+ 5 *tropmi caves-1623/264/hilti_nts_near_bats
+ 5 *import caves-1623/264/hilti_nts_near_start
+ 3 *begin hilti_nts_near_start
+ 3 *end hilti_nts_near_start
+ 5 *tropmi caves-1623/264/hilti_nts_near_start
+ 5 *import caves-1623/264/the_backslash
+ 3 *begin the_backslash
+ 3 *end the_backslash
+ 5 *tropmi caves-1623/264/the_backslash
+ 2 *end 264
+ 4 *tropmi caves-1623/264/264
+ 3 *tropmi caves-1623/caves-smk-north
+ 2 *tropmi caves-1623/caves-smk
+ 2 *import surface/1623/allsurface
+ 2 *begin
+ 3 *import surface/1623/allplateau
+ 4 *import surface/1623/p108
+ 3 *begin 108surf
+ 3 *end 108surf
+ 4 *tropmi surface/1623/p108
+ 4 *import surface/1623/bogen
+ 3 *begin 2006-06
+ 3 *end 2006-06
+ 4 *tropmi surface/1623/bogen
+ 4 *import surface/1623/164surf
+ 3 *begin 164Surf
+ 3 *end 164surf
+ 3 *begin 164conn
+ 3 *end 164conn
+ 4 *tropmi surface/1623/164surf
+ 4 *import surface/1623/172to171a
+ 3 *begin 172to171a
+ 3 *end 172to171a
+ 4 *tropmi surface/1623/172to171a
+ 4 *import surface/1623/182area
+ 3 *begin 182toTC
+ 3 *end 182toTC
+ 3 *begin 182to184
+ 3 *end 182to184
+ 3 *begin 182to183
+ 3 *end 182to183
+ 4 *tropmi surface/1623/182area
+ 4 *import surface/1623/186totc
+ 3 *begin 186toTC
+ 3 *end 186toTC
+ 4 *tropmi surface/1623/186totc
+ 4 *import surface/1623/b4surf
+ 3 *begin b4surf
+ 3 *end b4surf
+ 4 *tropmi surface/1623/b4surf
+ 4 *import surface/1623/colto11
+ 3 *begin colto11
+ 3 *end colto11
+ 4 *tropmi surface/1623/colto11
+ 4 *import surface/1623/2006-72_to_spit
+ 3 *begin 2006-72_to_spit
+ 3 *end 2006-72_to_spit
+ 4 *tropmi surface/1623/2006-72_to_spit
+ 4 *import surface/1623/colto97
+ 3 *begin 145to145c
+ 3 *end 145to145c
+ 3 *begin 145to82
+ 3 *end 145to82
+ 3 *begin colto145
+ 3 *end colto145
+ 3 *begin 145to107
+ 3 *end 145to107
+ 3 *begin 82to97
+ 3 *end 82to97
+ 4 *tropmi surface/1623/colto97
+ 4 *import surface/1623/near06
+ 3 *begin near06
+ 3 *end near06
+ 4 *tropmi surface/1623/near06
+ 4 *import surface/1623/near06_2005
+ 3 *begin near06_2005
+ 3 *end near06_2005
+ 3 *begin near06_2005_2
+ 3 *end near06_2005_2
+ 4 *tropmi surface/1623/near06_2005
+ 4 *import surface/1623/99to2004-01
+ 3 *begin 99to2004-01
+ 3 *end 99to2004-01
+ 4 *tropmi surface/1623/99to2004-01
+ 4 *import surface/1623/near06_2006
+ 3 *begin 99ob02_to_2005-93
+ 3 *end 99ob02_to_2005-93
+ 3 *begin 103_to_108
+ 3 *end 103_to_108
+ 3 *begin 2005-98_to_200
+ 3 *end 2005-98_to_200
+ 3 *begin 176_to_111
+ 3 *end 176_to_111
+ 3 *begin 2005-92_to_2005-94
+ 3 *end 2005-92_to_2005-94
+ 3 *begin 1998-03_to_2004-03
+ 3 *end 1998-03_to_2004-03
+ 3 *begin 2005-96surf
+ 3 *end 2005-96surf
+ 4 *tropmi surface/1623/near06_2006
+ 4 *import surface/1623/near06_2007
+ 3 *begin 2007-70_to_271
+ 3 *end 2007-70_to_271
+ 3 *begin 148_to_2006-70
+ 3 *end 148_to_2006-70
+ 3 *begin 2007-72_to_99
+ 3 *end 2007-72_to_99
+ 3 *begin 102_to_103
+ 3 *end 102_to_103
+ 3 *begin 81_to_85
+ 3 *end 81_to_85
+ 3 *begin 267_to_laser5
+ 3 *end 267_to_laser5
+ 3 *begin 267_conn
+ 3 *end 267_conn
+ 3 *begin 82b_surf
+ 3 *end 82b_surf
+ 3 *begin 85_and_82_to_148
+ 3 *end 85_and_82_to_148
+ 4 *tropmi surface/1623/near06_2007
+ 4 *import surface/1623/104surf
+ 3 *begin 104surf
+ 3 *end 104surf
+ 4 *tropmi surface/1623/104surf
+ 4 *import surface/1623/nasetotc
+ 3 *begin nasetotc
+ 3 *end nasetotc
+ 4 *tropmi surface/1623/nasetotc
+ 4 *import surface/1623/neartc
+ 3 *begin TCto90
+ 3 *end TCto90
+ 3 *begin 90to94
+ 3 *end 90to94
+ 3 *begin 90to94bis
+ 3 *end 90to94bis
+ 3 *begin 159toTC
+ 3 *end 159toTC
+ 3 *begin wk2towk3
+ 3 *end wk2towk3
+ 4 *tropmi surface/1623/neartc
+ 4 *import surface/1623/tcto171
+ 3 *begin TCto171etc
+ 3 *end TCto171etc
+ 3 *begin B8to101
+ 3 *end B8to101
+ 3 *begin 103toLRH
+ 3 *end 103toLRH
+ 3 *begin 103to173
+ 3 *end 103to173
+ 3 *begin lardysurf
+ 3 *end lardysurf
+ 3 *begin not188
+ 3 *end not188
+ 3 *begin ob03
+ 3 *end ob03
+ 3 *begin TCto188
+ 3 *end TCto188
+ 4 *tropmi surface/1623/tcto171
+ 4 *import surface/1623/tctocol
+ 3 *begin TCtoCol
+ 3 *end TCtoCol
+ 4 *tropmi surface/1623/tctocol
+ 4 *import surface/1623/36tob4
+ 3 *begin 36tob4
+ 3 *end 36tob4
+ 4 *tropmi surface/1623/36tob4
+ 4 *import surface/1623/107-to-2012-70
+ 3 *begin 107to201270
+ 3 *end 107to201270
+ 3 *begin 107to201270_2012
+ 3 *end 107to201270_2012
+ 4 *tropmi surface/1623/107-to-2012-70
+ 4 *import surface/1623/157-to-2012-70
+ 3 *begin 157to201270
+ 3 *end 157to201270
+ 4 *tropmi surface/1623/157-to-2012-70
+ 3 *tropmi surface/1623/allplateau
+ 3 *import surface/1623/allnrkh
+ 4 *import surface/1623/136to147
+ 3 *begin 136to147
+ 3 *end 136to147
+ 4 *tropmi surface/1623/136to147
+ 4 *import surface/1623/147vor
+ 3 *begin 147vor
+ 3 *end 147vor
+ 4 *tropmi surface/1623/147vor
+ 4 *import surface/1623/162to163
+ 3 *begin surfnr161
+ 3 *end surfnr161
+ 3 *begin 163conn
+ 3 *end 163conn
+ 4 *tropmi surface/1623/162to163
+ 4 *import surface/1623/180-161c
+ 3 *begin 180to161c
+ 3 *end 180to161c
+ 3 *begin MI5to161c
+ 3 *end MI5to161c
+ 4 *tropmi surface/1623/180-161c
+ 4 *import surface/1623/161etof
+ 3 *begin 161etof
+ 3 *end 161etof
+ 4 *tropmi surface/1623/161etof
+ 4 *import surface/1623/161ftod
+ 3 *begin 161ftod
+ 3 *end 161ftod
+ 3 *begin 161d
+ 3 *end 161d
+ 4 *tropmi surface/1623/161ftod
+ 4 *import surface/1623/161etog
+ 3 *begin 161etog
+ 3 *end 161etog
+ 4 *tropmi surface/1623/161etog
+ 4 *import surface/1623/kansurf
+ 3 *begin KanSurf
+ 3 *end Kansurf
+ 4 *tropmi surface/1623/kansurf
+ 4 *import surface/1623/p136
+ 3 *begin 136surf
+ 3 *end 136surf
+ 4 *tropmi surface/1623/p136
+ 4 *import surface/1623/p156
+ 3 *begin 01to156
+ 3 *end 01to156
+ 3 *begin 156tagconn
+ 4 *begin
+ 4 *end
+ 4 *begin
+ 4 *end
+ 3 *end 156tagconn
+ 3 *begin 01to201
+ 3 *end 01to201
+ 3 *begin VordTo156
+ 3 *end VordTo156
+ 4 *tropmi surface/1623/p156
+ 4 *import surface/1623/surf161
+ 3 *begin Surf161
+ 3 *end Surf161
+ 4 *tropmi surface/1623/surf161
+ 4 *import surface/1623/vd1-161d
+ 3 *begin vd1to161d
+ 3 *end vd1to161d
+ 4 *tropmi surface/1623/vd1-161d
+ 3 *begin 162bodge
+ 3 *end 162bodge
+ 4 *import surface/1623/nordalps
+ 3 *begin nordalpsurf
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 4 *end 2
+ 3 *end nordalpsurf
+ 4 *tropmi surface/1623/nordalps
+ 4 *import surface/1623/near205
+ 3 *begin near205
+ 3 *end near205
+ 4 *tropmi surface/1623/near205
+ 4 *import surface/1623/nr136
+ 3 *begin 138to135
+ 3 *end 138to135
+ 3 *begin 136shelf
+ 4 *begin 1
+ 4 *end 1
+ 4 *begin 2
+ 4 *end 2
+ 3 *end 136shelf
+ 3 *begin 136dto139
+ 3 *end 136dto139
+ 4 *tropmi surface/1623/nr136
+ 3 *tropmi surface/1623/allnrkh
+ 3 *import surface/1623/allhinter
+ 4 *import surface/1623/steinsrf
+ 3 *begin steinsrf
+ 3 *end steinsrf
+ 3 *begin steinbrk_atob
+ 3 *end steinbrk_atob
+ 4 *tropmi surface/1623/steinsrf
+ 4 *import surface/1623/204atoc
+ 3 *begin 204atoc
+ 3 *end 204atoc
+ 4 *tropmi surface/1623/204atoc
+ 4 *import surface/1623/204d
+ 3 *begin 204d
+ 3 *end 204d
+ 4 *tropmi surface/1623/204d
+ 4 *import surface/1623/204etoc
+ 3 *begin 204etoc
+ 3 *end 204etoc
+ 4 *tropmi surface/1623/204etoc
+ 4 *import surface/1623/204ato239
+ 3 *begin 204ato239
+ 3 *end 204ato239
+ 4 *tropmi surface/1623/204ato239
+ 3 *begin 204cbodge
+ 3 *end 204cbodge
+ 4 *import surface/1623/204cstuff
+ 3 *begin 204cto242
+ 3 *end 204cto242
+ 3 *begin 204ftoc
+ 3 *end 204ftoc
+ 4 *tropmi surface/1623/204cstuff
+ 4 *import surface/1623/249to234
+ 3 *begin 249to234
+ 3 *end 249to234
+ 4 *tropmi surface/1623/249to234
+ 4 *import surface/1623/234to2002-03
+ 3 *begin 234to2002-03
+ 3 *end 234to2002-03
+ 4 *tropmi surface/1623/234to2002-03
+ 4 *import surface/1623/165tohsk
+ 3 *begin 165tohsk
+ 3 *end 165tohsk
+ 4 *tropmi surface/1623/165tohsk
+ 4 *import surface/1623/193surf
+ 3 *begin 193surf
+ 3 *end 193surf
+ 4 *tropmi surface/1623/193surf
+ 4 *import surface/1623/traun
+ 3 *begin traunsurface
+ 3 *end traunsurface
+ 3 *begin traunsurface2
+ 3 *end traunsurface2
+ 4 *tropmi surface/1623/traun
+ 4 *import surface/1623/96ones
+ 3 *begin 96ones
+ 3 *end 96ones
+ 3 *begin 96ones2
+ 3 *end 96ones2
+ 4 *tropmi surface/1623/96ones
+ 4 *import surface/1623/2000-8and9
+ 3 *begin 2000-8and9
+ 3 *end 2000-8and9
+ 4 *tropmi surface/1623/2000-8and9
+ 4 *import surface/1623/241surf
+ 3 *begin 241surf
+ 3 *end 241surf
+ 4 *tropmi surface/1623/241surf
+ 4 *import surface/1623/244
+ 3 *begin 204ato244
+ 3 *end 204ato244
+ 4 *tropmi surface/1623/244
+ 4 *import surface/1623/245to204d
+ 3 *begin 245to204d
+ 3 *end 245to204d
+ 4 *tropmi surface/1623/245to204d
+ 4 *import surface/1623/245surf
+ 3 *begin 245surf
+ 3 *end 245surf
+ 4 *tropmi surface/1623/245surf
+ 4 *import surface/1623/251to204d
+ 3 *begin 251to204d
+ 3 *end 251to204d
+ 4 *tropmi surface/1623/251to204d
+ 4 *import surface/1623/2002-03to2004-15
+ 3 *begin 2002-03to2004-15
+ 3 *end 2002-03to2004-15
+ 4 *tropmi surface/1623/2002-03to2004-15
+ 4 *import surface/1623/2004-15to2004-14
+ 3 *begin 2004-15to2004-14
+ 3 *end 2004-15to2004-14
+ 4 *tropmi surface/1623/2004-15to2004-14
+ 4 *import surface/1623/quarries
+ 3 *begin quarries
+ 3 *end quarries
+ 4 *tropmi surface/1623/quarries
+ 4 *import surface/1623/204dto2004-18
+ 3 *begin 204dto2004-18
+ 3 *end 204dto2004-18
+ 4 *tropmi surface/1623/204dto2004-18
+ 4 *import surface/1623/204itog
+ 3 *begin 204itog
+ 3 *end 204itog
+ 4 *tropmi surface/1623/204itog
+ 4 *import surface/1623/2004-18to2006-09
+ 3 *begin 2004-18to2006-09
+ 3 *end 2004-18to2006-09
+ 4 *tropmi surface/1623/2004-18to2006-09
+ 4 *import surface/1623/231to2006-08
+ 3 *begin 231to2006-08
+ 3 *end 231to2006-08
+ 4 *tropmi surface/1623/231to2006-08
+ 4 *import surface/1623/2004-15ato204a
+ 3 *begin 2004-15ato204a
+ 3 *end 2004-15ato204a
+ 4 *tropmi surface/1623/2004-15ato204a
+ 4 *import surface/1623/antsinyourpantsto258
+ 3 *begin antsinyourpantsto258
+ 3 *end antsinyourpantsto258
+ 4 *tropmi surface/1623/antsinyourpantsto258
+ 3 *tropmi surface/1623/allhinter
+ 3 *import surface/1623/allnr41
+ 4 *import surface/1623/p78
+ 3 *begin schwabsurf
+ 3 *end schwabsurf
+ 4 *tropmi surface/1623/p78
+ 4 *import surface/1623/78to78d
+ 3 *begin E4
+ 3 *end E4
+ 4 *tropmi surface/1623/78to78d
+ 4 *import surface/1623/domsurf
+ 3 *begin dominosurf
+ 3 *end dominosurf
+ 4 *tropmi surface/1623/domsurf
+ 4 *import surface/1623/sonnausn
+ 3 *begin sonnausn
+ 3 *end sonnausn
+ 4 *tropmi surface/1623/sonnausn
+ 4 *import surface/1623/41toBunt
+ 3 *begin Hillside
+ 4 *begin 82
+ 4 *end 82
+ 4 *begin 83
+ 4 *end 83
+ 4 *begin 87
+ 4 *end 87
+ 4 *begin 87x
+ 4 *end 87x
+ 3 *end Hillside
+ 4 *tropmi surface/1623/41toBunt
+ 4 *import surface/1623/lookfut
+ 3 *begin LookFutile
+ 3 *end LookFutile
+ 4 *tropmi surface/1623/lookfut
+ 4 *import surface/1623/nipple
+ 3 *begin nipple
+ 4 *begin fix
+ 4 *end fix
+ 3 *end nipple
+ 4 *tropmi surface/1623/nipple
+ 4 *import surface/1623/p155
+ 3 *begin Nipto155
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 3 *end Nipto155
+ 4 *tropmi surface/1623/p155
+ 4 *import surface/1623/L8to158
+ 3 *begin L8to158
+ 3 *end L8to158
+ 4 *tropmi surface/1623/L8to158
+ 4 *import surface/1623/stoger
+ 3 *begin Stogerweg
+ 4 *begin pt1
+ 4 *end pt1
+ 4 *begin pt2
+ 4 *end pt2
+ 4 *begin pt3
+ 4 *end pt3
+ 4 *begin 87spur
+ 4 *end 87spur
+ 4 *begin 1985
+ 4 *end 1985
+ 4 *begin 1987
+ 4 *end 1987
+ 4 *begin 1987Y
+ 4 *end 1987Y
+ 3 *end Stogerweg
+ 4 *tropmi surface/1623/stoger
+ 4 *import surface/1623/228ausn
+ 3 *begin 228ausn
+ 3 *end 228ausn
+ 4 *tropmi surface/1623/228ausn
+ 4 *import surface/1623/31ausn
+ 3 *begin 31ausn
+ 3 *end 31ausn
+ 4 *tropmi surface/1623/31ausn
+ 3 *tropmi surface/1623/allnr41
+ 3 *import surface/1623/allnr40
+ 4 *import surface/1623/weisausn
+ 3 *begin weisausn
+ 3 *end weisausn
+ 4 *tropmi surface/1623/weisausn
+ 4 *import surface/1623/2002-W-02surf
+ 3 *begin 2002-w-02surf
+ 3 *end 2002-w-02surf
+ 4 *tropmi surface/1623/2002-W-02surf
+ 4 *import surface/1623/eissurf
+ 3 *begin EisSurf
+ 3 *end EisSurf
+ 4 *tropmi surface/1623/eissurf
+ 4 *import surface/1623/40ftoe
+ 3 *begin gruensurf
+ 3 *end gruensurf
+ 4 *tropmi surface/1623/40ftoe
+ 4 *import surface/1623/40to88
+ 3 *begin 40to88
+ 3 *end 40to88
+ 4 *tropmi surface/1623/40to88
+ 4 *import surface/1623/e6ausen
+ 3 *begin e6ausen
+ 3 *end e6ausen
+ 4 *tropmi surface/1623/e6ausen
+ 4 *import surface/1623/vfhmdata
+ 3 *begin VfHMdata
+ 3 *end VfHMdata
+ 4 *tropmi surface/1623/vfhmdata
+ 4 *import surface/1623/40ents
+ 3 *begin 40entlink
+ 3 *end 40entlink
+ 3 *begin 40entlink2
+ 3 *end 40entlink2
+ 4 *tropmi surface/1623/40ents
+ 3 *tropmi surface/1623/allnr40
+ 2 *end
+ 2 *tropmi surface/1623/allsurface
+ 2 *import fixedpts/gps/tracks/alltracks
+ 3 *import fixedpts/gps/tracks/carpark-204
+ 2 *begin carpark-204
+ 2 *end carpark-204
+ 3 *tropmi fixedpts/gps/tracks/carpark-204
+ 3 *import fixedpts/gps/tracks/carpark-40
+ 2 *begin carpark-40
+ 2 *end carpark-40
+ 3 *tropmi fixedpts/gps/tracks/carpark-40
+ 2 *tropmi fixedpts/gps/tracks/alltracks
+ 1 *end 1623
+ 1 *tropmi kataster/1623
+ 1 *import gpx/2017/svx/all_gpx
+ 2 *import gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+ 1 *begin car-park-to-stone-bridge_psargent-2017-08-06
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 2 *begin track1
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track1
+ 2 *begin track2
+ 3 *begin seg0
+ 3 *end seg0
+ 3 *begin seg1
+ 3 *end seg1
+ 3 *begin seg2
+ 3 *end seg2
+ 3 *begin seg3
+ 3 *end seg3
+ 2 *end track2
+ 2 *begin track3
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track3
+ 1 *end car-park-to-stone-bridge_psargent-2017-08-06
+ 2 *tropmi gpx/2017/svx/car-park-to-stone-bridge_psargent-2017-08-06
+ 1 *tropmi gpx/2017/svx/all_gpx
+ 1 *import gpx/2017/additional_info
+ 1 *tropmi gpx/2017/additional_info
+ 1 *import gpx/2018/svx/all_gpx
+ 2 *import gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+ 1 *begin balkon-to-organhoehle_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end balkon-to-organhoehle_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/balkon-to-organhoehle_aday-2018-07-12
+ 2 *import gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+ 1 *begin fischgesicht-to-painted-track_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end fischgesicht-to-painted-track_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/fischgesicht-to-painted-track_aday-2018-07-12
+ 2 *import gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+ 1 *begin gschwandalm-to-car-park_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end gschwandalm-to-car-park_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/gschwandalm-to-car-park_aday-2018-07-12
+ 2 *import gpx/2018/svx/painted-track_aday-2018-07-12
+ 1 *begin painted-track_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end painted-track_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/painted-track_aday-2018-07-12
+ 2 *import gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+ 1 *begin prospecting-kleiner-wildkogel_jtoft-2018-07-11
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end prospecting-kleiner-wildkogel_jtoft-2018-07-11
+ 2 *tropmi gpx/2018/svx/prospecting-kleiner-wildkogel_jtoft-2018-07-11
+ 2 *import gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+ 1 *begin prospecting-near-organhoehle_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end prospecting-near-organhoehle_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/prospecting-near-organhoehle_aday-2018-07-12
+ 2 *import gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+ 1 *begin prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+ 2 *tropmi gpx/2018/svx/prospecting-nw-of-fischgesicht_mshinwell-2018-07-11
+ 2 *import gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+ 1 *begin stone-bridge-to-balkon_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end stone-bridge-to-balkon_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/stone-bridge-to-balkon_aday-2018-07-12
+ 2 *import gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+ 1 *begin stone-bridge-to-fischgesicht_aday-2018-07-12
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end stone-bridge-to-fischgesicht_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/stone-bridge-to-fischgesicht_aday-2018-07-12
+ 2 *import gpx/2018/svx/waypoints_aday-2018-07-11
+ 1 *begin waypoints_aday-2018-07-11
+ 1 *end waypoints_aday-2018-07-11
+ 2 *tropmi gpx/2018/svx/waypoints_aday-2018-07-11
+ 2 *import gpx/2018/svx/waypoints_aday-2018-07-12
+ 1 *begin waypoints_aday-2018-07-12
+ 1 *end waypoints_aday-2018-07-12
+ 2 *tropmi gpx/2018/svx/waypoints_aday-2018-07-12
+ 2 *import gpx/2018/svx/waypoints_jtoft-2018-07-14
+ 1 *begin waypoints_jtoft-2018-07-14
+ 1 *end waypoints_jtoft-2018-07-14
+ 2 *tropmi gpx/2018/svx/waypoints_jtoft-2018-07-14
+ 2 *import gpx/2018/svx/waypoints_mshinwell-2018-07-11
+ 1 *begin waypoints_mshinwell-2018-07-11
+ 1 *end waypoints_mshinwell-2018-07-11
+ 2 *tropmi gpx/2018/svx/waypoints_mshinwell-2018-07-11
+ 2 *import gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+ 1 *begin west-of-plateau_cdensham-2018-07-15
+ 2 *begin track0
+ 3 *begin seg0
+ 3 *end seg0
+ 2 *end track0
+ 1 *end west-of-plateau_cdensham-2018-07-15
+ 2 *tropmi gpx/2018/svx/west-of-plateau_cdensham-2018-07-15
+ 1 *tropmi gpx/2018/svx/all_gpx
+ 1 *import kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+ 1 *begin kataster-boundaries
+ 1 *end kataster-boundaries
+ 1 *tropmi kataster/kataster-boundaries-lukas-plan-2018-07-17/kataster-boundaries
+ 0 *tropmi 1623
+ - MEM:39.96 MB STOP 1623
+ - MEM:0.324 MB USED
+ - 1,486 survex files in linear import list
diff --git a/troggle-inspectdb.py b/troggle-inspectdb.py
index c7a2514..e7f9401 100644
--- a/troggle-inspectdb.py
+++ b/troggle-inspectdb.py
@@ -15,3 +15,14 @@
from __future__ import unicode_literals
from django.db import models
+
+
+class DjangoMigrations(models.Model):
+ id = models.IntegerField(primary_key=True) # AutoField?
+ app = models.CharField(max_length=255)
+ name = models.CharField(max_length=255)
+ applied = models.DateTimeField()
+
+ class Meta:
+ managed = False
+ db_table = 'django_migrations'