We have a game here. The game is played on a $10x10$ board. Here are the rules:
- Stones are placed on these squares as in the picture below.
- We have two players with alternating moves.
- As a legal move, we can move any stone by leftward, downward, and downward diagonal to any square. (Moves can be of any length greater than or equal to 1). Each stone has a role similar to that of a chess queen
- In any square, there can be any number of stones.
- At each turn, only one stone is allowed to move.
- Once all the stones are placed in the square located at the bottom left corner of the table, the game finishes.
- The one who plays the last legal move loses the game (misère convention).
Now we are asked to show the position above is a Normal position. And we are asked to find the all possible winning moves.
Here is my attempt:

Edit: This initial attempt was WRONG as this is not a Normal game but a Misére one. So, I fixed this:

I know that I cannot continue forever by labeling as this.The game is more complex than it looks. I am open to any suggestions. Well, perhaps using Sprague-Grundy function can be useful but I don't know how to make use of it. Thanks in advance.
Normal Position (N-position): They are the positions which are winning for the Next player to move. Previous Position (P-position): Positions that are winning for the Previous player (the player who just moved):
So, the player aiming to win tries to make a move that puts the next player in a P-position.


Your game is known as the misere variatnnt Wythoff's game. In general, the Sprague-Grundy theorem does not hold for misere games, meaning you cannot always replace misere games in a sum by equivalent nim heaps. However, this is true for a subclass of games called tame games. According to Winning Ways, vol 2, page $427$, the positions of Wythoff's game are indeed tame.
There is no simple rule to determine the normal nim value of a Wythoff's game position, but we can calculate them recursively. Below are the results according to Winning Ways. Here, $n$ is an abbreviation for the firm genus $n^n$ (see Winning Ways vol 2 p. 413 and on for the definitions of these terms and the theory behind them). Using this, we solve this using Jorge's reasoning
in a deleted answer. Namely, the position is equivalent to the misere-nim position$$ 9\oplus5\oplus5\oplus5\oplus8\oplus4\oplus4\oplus11\oplus11\oplus16=9\oplus5\oplus8\oplus16=20 $$ This is nonzero, so we are looking at an $N$-position. Since all summands are firm, the winning move is to one where the nim sum of the normal-play Grundy values is zero. Since there are no options with a summand of $16$, the winning move must be to replace $16$ with $4$, so the unique winning move is to move the upper right counter diagonally one space.
$$\text{Genera for Wythoff's game}\\\begin{array}{|c|c|c|c|c|c|c|c|c|c|} \hline 9 & 10 & 11 & 12 & 8 & 7 & 13 & 14 & 15 & 16 \\ \hline 8 & 6 & 7 & 10 & 1 & 2 & 5 & 3 & 4 & 15 \\ \hline 7 & 8 & 6 & 9 & 0 & 1 & 4 & 5 & 3 & 14 \\ \hline 6 & 7 & 8 & 1 & 9 & 10 & 3 & 4 & 5 & 13 \\ \hline 5 & 3 & 4 & 0 & 6 & 8 & 10 & 1 & 2 & 7 \\ \hline 4 & 5 & 3 & 2 & 7 & 6 & 9 & 0 & 1 & 8 \\ \hline 3 & 4 & 5 & 6 & 2 & 0 & 1 & 9 & 10 & 12 \\ \hline 2 & 0^1 & 1^0 & 5 & 3 & 4 & 8 & 6 & 7 & 11 \\ \hline 1^0 & 2 & 0^1 & 4 & 5 & 3 & 7 & 8 & 6 & 10 \\ \hline 0^1 & 1^0 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 \\ \hline \end{array}$$