sbool containsMap_ciValues(Iterable<SS> l, SS map) {
  if (l != null) for (SS m : l)
    if (mapEquals_ciValues(m, map)) true;
  false;
}