static Cache<LL<S>> english1000VerbQuintuples_cache = new Cache(f english1000VerbQuintuples_load);

static LL<S> english1000VerbQuintuples() {
  ret english1000VerbQuintuples_cache!;
}

static LL<S> english1000VerbQuintuples_load() {
  new LL<S> out;
  for (S s : tlft_j(loadSnippet(#1010402))) {
    L<S> l = splitAtSpace(s);
    if (l(l) != 6) { /*print("e1vq huh? " + s);*/ } else {
      l = dropFirst(l);
      out.add(l);
    }
  }
  ret out;
}