List<int> gf([final Iterable<int>? init]) { final r = List<int>.filled(16, 0); if (init != null) { r.setAll(0, init); } return r; }