More details, please. Do you use Quicken Mac or Quicken for Windows? What version, edition level (Starter, Deluxe, etc.) and release (R xx.xx) of Quicken are you using? US, Canadian or other country version? Is your subscription expired or still active? Click Help / About Quicken (Mac: Quicken / About Quicken) to get this information. What version of Windows or Mac OS are you using?
You can open this file with Notepad, another ASCII file text editor or open it with Excel as tab-delimited text file, if you're interested.
Contract conditions should never be violated during execution of a bug-free program. Contracts are therefore typically only checked in debug mode during software development. Later at release, the contract checks are disabled to maximize performance.
In many programming languages, contracts are implemented with assert. Asserts are by default compiled away in release mode in C/C++, and similarly deactivated in C# and Java.
Launching the Python interpreter with "-O" (for "optimize") as an argument will likewise cause the Python code generator to not emit any bytecode for asserts.
This effectively eliminates the run-time costs of asserts in production code—irrespective of the number and computational expense of asserts used in development—as no such instructions will be included into production by the compiler.