Skip to content

Instantly share code, notes, and snippets.

@zbycz
Created October 4, 2025 07:30
Show Gist options
  • Select an option

  • Save zbycz/f42386e345643718bbf930965dcf5cf1 to your computer and use it in GitHub Desktop.

Select an option

Save zbycz/f42386e345643718bbf930965dcf5cf1 to your computer and use it in GitHub Desktop.
Create area relations for all the boulders
<script>
console.log("result");
function processx(xml) {
const parser = new DOMParser();
const doc = parser.parseFromString(xml, "application/xml");
const result = [];
["node", "way", "relation"].forEach(type => {
Array.from(doc.querySelectorAll(type)).forEach(el => {
let name = null;
const tag = el.querySelector('tag[k="name"]');
if (tag) name = tag.getAttribute("v");
if (name)
result.push({
name,
type,
id: el.getAttribute("id")
});
});
});
const m = {}
for (const {name,type,id} of result) {
const sector = name.split(" ")[1];
if (sector) {
m[sector] = [...(m[sector] ?? []), {type,id, name}];
}
}
// sort each array in m by name natural compare
for (const sector in m) {
m[sector].sort((a,b) => a.name.localeCompare(b.name, undefined, {numeric: true}));
}
console.log(m);
let output = "";
let newId = -1;
for (const sector in m) {
output += `<relation id="${newId--}" action="create">\n`;
output += ` <tag k="type" v="site"/>\n`;
output += ` <tag k="site" v="climbing"/>\n`;
output += ` <tag k="sport" v="climbing"/>\n`;
output += ` <tag k="climbing" v="area"/>\n`;
output += ` <tag k="climbing:boulder" v="yes"/>\n`;
output += ` <tag k="name" v="Chironico sector ${sector}"/>\n`;
for (const {type,id} of m[sector]) {
output += ` <member type="${type}" ref="${id}" role=""/>\n`;
}
output += `</relation>\n\n`;
}
console.log(output);
}
processx(`<?xml version='1.0' encoding='UTF-8'?>
<osm version='0.6' generator='JOSM'>
<node id='12241985195' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429541' lon='8.849572'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 42' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241985196' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428969' lon='8.849499'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 37' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241985197' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429141' lon='8.849676'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 36' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241985198' timestamp='2024-10-10T20:30:32Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157732391' lat='46.4288233' lon='8.8497498'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 34' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241985199' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428277' lon='8.849594'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 30' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241985200' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428362' lon='8.849576'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 29' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987401' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428247' lon='8.849948'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 28' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987402' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432391' lon='8.847801'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 21b' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987403' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432394' lon='8.847433'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 15' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987404' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432689' lon='8.847357'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987405' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432559' lon='8.847021'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 12' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987406' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432618' lon='8.846753'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 11b' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987407' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432536' lon='8.846928'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987408' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.43254' lon='8.846764'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987409' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432861' lon='8.847126'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987410' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.433574' lon='8.846744'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 1a' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987411' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431017' lon='8.846869'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987412' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430985' lon='8.84839'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 13' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987413' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.43106' lon='8.848136'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 7b' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987414' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431049' lon='8.848404'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987415' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431185' lon='8.848147'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987416' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431294' lon='8.848313'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987417' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.43141' lon='8.847706'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987418' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431639' lon='8.847134'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987419' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432053' lon='8.846994'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987420' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.43102' lon='8.848875'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 40' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987421' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430989' lon='8.848981'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 43' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987422' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431028' lon='8.84896'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 42' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987423' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431118' lon='8.848869'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 41' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987424' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431134' lon='8.848663'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 39' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987425' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.4314' lon='8.84878'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 38' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987426' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.43137' lon='8.848993'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 36' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987427' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.4314' lon='8.849109'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 35' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987428' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431401' lon='8.849299'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 34' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987429' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431437' lon='8.848881'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 31b' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987430' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431515' lon='8.848622'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 31a' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987431' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431856' lon='8.849207'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 30' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987432' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431884' lon='8.849237'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 29' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987433' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431722' lon='8.848489'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 26' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987434' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431923' lon='8.84862'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 25' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987435' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.431961' lon='8.848469'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 24' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987436' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432073' lon='8.848359'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 23' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987437' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432111' lon='8.848512'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 22' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987438' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432266' lon='8.848031'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 20' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987439' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.43196' lon='8.847869'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 19' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987440' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432029' lon='8.847555'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 18' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987441' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432252' lon='8.847063'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987442' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432206' lon='8.846825'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 13' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987444' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432479' lon='8.846555'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987445' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432822' lon='8.846594'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987446' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.433029' lon='8.846664'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987447' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.433236' lon='8.84652'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987448' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.433472' lon='8.846362'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987449' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.433683' lon='8.846205'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987450' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.433642' lon='8.846333'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 1 Boulder 1b' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987451' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428758' lon='8.845225'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder xx' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987452' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428812' lon='8.845207'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder cc' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987453' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429586' lon='8.845368'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder nn' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987454' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42991' lon='8.844989'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987455' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429554' lon='8.848907'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 45' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987456' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429503' lon='8.849086'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 43' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987457' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429388' lon='8.849316'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 41' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987458' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429242' lon='8.849311'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 40' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987459' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429198' lon='8.849216'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 39' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987460' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429239' lon='8.8492'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 38' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987461' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428687' lon='8.849452'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 33' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987462' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428378' lon='8.849301'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 20' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987463' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428401' lon='8.849083'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 16' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987464' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42838' lon='8.848599'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 12' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987465' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428435' lon='8.848578'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987466' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428546' lon='8.848924'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987467' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42883' lon='8.848654'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987468' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428868' lon='8.84865'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987469' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4289958' lon='8.8474603'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987470' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42918' lon='8.848108'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987471' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429361' lon='8.848195'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987472' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42927' lon='8.849059'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987473' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429337' lon='8.848365'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987474' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429295' lon='8.848369'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987475' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429417' lon='8.848337'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987476' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.429495' lon='8.848301'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987477' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430963' lon='8.847118'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987478' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430572' lon='8.847655'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987479' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430443' lon='8.847688'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987480' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430454' lon='8.847972'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987481' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430382' lon='8.847634'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987482' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430389' lon='8.847466'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987483' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430383' lon='8.847248'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987484' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430431' lon='8.84696'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987485' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430091' lon='8.846995'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 5 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987486' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430139' lon='8.848631'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 40161' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987487' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430521' lon='8.848595'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 19' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987488' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430622' lon='8.84858'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987489' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430678' lon='8.848674'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 16' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987490' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430725' lon='8.848445'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 15' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987491' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430853' lon='8.848378'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987492' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.430955' lon='8.848345'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 2 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987494' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.432072' lon='8.842082'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 4 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987495' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4263135' lon='8.8499192'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 22' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987496' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4261189' lon='8.8496465'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 18' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987497' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4260558' lon='8.849449'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987498' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4259355' lon='8.8495456'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 15' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987499' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4258376' lon='8.8494232'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 13' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987500' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4257211' lon='8.8499267'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987501' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4259294' lon='8.8498377'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 12' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987502' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4257644' lon='8.8497628'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987503' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4257379' lon='8.8497379'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987504' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4257317' lon='8.849667'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987505' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425587' lon='8.849536'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987506' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427074' lon='8.850454'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 18' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987507' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427123' lon='8.850438'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987508' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427085' lon='8.850175'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 16' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987509' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427186' lon='8.850318'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 15' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987510' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42734' lon='8.850367'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987511' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427323' lon='8.850138'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 12' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987512' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427382' lon='8.849974'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987513' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427467' lon='8.850075'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987514' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427388' lon='8.850258'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987515' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427499' lon='8.850432'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987516' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427622' lon='8.850275'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987517' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427761' lon='8.85026'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987518' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427614' lon='8.850152'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987519' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42771' lon='8.850164'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987520' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427694' lon='8.849875'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987521' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42763' lon='8.849866'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987522' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427911' lon='8.849702'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 8 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987523' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427305' lon='8.849992'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder cc' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987524' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42692' lon='8.849695'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 37' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987525' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427272' lon='8.849853'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 36' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987526' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426974' lon='8.849861'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 35' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987527' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426979' lon='8.849834'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 34' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987528' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427124' lon='8.849877'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 33' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987529' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426933' lon='8.849643'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 32' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987530' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4273438' lon='8.8495737'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 30' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987531' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4274035' lon='8.8497866'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 29' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987532' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4275145' lon='8.8496566'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 28' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987533' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4274855' lon='8.8495663'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 27' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987534' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428173' lon='8.850369'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 27' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987535' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42801' lon='8.850233'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 26' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987536' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428088' lon='8.850009'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 25' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987537' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427926' lon='8.850037'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 24' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987538' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428158' lon='8.849532'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 23' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987539' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4240914' lon='8.8493702'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987540' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4241431' lon='8.8496335'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987541' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4240108' lon='8.8497342'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987543' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4237372' lon='8.8496894'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987544' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4239072' lon='8.8496602'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987545' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4238148' lon='8.8495321'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987547' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4275108' lon='8.8487427'>
<tag k='climbing' v='boulder' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987548' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.427804' lon='8.8493392'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 26' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987549' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4276964' lon='8.8493901'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 25' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987550' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4275446' lon='8.8494697'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 24' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987551' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427431' lon='8.849408'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 22' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987552' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4273468' lon='8.8491466'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 21' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987553' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427165' lon='8.849195'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 19' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987554' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42715' lon='8.849148'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 18' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987555' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427015' lon='8.849137'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987556' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426984' lon='8.849096'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 16' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987557' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4274252' lon='8.8490383'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987558' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4274805' lon='8.8489007'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 13' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987559' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4276336' lon='8.8485819'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 12' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987560' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4276605' lon='8.8489215'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987561' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4275562' lon='8.8489944'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987562' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4276533' lon='8.8490642'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987563' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427797' lon='8.848891'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987564' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4277155' lon='8.8486892'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987565' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427217' lon='8.848513'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987566' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42721' lon='8.848464'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987567' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427216' lon='8.848342'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987568' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427232' lon='8.848258'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987569' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427263' lon='8.848147'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987570' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427206' lon='8.848208'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987571' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428127' lon='8.849371'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 22' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987572' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428158' lon='8.849313'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 19' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987573' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428081' lon='8.849202'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 18' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987574' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428123' lon='8.849121'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987575' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428146' lon='8.848272'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987576' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428217' lon='8.848603'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 6 Boulder 13' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987577' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.426403' lon='8.8490472'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 21' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987578' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4263015' lon='8.8489524'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 20' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987579' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4261834' lon='8.8488881'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 19' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987580' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4260017' lon='8.849581'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 16' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987581' timestamp='2024-10-10T21:32:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734099' lat='46.4259623' lon='8.8493833'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987582' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425751' lon='8.84939'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987583' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425903' lon='8.848858'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987584' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425713' lon='8.848688'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987585' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42575' lon='8.848827'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987586' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425661' lon='8.848789'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 12 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987587' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425565' lon='8.84808'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 26' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987588' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425687' lon='8.847764'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 25' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987589' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425711' lon='8.848276'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 24' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987590' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425753' lon='8.846916'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 23' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987594' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426303' lon='8.849215'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder xx' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987595' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426793' lon='8.849269'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 38' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987596' timestamp='2024-10-10T21:41:18Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157734315' lat='46.4266206' lon='8.8495481'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 7 Boulder 15' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987597' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428094' lon='8.845621'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987598' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42809' lon='8.845675'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987599' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.428109' lon='8.845682'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987600' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.427215' lon='8.846193'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987601' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4259209' lon='8.8466429'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 22' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987602' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4258969' lon='8.8464847'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 21' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987605' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.42552' lon='8.846344'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 18' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987606' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425515' lon='8.846429'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 17' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987607' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426796' lon='8.845764'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987608' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.426786' lon='8.845822'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 9 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987609' timestamp='2024-10-10T21:24:31Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733887' lat='46.4244484' lon='8.8482859'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 12' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987610' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4243357' lon='8.8497928'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987611' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4240488' lon='8.8492415'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987612' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4241005' lon='8.849562'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987613' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4239061' lon='8.849256'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987614' timestamp='2024-10-10T21:22:27Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733839' lat='46.4240684' lon='8.8490651'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 11 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987615' timestamp='2024-10-10T21:24:31Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733887' lat='46.424525' lon='8.8482956'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder x' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987616' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4243857' lon='8.848031'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 30' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987617' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4246738' lon='8.847615'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 29' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987618' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425354' lon='8.84786'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 28' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987619' timestamp='2024-10-10T18:44:06Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157729044' lat='46.425475' lon='8.847652'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 27' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987622' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.425377' lon='8.8471512'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 11' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987623' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4252735' lon='8.8472696'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 10' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987624' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.425122' lon='8.8472239'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 9' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987626' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4249937' lon='8.8472512'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 7' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987627' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157733217' lat='46.4249804' lon='8.8471389'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987628' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='3' changeset='157852049' lat='46.4250948' lon='8.8468376'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 5' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987631' timestamp='2024-10-10T20:30:32Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157732391' lat='46.4244585' lon='8.8466252'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12241987632' timestamp='2024-10-10T20:30:32Z' uid='7023434' user='Marco Milanta' visible='true' version='2' changeset='157732391' lat='46.4245903' lon='8.8462676'>
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</node>
<node id='12242203406' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254636' lon='8.846799' />
<node id='12242203407' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254216' lon='8.8468308' />
<node id='12242203408' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253691' lon='8.8468346' />
<node id='12242203409' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253226' lon='8.8467355' />
<node id='12242203410' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253638' lon='8.8466517' />
<node id='12242203411' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254242' lon='8.8466123' />
<node id='12242203412' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254742' lon='8.8466885' />
<node id='12242203413' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254258' lon='8.8468868' />
<node id='12242203414' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425413' lon='8.8469608' />
<node id='12242203415' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253196' lon='8.8469438' />
<node id='12242203416' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253228' lon='8.8468729' />
<node id='12242203417' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253238' lon='8.8468483' />
<node id='12242203418' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4253557' lon='8.8468329' />
<node id='12242203419' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.42551' lon='8.8466924' />
<node id='12242203420' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255173' lon='8.8467405' />
<node id='12242203421' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255453' lon='8.846751' />
<node id='12242203422' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255587' lon='8.8467795' />
<node id='12242203423' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255743' lon='8.8467675' />
<node id='12242203424' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255639' lon='8.8466894' />
<node id='12242203425' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425538' lon='8.8466398' />
<node id='12242203426' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255142' lon='8.8466488' />
<node id='12242203427' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425566' lon='8.8466383' />
<node id='12242203428' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255499' lon='8.8466626' />
<node id='12242203429' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255939' lon='8.8466954' />
<node id='12242203430' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256312' lon='8.8466909' />
<node id='12242203431' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256405' lon='8.8466638' />
<node id='12242203432' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256105' lon='8.8466308' />
<node id='12242203433' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256985' lon='8.846742' />
<node id='12242203434' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256706' lon='8.846742' />
<node id='12242203435' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425655' lon='8.846766' />
<node id='12242203436' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256519' lon='8.8468141' />
<node id='12242203437' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256633' lon='8.8468291' />
<node id='12242203438' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256799' lon='8.8468291' />
<node id='12242203439' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4256965' lon='8.8468006' />
<node id='12242203440' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255245' lon='8.8468622' />
<node id='12242203441' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425509' lon='8.8469313' />
<node id='12242203442' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255245' lon='8.8469764' />
<node id='12242203443' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255484' lon='8.8469418' />
<node id='12242203444' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425568' lon='8.8469403' />
<node id='12242203445' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255825' lon='8.8469088' />
<node id='12242203446' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425566' lon='8.8468502' />
<node id='12242203447' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255401' lon='8.8468381' />
<node id='12242203448' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.425452' lon='8.847023' />
<node id='12242203449' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254614' lon='8.8470395' />
<node id='12242203450' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255038' lon='8.847032' />
<node id='12242203451' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4255038' lon='8.8470139' />
<node id='12242203452' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254893' lon='8.8470019' />
<node id='12242203453' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217' lat='46.4254634' lon='8.8470019' />
<node id='12249090684' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4250458' lon='8.8465725' />
<node id='12249090685' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.425018' lon='8.8465319' />
<node id='12249090686' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249974' lon='8.8465358' />
<node id='12249090687' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249976' lon='8.8466057' />
<node id='12249090688' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4250453' lon='8.8466399' />
<node id='12249090689' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.424972' lon='8.8466393' />
<node id='12249090690' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249621' lon='8.8466098' />
<node id='12249090691' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249443' lon='8.8466147' />
<node id='12249090692' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249241' lon='8.8466601' />
<node id='12249090693' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249496' lon='8.84668' />
<node id='12249090694' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049' lat='46.4249717' lon='8.8466646' />
<node id='12250041343' timestamp='2024-10-14T08:32:53Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157865257' lat='46.4252396' lon='8.8470448' />
<node id='12250041344' timestamp='2024-10-14T08:32:53Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157865257' lat='46.42521' lon='8.846992' />
<node id='12250041345' timestamp='2024-10-14T08:32:53Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157865257' lat='46.4251749' lon='8.8469969' />
<node id='12250041346' timestamp='2024-10-14T08:32:53Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157865257' lat='46.4251702' lon='8.8470204' />
<node id='12250041347' timestamp='2024-10-14T08:32:53Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157865257' lat='46.4251951' lon='8.8470537' />
<node id='12279289911' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4342068' lon='8.8429901' />
<node id='12279289912' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.434179' lon='8.8429917' />
<node id='12279289913' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341627' lon='8.8430591' />
<node id='12279289914' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341894' lon='8.8430725' />
<node id='12279289915' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4342161' lon='8.8430355' />
<node id='12279289916' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341676' lon='8.843091' />
<node id='12279289917' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341628' lon='8.8430724' />
<node id='12279289918' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341408' lon='8.8430928' />
<node id='12279289919' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341428' lon='8.8431131' />
<node id='12279289920' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4341632' lon='8.8431119' />
<node id='12279289921' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4336705' lon='8.8441759' />
<node id='12279289922' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4337032' lon='8.8441792' />
<node id='12279289923' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4337308' lon='8.8442386' />
<node id='12279289924' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4337531' lon='8.8442645' />
<node id='12279289925' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4337062' lon='8.8443607' />
<node id='12279289926' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4336325' lon='8.8443607' />
<node id='12279289927' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4336198' lon='8.844338' />
<node id='12279289928' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4335938' lon='8.8443412' />
<node id='12279289929' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4335945' lon='8.844284' />
<node id='12279289930' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472' lat='46.4336116' lon='8.8442235' />
<way id='1322999750' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203406' />
<nd ref='12242203407' />
<nd ref='12242203408' />
<nd ref='12242203409' />
<nd ref='12242203410' />
<nd ref='12242203411' />
<nd ref='12242203412' />
<nd ref='12242203406' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 14' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1322999751' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203407' />
<nd ref='12242203413' />
<nd ref='12242203414' />
<nd ref='12242203415' />
<nd ref='12242203416' />
<nd ref='12242203417' />
<nd ref='12242203418' />
<nd ref='12242203408' />
<nd ref='12242203407' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 13' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1322999752' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203419' />
<nd ref='12242203420' />
<nd ref='12242203421' />
<nd ref='12242203422' />
<nd ref='12242203423' />
<nd ref='12242203424' />
<nd ref='12242203428' />
<nd ref='12242203425' />
<nd ref='12242203426' />
<nd ref='12242203419' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 16' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1322999753' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203427' />
<nd ref='12242203428' />
<nd ref='12242203424' />
<nd ref='12242203429' />
<nd ref='12242203430' />
<nd ref='12242203431' />
<nd ref='12242203432' />
<nd ref='12242203427' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 19' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1322999754' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203433' />
<nd ref='12242203434' />
<nd ref='12242203435' />
<nd ref='12242203436' />
<nd ref='12242203437' />
<nd ref='12242203438' />
<nd ref='12242203439' />
<nd ref='12242203433' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 20' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1322999755' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203440' />
<nd ref='12242203441' />
<nd ref='12242203442' />
<nd ref='12242203443' />
<nd ref='12242203444' />
<nd ref='12242203445' />
<nd ref='12242203446' />
<nd ref='12242203447' />
<nd ref='12242203440' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 15' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1322999756' timestamp='2024-10-10T21:00:02Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157733217'>
<nd ref='12242203448' />
<nd ref='12242203449' />
<nd ref='12242203450' />
<nd ref='12242203451' />
<nd ref='12242203452' />
<nd ref='12242203453' />
<nd ref='12242203448' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 6' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1323704475' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049'>
<nd ref='12249090684' />
<nd ref='12249090685' />
<nd ref='12249090686' />
<nd ref='12249090687' />
<nd ref='12249090688' />
<nd ref='12249090684' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 4' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1323704476' timestamp='2024-10-13T21:02:17Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157852049'>
<nd ref='12249090689' />
<nd ref='12249090690' />
<nd ref='12249090691' />
<nd ref='12249090692' />
<nd ref='12249090693' />
<nd ref='12249090694' />
<nd ref='12249090689' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1323802385' timestamp='2024-10-14T08:32:53Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='157865257'>
<nd ref='12250041343' />
<nd ref='12250041344' />
<nd ref='12250041345' />
<nd ref='12250041346' />
<nd ref='12250041347' />
<nd ref='12250041343' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 10 Boulder 8' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1327302073' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472'>
<nd ref='12279289911' />
<nd ref='12279289912' />
<nd ref='12279289913' />
<nd ref='12279289914' />
<nd ref='12279289915' />
<nd ref='12279289911' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 3 Boulder 1' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1327302074' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472'>
<nd ref='12279289916' />
<nd ref='12279289917' />
<nd ref='12279289918' />
<nd ref='12279289919' />
<nd ref='12279289920' />
<nd ref='12279289916' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 3 Boulder 2' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
<way id='1327302075' timestamp='2024-10-22T18:32:49Z' uid='7023434' user='Marco Milanta' visible='true' version='1' changeset='158224472'>
<nd ref='12279289921' />
<nd ref='12279289922' />
<nd ref='12279289923' />
<nd ref='12279289924' />
<nd ref='12279289925' />
<nd ref='12279289926' />
<nd ref='12279289927' />
<nd ref='12279289928' />
<nd ref='12279289929' />
<nd ref='12279289930' />
<nd ref='12279289921' />
<tag k='climbing' v='boulder' />
<tag k='name' v='Sector 3 Boulder 3' />
<tag k='natural' v='stone' />
<tag k='sport' v='climbing' />
</way>
</osm>
`);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment