!7 p { File in = new File("/home/stefan/dev/ip-to-country.csv"); long last = 0; for (S s : linesFromReader(utf8BufferedReader(in))) { L l = tok_splitAtComma_unquote(s); if (l(l) < 3) continue; long start = ipToInt(first(l)); S country = last(l); print((start-last) + " " + country); last = start; } }