xxxxxxxxxx
80
let x;
let y;
let cur;
function xmod(x) {
return x * 10 - 200;
}
function ymod(y) {
return y * 10;
}
function setup() {
createCanvas(1000, 1000);
background(255);
cur = { str: input };
}
function draw() {
if (cur) {
cur = next(cur);
}
if (cur) {
fill(0);
arrow_line(xmod(x), ymod(y), xmod(cur.x), ymod(cur.y), cur.water);
x = cur.x;
y = cur.y;
}
}
function arrow_line(x1, y1, x2, y2, water) {
line(x1, y1, x2, y2);
let offset = 2;
push() //start new drawing state
var angle = atan2(x1 - x2, x1 - x2); //gets the angle of the line
translate(x2, y2); //translates to the destination vertex
rotate(angle-HALF_PI); //rotates the arrow point
if (water) {
fill(255, 0, 0);
stroke(255, 0, 0);
} else {
fill(0);
stroke(0);
}
triangle(-offset*0.5, offset, offset*0.5, offset, 0, -offset/2); //draws the arrow point as a triangle
pop();
}
function next(cur) {
const arrived_prefix = "You have arrived at (";
const water_prefix = "You encounter water at (";
const arrived_strpos = cur.str.indexOf(arrived_prefix);
const water_strpos = cur.str.indexOf(water_prefix);
if (arrived_strpos != -1 && (arrived_strpos < water_strpos || water_strpos == -1)) {
const end_pos = cur.str.indexOf(')', arrived_strpos);
const coords = cur.str.substring(arrived_strpos + arrived_prefix.length, end_pos).split(',');
return {
x: parseFloat(coords[0].trim()),
y: parseFloat(coords[1].trim()),
water: false,
str: cur.str.substr(arrived_strpos + arrived_prefix.length),
}
} else if (water_strpos != -1 && (water_strpos < arrived_strpos || arrived_strpos == -1)) {
const end_pos = cur.str.indexOf(')', water_strpos);
const coords = cur.str.substring(water_strpos + water_prefix.length, end_pos).split(',');
return {
x: parseFloat(coords[0].trim()),
y: parseFloat(coords[1].trim()),
water: true,
str: cur.str.substr(water_strpos + water_prefix.length),
}
} else {
return false;
}
}
let input = " You have arrived at (60, 40)., You have arrived at (60, 40)., You have arrived at (60, 41)., You have arrived at (60, 41)., You have arrived at (60, 40)., You have arrived at (64, 39)., You encounter water at (60, 39), preventing you from reaching (62, 40) from this direction., You have arrived at (62, 40)., You encounter water at (60, 38), preventing you from reaching (62, 40) from this direction., You have arrived at (62, 40)., You encounter water at (60, 38), preventing you from reaching (63, 41) from this direction., You have arrived at (63, 41)., You encounter water at (62, 39), preventing you from reaching (61, 39) from this direction., You have arrived at (64, 41)., You encounter water at (61, 40), preventing you from reaching (61, 40) from this direction., You have arrived at (61, 40)., You encounter water at (61, 40), preventing you from reaching (62, 40) from this direction., You have arrived at (62, 40)., You have arrived at (62, 40)., You encounter water at (61, 40), preventing you from reaching (58, 43) from this direction., You have arrived at (58, 43)., You encounter water at (61, 40), preventing you from reaching (58, 43) from this direction., You have arrived at (58, 35)., You encounter water at (61, 40), preventing you from reaching (58, 35) from this direction., You have arrived at (61, 40)., You encounter water at (61, 39), preventing you from reaching (61, 40) from this direction., You have arrived at (61, 40)., You encounter water at (61, 39), preventing you from reaching (61, 40) from this direction., You encounter water at (61, 38), preventing you from reaching (61, 41) from this direction., You encounter water at (61, 38), preventing you from reaching (61, 40) from this direction., You have arrived at (61, 40)., You encounter water at (61, 38), preventing you from reaching (61, 40) from this direction., You have arrived at (61, 40)., You encounter water at (61, 38), preventing you from reaching (61, 40) from this direction., You have arrived at (61, 40)., You have arrived at (63, 30)., You encounter water at (64, 29), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (64, 26), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (64, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You have arrived at (66, 27)., You have arrived at (66, 27)., You encounter water at (69, 27), preventing you from reaching (66, 27) from this direction., You have arrived at (66, 27)., You encounter water at (69, 26), preventing you from reaching (66, 27) from this direction., You have arrived at (66, 27)., You encounter water at (69, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 20), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 21), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 21), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 21), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 21), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 21), preventing you from reaching (66, 29) from this direction., You encounter water at (66, 18), preventing you from reaching (69, 26) from this direction., You have arrived at (69, 26)., You encounter water at (66, 18), preventing you from reaching (69, 26) from this direction., You have arrived at (69, 26)., You encounter water at (66, 18), preventing you from reaching (66, 27) from this direction., You have arrived at (66, 27)., You encounter water at (69, 26), preventing you from reaching (66, 27) from this direction., You have arrived at (66, 27)., You encounter water at (69, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 26), preventing you from reaching (66, 29) from this direction., You encounter water at (69, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (69, 27), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (69, 27), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (69, 27), preventing you from reaching (64, 26) from this direction., You encounter water at (69, 27), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (69, 27), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (69, 27), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (65, 39), preventing you from reaching (66, 29) from this direction., You encounter water at (64, 26), preventing you from reaching (65, 39) from this direction., You have arrived at (65, 39)., You encounter water at (64, 26), preventing you from reaching (65, 39) from this direction., You have arrived at (65, 39)., You encounter water at (64, 26), preventing you from reaching (65, 39) from this direction., You have arrived at (65, 39)., You encounter water at (64, 31), preventing you from reaching (69, 27) from this direction., You have arrived at (69, 27)., You encounter water at (64, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (64, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (64, 26), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (64, 29), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You have arrived at (64, 26)., You encounter water at (64, 26), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (64, 31), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You encounter water at (64, 31), preventing you from reaching (66, 29) from this direction., You have arrived at (66, 29)., You have arrived at (68, 25)., You encounter water at (64, 30), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (64, 30), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (64, 30), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You encounter water at (65, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (64, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (64, 32), preventing you from reaching (68, 25) from this direction., You encounter water at (64, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (64, 32), preventing you from reaching (68, 25) from this direction., You encounter water at (64, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 33), preventing you from reaching (68, 25) from this direction., You encounter water at (66, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 33), preventing you from reaching (70, 34) from this direction., You have arrived at (70, 34)., You encounter water at (65, 34), preventing you from reaching (65, 32) from this direction., You have arrived at (63, 36)., You encounter water at (65, 34), preventing you from reaching (63, 36) from this direction., You encounter water at (65, 34), preventing you from reaching (63, 36) from this direction., You have arrived at (63, 36)., You encounter water at (65, 34), preventing you from reaching (63, 36) from this direction., You encounter water at (65, 34), preventing you from reaching (63, 36) from this direction., You have arrived at (63, 36)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 33), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You have arrived at (65, 33)., You encounter water at (65, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 32), preventing you from reaching (62, 32) from this direction., You have arrived at (62, 32)., You encounter water at (65, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 32), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You encounter water at (66, 31), preventing you from reaching (65, 33) from this direction., You have arrived at (65, 33)., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You encounter water at (66, 31), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 36), preventing you from reaching (65, 34) from this direction., You have arrived at (65, 34)., You encounter water at (66, 36), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (66, 36), preventing you from reaching (63, 36) from this direction., You have arrived at (63, 36)., You encounter water at (66, 36), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (67, 37), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (67, 37), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (67, 36), preventing you from reaching (68, 25) from this direction., You encounter water at (67, 36), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (67, 36), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (67, 36), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (67, 36), preventing you from reaching (68, 25) from this direction., You encounter water at (67, 36), preventing you from reaching (60, 33) from this direction., You have arrived at (60, 33)., You encounter water at (65, 35), preventing you from reaching (60, 33) from this direction., You have arrived at (60, 33)., You encounter water at (65, 35), preventing you from reaching (60, 33) from this direction., You have arrived at (60, 33)., You encounter water at (65, 35), preventing you from reaching (60, 33) from this direction., You have arrived at (60, 33)., You encounter water at (65, 35), preventing you from reaching (60, 33) from this direction., You have arrived at (60, 33)., You encounter water at (68, 36), preventing you from reaching (66, 34) from this direction., You have arrived at (66, 34)., You encounter water at (66, 37), preventing you from reaching (59, 39) from this direction., You have arrived at (65, 35)., You encounter water at (66, 37), preventing you from reaching (65, 35) from this direction., You encounter water at (66, 37), preventing you from reaching (65, 35) from this direction., You have arrived at (65, 35)., You have arrived at (63, 38)., You encounter water at (63, 38), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (63, 38), preventing you from reaching (66, 37) from this direction., You encounter water at (64, 37), preventing you from reaching (60, 38) from this direction., You have arrived at (60, 38)., You encounter water at (64, 37), preventing you from reaching (57, 32) from this direction., You have arrived at (57, 32)., You have arrived at (62, 43)., You have arrived at (67, 38)., You have arrived at (68, 38)., You have arrived at (68, 38)., You have arrived at (65, 36)., You encounter water at (66, 38), preventing you from reaching (65, 36) from this direction., You have arrived at (65, 36)., You encounter water at (66, 38), preventing you from reaching (64, 37) from this direction., You have arrived at (64, 37)., You encounter water at (66, 39), preventing you from reaching (64, 37) from this direction., You have arrived at (70, 34)., You have arrived at (66, 39)., You have arrived at (70, 34)., You have arrived at (66, 39)., You have arrived at (70, 32)., You encounter water at (69, 31), preventing you from reaching (66, 24) from this direction., You have arrived at (66, 24)., You have arrived at (69, 28)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 25), preventing you from reaching (68, 27) from this direction., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (65, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (63, 22), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You have arrived at (68, 27)., You have arrived at (68, 27)., You encounter water at (64, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 23), preventing you from reaching (68, 27) from this direction., You encounter water at (64, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 23), preventing you from reaching (68, 27) from this direction., You have arrived at (68, 27)., You encounter water at (64, 23), preventing you from reaching (68, 25) from this direction., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 26)., You have arrived at (64, 26)., You encounter water at (64, 25), preventing you from reaching (65, 25) from this direction., You have arrived at (65, 25)., You encounter water at (64, 25), preventing you from reaching (65, 25) from this direction., You have arrived at (65, 25)., You encounter water at (64, 25), preventing you from reaching (65, 25) from this direction., You encounter water at (64, 24), preventing you from reaching (65, 25) from this direction., You have arrived at (65, 25)., You encounter water at (65, 24), preventing you from reaching (65, 25) from this direction., You have arrived at (65, 25)., You encounter water at (65, 24), preventing you from reaching (65, 25) from this direction., You encounter water at (65, 24), preventing you from reaching (65, 25) from this direction., You have arrived at (65, 25)., You encounter water at (65, 24), preventing you from reaching (65, 25) from this direction., You have arrived at (65, 25)., You encounter water at (65, 24), preventing you from reaching (69, 27) from this direction., You have arrived at (69, 27)., You encounter water at (65, 24), preventing you from reaching (65, 24) from this direction., You have arrived at (65, 24)., You encounter water at (65, 24), preventing you from reaching (65, 24) from this direction., You have arrived at (65, 24)., You encounter water at (65, 24), preventing you from reaching (65, 24) from this direction., You encounter water at (65, 24), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 24), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (65, 24), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You encounter water at (61, 22), preventing you from reaching (68, 25) from this direction., You have arrived at (68, 25)., You have arrived at (64, 25)., You have arrived at (68, 25)., You encounter water at (64, 25), preventing you from reaching (68, 19) from this direction., You have arrived at (68, 19)., You encounter water at (63, 24), preventing you from reaching (68, 19) from this direction., You have arrived at (57, 25)., You have arrived at (64, 25)., You encounter water at (57, 25), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You encounter water at (57, 25), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You encounter water at (58, 25), preventing you from reaching (57, 25) from this direction., You have arrived at (57, 25)., You have arrived at (64, 25)., You encounter water at (64, 25), preventing you from reaching (63, 24) from this direction., You have arrived at (63, 24)., You have arrived at (58, 25)., You have arrived at (61, 23)., You encounter water at (64, 25), preventing you from reaching (64, 25) from this direction., You encounter water at (64, 25), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You encounter water at (65, 27), preventing you from reaching (64, 25) from this direction., You encounter water at (65, 27), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You encounter water at (65, 27), preventing you from reaching (64, 25) from this direction., You have arrived at (57, 28)., You have arrived at (66, 26)., You encounter water at (64, 27), preventing you from reaching (66, 26) from this direction., You have arrived at (66, 26)., You encounter water at (64, 24), preventing you from reaching (67, 25) from this direction., You have arrived at (67, 25)., You encounter water at (64, 24), preventing you from reaching (67, 25) from this direction., You encounter water at (64, 24), preventing you from reaching (67, 25) from this direction., You have arrived at (67, 25)., You encounter water at (69, 19), preventing you from reaching (67, 25) from this direction., You have arrived at (67, 25)., You encounter water at (69, 19), preventing you from reaching (67, 25) from this direction., You encounter water at (69, 19), preventing you from reaching (67, 25) from this direction., You have arrived at (67, 25)., You encounter water at (69, 19), preventing you from reaching (67, 25) from this direction., You have arrived at (67, 25)., You encounter water at (69, 19), preventing you from reaching (67, 25) from this direction., You have arrived at (68, 25)., You encounter water at (69, 19), preventing you from reaching (68, 25) from this direction., You have arrived at (64, 18)., You have arrived at (67, 15)., You have arrived at (69, 19)., You have arrived at (68, 25)., You encounter water at (69, 22), preventing you from reaching (68, 25) from this direction., You encounter water at (69, 22), preventing you from reaching (68, 25) from this direction., You encounter water at (69, 22), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You encounter water at (69, 19), preventing you from reaching (67, 23) from this direction., You have arrived at (61, 23)., You have arrived at (62, 22)., You encounter water at (63, 17), preventing you from reaching (62, 22) from this direction., You encounter water at (63, 17), preventing you from reaching (66, 25) from this direction., You have arrived at (66, 25)., You encounter water at (63, 17), preventing you from reaching (66, 20) from this direction., You have arrived at (66, 20)., You encounter water at (63, 17), preventing you from reaching (66, 20) from this direction., You have arrived at (66, 20)., You encounter water at (63, 17), preventing you from reaching (66, 20) from this direction., You have arrived at (66, 20)., You have arrived at (60, 24)., You have arrived at (61, 24)., You have arrived at (61, 24)., You have arrived at (61, 24)., You have arrived at (61, 21)., You have arrived at (61, 21)., You have arrived at (61, 21)., You have arrived at (63, 24)., You have arrived at (63, 24)., You have arrived at (63, 24)., You have arrived at (62, 23)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (64, 25)., You have arrived at (62, 26)., You have arrived at (65, 24)., You have arrived at (62, 26)., You have arrived at (67, 24)., You have arrived at (69, 20)., You have arrived at (68, 22)., You have arrived at (69, 20)., You have arrived at (63, 24)., You encounter water at (66, 17), preventing you from reaching (64, 26) from this direction., You have arrived at (64, 26)., You encounter water at (66, 17), preventing you from reaching (62, 23) from this direction., You have arrived at (62, 23)., You encounter water at (66, 17), preventing you from reaching (62, 23) from this direction., You have arrived at (62, 23)., You encounter water at (66, 17), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You encounter water at (66, 17), preventing you from reaching (64, 25) from this direction., You have arrived at (64, 25)., You have arrived at (64, 26)., You have arrived at (65, 19)., You encounter water at (65, 19), preventing you from reaching (65, 19) from this direction., You have arrived at (65, 19)., You have arrived at (64, 24)., You have arrived at (63, 25)., You have arrived at (60, 22)., You have arrived at (60, 24)., You have arrived at (59, 24)., You have arrived at (62, 27)., You have arrived at (61, 31)., You have arrived at (61, 31)., You have arrived at (60, 23)., You have arrived at (62, 29)., You have arrived at (55, 33)., You have arrived at (55, 33)., You have arrived at (56, 32)., You have arrived at (56, 32)., You have arrived at (56, 32)., You have arrived at (56, 36)., You have arrived at (55, 36)., You have arrived at (62, 32)., You have arrived at (63, 33)., You have arrived at (63, 33)., You have arrived at (65, 33)., You have arrived at (65, 33)., You have arrived at (62, 32)., You have arrived at (61, 35)., You have arrived at (61, 32)., You have arrived at (61, 32)., You have arrived at (61, 32)., You have arrived at (61, 32)., You have arrived at (61, 32)., You encounter water at (56, 31), preventing you from reaching (65, 35) from this direction., You have arrived at (65, 35)., You encounter water at (56, 31), preventing you from reaching (65, 35) from this direction., You have arrived at (65, 35)., You have arrived at (65, 35)., You have arrived at (56, 31)., You have arrived at (66, 32)., You have arrived at (68, 29)., You have arrived at (68, 29)., You encounter water at (69, 27), preventing you from reaching (65, 19) from this direction., You have arrived at (45, 15)., You have arrived at (46, 24)., You have arrived at (42, 29)., You have arrived at (47, 30)., You have arrived at (48, 26)., You have arrived at (51, 24)., You have arrived at (51, 20)., You have arrived at (43, 18)., You have arrived at (42, 28)., You have arrived at (42, 28)., You have arrived at (39, 19)., You have arrived at (38, 19)., You have arrived at (38, 27)., You have arrived at (34, 34)., You have arrived at (34, 34)., You have arrived at (38, 29)., You have arrived at (38, 29)., You have arrived at (38, 29)., You have arrived at (38, 29)., You have arrived at (38, 29)., You have arrived at (38, 29)., You have arrived at (37, 29)., You have arrived at (37, 29)., You have arrived at (38, 29)., You have arrived at (37, 29)., You have arrived at (38, 29)., You have arrived at (38, 29)., You have arrived at (35, 31)., You have arrived at (36, 31)., You have arrived at (36, 31)., You have arrived at (36, 31)., You have arrived at (36, 32)., You have arrived at (36, 32)., You have arrived at (36, 32)., You have arrived at (35, 31)., You have arrived at (36, 31)., You have arrived at (35, 31)., You have arrived at (35, 31)., You have arrived at (34, 30)., You have arrived at (35, 31)., You have arrived at (36, 31)., You have arrived at (35, 31)., You have arrived at (35, 36)., You have arrived at (36, 37)., You have arrived at (35, 36)., You have arrived at (33, 37)., You have arrived at (34, 37)., You have arrived at (35, 36)., You have arrived at (35, 36)., You have arrived at (36, 35)., You have arrived at (35, 36)., You have arrived at (35, 36)., You have arrived at (34, 36)., You have arrived at (36, 37)., You have arrived at (36, 37)., You have arrived at (34, 37)., You have arrived at (34, 37)., You encounter water at (32, 38), preventing you from reaching (32, 40) from this direction., You have arrived at (35, 36)., You encounter water at (34, 37), preventing you from reaching (32, 40) from this direction., You have arrived at (32, 40)., You have arrived at (32, 40)., You have arrived at (34, 37)., You have arrived at (34, 37)., You encounter water at (34, 37), preventing you from reaching (32, 40) from this direction., You have arrived at (32, 40)., You encounter water at (34, 37), preventing you from reaching (32, 40) from this direction., You have arrived at (32, 40)., You encounter water at (33, 38), preventing you from reaching (32, 40) from this direction., You have arrived at (32, 40)., You encounter water at (33, 38), preventing you from reaching (32, 40) from this direction., You encounter water at (33, 38), preventing you from reaching (32, 40) from this direction., You have arrived at (32, 40)., You encounter water at (33, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (33, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (33, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (33, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (33, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (33, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (35, 37), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (35, 37), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (35, 37), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (35, 37), preventing you from reaching (38, 39) from this direction., You encounter water at (35, 37), preventing you from reaching (38, 39) from this direction., You encounter water at (35, 37), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (39, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (39, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (39, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You have arrived at (40, 35)., You encounter water at (39, 38), preventing you from reaching (39, 39) from this direction., You have arrived at (39, 39)., You have arrived at (40, 35)., You have arrived at (38, 39)., You have arrived at (38, 39)., You encounter water at (38, 38), preventing you from reaching (38, 39) from this direction., You encounter water at (38, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (38, 38), preventing you from reaching (39, 38) from this direction., You have arrived at (39, 38)., You encounter water at (40, 40), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (40, 40), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (37, 37), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (37, 37), preventing you from reaching (38, 39) from this direction., You encounter water at (38, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (38, 38), preventing you from reaching (38, 39) from this direction., You have arrived at (39, 39)., You encounter water at (41, 40), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (41, 40), preventing you from reaching (38, 39) from this direction., You have arrived at (38, 39)., You encounter water at (41, 40), preventing you from reaching (39, 37) from this direction., You have arrived at (39, 37)., You have arrived at (41, 40)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (39, 40), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You encounter water at (40, 39), preventing you from reaching (39, 41) from this direction., You encounter water at (40, 39), preventing you from reaching (39, 41) from this direction., You have arrived at (39, 41)., You have arrived at (46, 38)., You have arrived at (46, 38)., You have arrived at (46, 40)., You have arrived at (45, 40)., You have arrived at (46, 38)., You have arrived at (43, 36)., You have arrived at (43, 36)., You have arrived at (46, 38)., You have arrived at (46, 38)., You have arrived at (45, 38)., You have arrived at (45, 38)., You have arrived at (45, 38)., You have arrived at (44, 37)., You have arrived at (46, 37)., You have arrived at (46, 37)., You have arrived at (46, 37)., You have arrived at (46, 37)., You have arrived at (45, 42)., You have arrived at (45, 42)., You have arrived at (45, 42)., You have arrived at (50, 41)., You have arrived at (45, 42)., You have arrived at (50, 41)., You have arrived at (51, 43)., You have arrived at (51, 43)., You have arrived at (50, 41)., You have arrived at (71, 34)., You have arrived at (71, 34)., You have arrived at (71, 34)., You have arrived at (71, 34)., You have arrived at (71, 34)., You have arrived at (71, 34)., You have arrived at (71, 34)., You have arrived at (69, 37)., You encounter water at (66, 20), preventing you from reaching (64, 29) from this direction., You have arrived at (65, 20)., You encounter water at (66, 20), preventing you from reaching (65, 20) from this direction., You encounter water at (66, 20), preventing you from reaching (65, 20) from this direction., You have arrived at (65, 20)., You encounter water at (66, 20), preventing you from reaching (65, 20) from this direction., You have arrived at (65, 20)., You encounter water at (66, 20), preventing you from reaching (65, 20) from this direction., You have arrived at (65, 20)., You encounter water at (66, 20), preventing you from reaching (65, 20) from this direction., You have arrived at (65, 20)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (70, 25), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (69, 20), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (69, 20), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (69, 20), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You have arrived at (69, 20)., You encounter water at (69, 23), preventing you from reaching (69, 37) from this direction., You have arrived at (69, 37)., You encounter water at (69, 23), preventing you from reaching (69, 23) from this direction., You have arrived at (69, 23)., You reflect: Yes, I encounter water obstacles that prevent me from reaching certain locations on the island, forcing me to change my path. The woman's whistling pattern matches mine, suggesting a deep connection between us and the island's energy. Despite the obstacles, I'm able to reach certain locations, including the mysterious (69, 37) coordinates, where I sense a powerful connection to the island's ancient knowledge., You have arrived at (69, 37)., You have arrived at (69, 36)., You have arrived at (69, 36)., You have arrived at (54, 29)., You have arrived at (55, 29)., You have arrived at (54, 29)., You have arrived at (53, 42)., You have arrived at (53, 41)., You have arrived at (52, 41)., You have arrived at (55, 43)., You have arrived at (54, 44)., You have arrived at (54, 44)., You have arrived at (56, 41)., You have arrived at (56, 41)., You have arrived at (56, 42)., You have arrived at (56, 42)., You have arrived at (56, 42).,";