The elliptic-curve discrete log is easy on this tiny curve. The table brute-forces k until Q appears.
highlighted = computed this step
Why the toy breaks
A tiny curve lets an attacker try scalar multiples in order. The hit row reveals which k produced Q.
kG=Q
Target Q
The public point is Q=(10,6).
Q=(10,6)
Recover k
The table finds Q at k=3.
k=3
Summary
The toy discrete log is recovered immediately. NOTE: toy-modulus; no-side-channel; no-production; never-roll-your-own. Exact point arithmetic over a deliberately tiny prime field; real ECC uses about 256-bit curves such as Curve25519 in reviewed protocols.