sS googleImageSearchFirstFullImageURL(S q) { temp tempLoadingAnim("Googling image: " + q); S html = str(googleImageSearch_loadPage(q)); S id = regexpFirstGroup("\"id\":\"(..............):\"", html); if (id == null) null; print("Image search: ID=" + id); S s = regexpFirstGroup("\"id\":\"" + id + ":\"[^}]+\"ou\":\"([^\"]+)\"", html); if (s == null) { print("Image search: ID not found. Saving debug"); saveTextFile(prepareProgramFile(#1007145, "debug.html"), html); } ret s; }