If we need to be prepared for the possible danger of an alien invasion, the first thing to do is tofind out where can they come from. One way to determine if a planet is inhabited by intelligentcreatures is to study high resolution pictures of planets trying to find typical characteristics ofeffects of an intelligent life. There are so many habitable planets that a computer program mustbe written for this task. One distinctive feature of a colonized planets is the presence of surfacemines. An alien mine is a square structure with a depth uniformly decreasing from one of thesides of the square towards the opposite.

Your task is to find the largest mine on a provided bitmap image of a planet. The picture isa rectangular grid of numbers between 0 and 65535, representing the shades of grey. Mineswill appear as squares of either the same shade or with shade levels gradually and uniformlychanging from one side to another. See the above figure for an example. Your program willconsider only square mines in some special orientations.An axis-parallel square is the set of pixels (i, j) such that c
1 ≤ i ≤ c
2 and r
1 ≤ j ≤ r
2 for some c
1, c
2, r
1, r
2, c
2 - c
1 = r
2 - r
1.A vertically (horizontally) oriented mine is an axis-parallel square for which there exist integersS and K such that the shade of every pixel (i, j) of the square is equal to S + iK (S + jK forhorizontally oriented mines).A diagonally oriented mine is an axis-parallel square for which there exist integers Q ∈ {1, -1},S and K such that the shade of every pixel (i, j) of the square is equal to S + (i + Qj)K .