static A findConceptWhere(Class c, O... params) {
ret findConceptWhere(mainConcepts, c, params);
}
static A findConceptWhere(Concepts concepts, Class c, O... params) {
params = expandParams(c, params);
for (A x : concepts.list(c)) if (checkConceptFields(x, params)) ret x;
null;
}
static Concept findConceptWhere(Concepts concepts, S c, O... params) {
for (Concept x : concepts.list(c)) if (checkConceptFields(x, params)) ret x;
null;
}