static List <string> Test_parser_level_1_and_2(List <Scale> _Scales, List <double> Key_value, ref Dictionary <string, double> newscale)
        {
            List <string> Manifestations = new List <string>();

            for (int scale_number = 0; scale_number < _Scales.Count; ++scale_number)
            {
                string tmp = Descriptors_implementation._SCALE_counting(_Scales[scale_number], Key_value, newscale);
                if (tmp != null)
                {
                    Manifestations.Add(tmp);
                }
            }
            return(Manifestations);
        }