static L tokReplace_lower(SS map, L tok) { if (nempty(map)) for (int i = 1; i < l(tok); i += 2) { S x = map.get(lower(tok.get(i))); if (x != null) tok.set(i, x); } ret tok; }