static Set concatListsToCISet_es(Collection> lists) { Set l = ciSet_es(); for (Collection list : lists) if (list != null) l.addAll(list); ret l; }