mspb.exe has CodeView info

Dso.bnk is an archive of compressed executables.
DSOs/ contains the extracted and decompressed executables from Dso.bnk

File entries in the .bnk file are at the beginning until an entry has the compressed length, decompressed length, and data offset all equal to 0. (The last entry can be ignored.)

struct BNKEntry {
    char name[0x20];
    int fileOffset; // offset to data within bnk file
    int compressedLength;
    int decompressedLength;
};

Last entry will have the same name as the previous entry but fileOffset, compressedLength, and decompressedLength equal to 0.

After extracting the compressed data, quickbms can be used to decompress them using BPE.
