long x = Long.parseLong(id) ;
NodeId nodeId = new NodeId(x) ;
Node n = nodeTable.getNodeForNodeId(nodeId) ;
//System.out.printf("%s [%d] => %s\n", id, x, n) ;
Hash h = new Hash(SystemTDB.LenNodeHash) ;
NodeLib.setHash(h, n) ;
String str = Bytes.asHex(h.getBytes()) ;
System.out.printf("%s %08d 0x%s # %s\n", id, x, str, n) ;
} catch (Exception ex)
{
System.out.println("Failed to decode: "+id) ;
}