package stonelog var ( stoneTracePrefixes = []string{ "Science traces", "Lab sensors detect", "Microscope focus on", "Quantum scanner active:", "Data particles observed:", } stoneDebugPrefixes = []string{ "Hypothesis forming:", "Analyzing data patterns:", "Debugging quantum fluctuations:", "Lab notes:", "Testing variables:", } stoneInfoPrefixes = []string{ "Experiment successful:", "Lab results:", "Scientific consensus:", "Discovery logged:", "Theory proven:", } stoneWarnPrefixes = []string{ "Anomaly detected:", "Risk probability increased:", "System instability suspected:", "Contamination warning:", "Resource depletion imminent:", } stoneErrorPrefixes = []string{ "Critical malfunction:", "Lab accident reported:", "Data corruption confirmed:", "System collapse:", "Hypothesis disproven:", } stonePanicPrefixes = []string{ "¡¡¡CATASTROPHIC FAILURE!!!", "Emergency protocol FAILED:", "LEAVE THE LAB!", "¡¡¡IMMINENT NUCLEAR FUSION!!!", } )