>>6374
>>6380
>>6470
>Since d contains a+x, this is the key.
Have spent some time reviewing VQC's na and nb formulas in terms of x and n, and the most recent post about finding the key in (e,1) related to (-f,1).
Just a reminder on the formulas:
na: e:1:(na+x):x:na:(na+2x+2)
nb: e:1:(nb+x+2n):(x+2n):nb:(nb+2x+4n+2)
So went in search of ways to understand movements in terms of x+2n, and may have stumbled on a better understanding for movements within specific cells.
For example, starting from the nb record for c145: (1,1,67) = {1:1:8978:133:8845:9113}
We can move to the next record at (1,1,68) = {1:1:9248:135:9113:9385} by manipulating d.
new d = d + 2(x+2n)
new d = 8978 + 2(133+2*1) = 9248
But what about moving back to (1,1,67)? The formula for d in reverse turns out to be pretty simple.
previous d = a - x
previous d = 9113 - 135 = 8978
For the current record, we know that d=a+x. And now we can calculate the previous record's d value in terms of the current a and x.
And it turns out that this movement works everywhere, regardless of (e,n).
From the original c145 record (1,61,6) = {1:61:12:11:1:145}, the next relevant record in terms of x and n should be:
next d = d + 2(x+2n)
next d = 12 + 2(11 + 2*61)
next d = 278
(1,61,67) = {1:61:278:133:145:533}
And then moving backwards:
previous d = 145 - 133 = 12.
Here are a few additional records in the same chain, that show the movements in reverse:
(1,61,67) = {1:61:278:133:145:533} = 77285
(1,61,128) = {1:61:788:255:533:1165} = 620945
(1,61,189) = {1:61:1542:377:1165:2041} = 2377765
(1,61,250) = {1:61:2540:499:2041:3161} = 6451601
2041 - 499 = 1542
1165 - 377 = 788
533 - 255 = 278
The shortcuts in the grid to navigating this way starting at (e,n) at t are:
Next d record = (e,n) at [t + n]
Previous d record = (e,n) at [t - n]