static byte[] grabScreenshotFrom_png(S ip) { S s = sendToAwareness(ip, "screenshot"); if (!startsWith(s, "[")) fail(s); L l = cast safeUnstructure(s); S type = cast first(l); assertEquals("png", type); ret (byte[]) l.get(1); }