def input_idle(data):
    (value, ) = uvarintsDecode(data)
    return '%d' % value
def input_idle(data):
    (value,) = uvarintsDecode(data)
    return '%d' % value
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)