bool public builderMode = false;

string public status = "idle";

event NewWeekStarted();

function mondayBoot() public {

emit NewWeekStarted();

builderMode = true;

status = "building";

}