static Pair<L<Web>> webs_tripelizable_nonTripelizable(Collection<Web> webs) {
  new L<Web> a;
  new L<Web> b;
  for (Web web : unnull(webs))
    (ai_webToTriple(web) != null ? a : b).add(web);
  ret pair(a, b);
}