static S findAIConcept(S description) { Concepts concepts = new Concepts(#1006463).safeLoad(); ret findAIConcept(concepts, description); } static S findAIConcept(Concepts concepts, S description) { for (Concept c : list(concepts, "AIConcept")) if (match(description, getString(c, "name"))) ret getString(c, "globalID"); null; }