public bool VerifyHand()
        {
            FastCheck fc = new FastCheck();

            bool x = true;

            Thread.Sleep(2000);

            if (fc.AnyHandSlotIsEmpty())
            {
                x = false;
            }

            if (fc.RedReadytoRace())
            {
                NotePad.DoLog("Рука не соответствует условию");
                x = false;
            }

            return(x);
        }