JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrimport os import sys def strtobool(val: str) -> bool: val = val.lower() if val in ("y", "yes", "t", "true", "on", "1"): return True elif val in ("n", "no", "f", "false", "off", "0"): return False else: return False def use_emojis() -> bool: # All emojis that pipx might possibly use emoji_test_str = "✨🌟⚠️😴⣷⣯⣟⡿⢿⣻⣽⣾" try: emoji_test_str.encode(sys.stderr.encoding) platform_emoji_support = True except UnicodeEncodeError: platform_emoji_support = False return strtobool(str(os.getenv("USE_EMOJI", platform_emoji_support))) EMOJI_SUPPORT = use_emojis() if EMOJI_SUPPORT: stars = "✨ 🌟 ✨" hazard = "⚠️" error = "⛔" sleep = "😴" else: stars = "" hazard = "" error = "" sleep = ""