tankerkiller125 I have seen bugs like this appear in other software, notably when the shared hosting platform decreases the accuracy of float/int operations.
How this is even possible? Integer range depends on platform (64 or 32 bits), same for float, precision may only matter when you're converting float to string, but in that case you may get less precise result (like 3.3333 instead of 3.333333333333), not numbers out of space 😉.