def rule(event):
    if any(
        [
            "OiCAAAAYInlM" in event.deep_get("ScriptBlockText", default=""),
            "OiJAAAAYInlM" in event.deep_get("ScriptBlockText", default=""),
        ]
    ):
        return True
    return False
