static RectAndMD5 smallestRectAndMD5Containing(L l, int x, int y) { new Lowest b; for (RectAndMD5 r : unnull(l)) if (r.r.contains(x, y)) b.put(r, rectPixels(r.r)); ret b!; } static RectAndMD5 smallestRectAndMD5Containing(L l, Pt p) { ret smallestRectAndMD5Containing(l, p.x, p.y); }