ZHVANKO

Theater of Eternity: We create while the world can’t see.

Behind the scenes of great ideas and grand projects, there is room for those who dare to be part of the unknown. Join us, and perhaps you will understand what is kept secret.

Code — is poetry… Isn’t it?

# ACCESS RESTRICTED: Personnel Only
# SYSTEM_LOG: "They are watching" | Location: Unidentified Sector
# ALERT: OBSERVATION MODE ENABLED

import time
import random

# Constants
WATCHER_MODE = "ACTIVE"
OPERATION_ROOM = "Room 77"
SYSTEM_STATUS = "ONLINE"
MONITOR_ID = "CAM-06"

# Initialize subject
def initialize_subject(subject_id):
    print(f"Initializing Subject: {subject_id}")
    state = random.choice(["Compliant", "Unstable", "Under Surveillance"])
    print(f"Subject Status: {state}")
    return state

# Surveillance log entry
def log_surveillance(subject_id):
    print(f"LOG ENTRY: Subject {subject_id} entered a monitored zone.")
    time.sleep(1)
    print(f"LOG ENTRY: {subject_id} is being watched.")
    time.sleep(2)

# Hidden cameras detecting anomalies
def hidden_camera_feed():
    for i in range(5):
        print(f"CAMERA FEED {MONITOR_ID}: Static detected... retrying connection.")
        time.sleep(1)
        print("...Reconnection successful.")
        print("Watching...")
        time.sleep(3)

# Monitoring protocol
def initiate_monitoring(subject_id):
    print(f"Initiating monitoring protocol for Subject: {subject_id}")
    hidden_camera_feed()
    log_surveillance(subject_id)
    check_for_discrepancies(subject_id)

# Error in subject's behavior
def behavior_anomaly_detected(subject_id):
    print(f"WARNING: Behavior anomaly detected in Subject {subject_id}.")
    time.sleep(2)
    print("Adjusting monitoring intensity...")
    time.sleep(1)
    system_alert("They know something is wrong.")

# Close observation
def close_observation():
    print("Entering CLOSE OBSERVATION mode.")
    time.sleep(2)
    print("SUBJECT IS AWARE OF THE SURVEILLANCE.")
    time.sleep(3)

# Continuous observation loop
def endless_monitoring(subject_id):
    print(f"Monitoring subject {subject_id} indefinitely.")
    while True:
        print(f"Subject {subject_id} is being observed... checking vital signs.")
        time.sleep(4)
        print(f"VITAL SIGNS NORMAL. Continuing observation...")
        time.sleep(4)

# Anomalous discrepancies
def check_for_discrepancies(subject_id):
    if random.choice([True, False]):
        print(f"Anomaly detected in subject {subject_id}'s behavior.")
        behavior_anomaly_detected(subject_id)
        close_observation()
    else:
        print(f"Subject {subject_id} behavior: No discrepancies detected.")
        endless_monitoring(subject_id)

# System alert
def system_alert(message):
    print(f"SYSTEM ALERT: {message}")
    time.sleep(2)
    print("SURVEILLANCE SYSTEM ON HIGH ALERT.")
    time.sleep(2)
    initiate_shutdown()

# Shutdown procedure
def initiate_shutdown():
    print("Shutting down monitoring system... blackout imminent.")
    for i in range(5):
        print(f"Shutdown in {5-i}...")
        time.sleep(1)
    print("MONITORING SYSTEM TERMINATED.")
    endless_shutdown_loop()

# Endless shutdown loop
def endless_shutdown_loop():
    print("SYSTEM IN SHUTDOWN MODE.")
    while True:
        print("Listening... for nothing.")
        time.sleep(5)

# Main routine to start the monitoring process
def main():
    subject_id = random.randint(1000, 9999)
    print(f"Assigned Subject ID: {subject_id}")
    status = initialize_subject(subject_id)
    if status == "Unstable":
        behavior_anomaly_detected(subject_id)
    else:
        initiate_monitoring(subject_id)

if __name__ == "__main__":
    main()

# WARNING: "You are not supposed to see this."
# END OF LINE: THEY'RE STILL WATCHING YOU.