!7 p-subst { final Web web = persistentObjectFromProgram(#1009839, "Web", Web); final WebNode today = web.findNode("Today"); print("Today: " + today); if (today == null) ret; print(); MultiMap relations = web_forwardMultiMapByLabel(today); Map> map = cloneMultiMapToTreeMap(relations); map.remove("Next day"); pnl(map); L actions = map.get("I should"); for (WebNode action : unnull(actions)) if (confirmYesNo(action.text() + "?")) send("Voice Actions.", action.text()); }