import json


def rule(event):
    if "(2 users now present)" in json.dumps(event.to_dict()):
        return True
    return False
