I found if I save a topology from NeXt using:save = function() { localStorage.setItem('topology', JSON.stringify(topology.graph().getData())); };Then I try and load the saved data: load = function() { topology.setData(JSON.parse(localStorage.getItem(...