Reads data from a Strem an puts it into a SofuObject tree.
            
 Parameters
 Parameters- input (Stream)
- Stream to read from
 Return Value
 Return ValueA Sofu.Map containing the read data
 Examples
 ExamplesLoad a file from a MemoryStream and write it to "text.sofu"
 CopyC#
CopyC#MemoryStream m = new MemorySteram(somebytearray); Sofu.Sofu.Map file = SofuReader.LoadFile(ms); file.Write("text.sofu");//Write it out.