By the way, error "0002:" indicates that it comes from the STUB loader. The second part "0005" is GetLastError() ERROR_ACCESS_DENIED (Access is denied).

The STUB loader unpacked the decompression library LSUNPACK into the temporary Windows folder (this succeeded in your case). Otherwise, we would have seen a "0001:" error. After the unpacking process it used "LoadLibrary" to load the LSUNPACK library. This failed with ERROR_ACCESS_DENIDED. In other words, the protection software blocked the LoadLibrary Windows API action.

Friedrich