!7 p-exp { Map data = cast decodeMozillaJSONLZ4File(userDir(".mozilla/firefox/peppermint.default/sessionstore-backups/recovery.jsonlz4")); //pnlStruct(data); int iWindow = 0; for (Map window : unnull((L) data.get("windows"))) { print("\nWindow " + (++iWindow)); for (Map tab : unnull((L) window.get("tabs"))) { int index = toInt(tab.get("index"))-1; L entries = cast tab.get("entries"); //print("entries: " + l(entries) + ", index=" + index); //printStruct(tab); Map entry = entries.get(index); //printStruct(entry); S title = cast entry.get("title"); S url = cast entry.get("url"); print(title); print(" " + url); } } }