# Useful functions and classes
class Obj:
def __init__(self, **attrs): self.__dict__ = attrs
def __repr__(self): return repr(self.__dict__)