
filename_to_symbol = {
    'addition': 'PLUS',
    'subtraction': 'MINUS',
    'cos': 'COS',
    'sin': 'SIN',
    'tan': 'TAN',
    'delete': 'BACKSPACE',
    'dismiss': 'DISMISS',
    'division': 'DIVIDE',
    'equals': 'EQUAL',
    'equals-not': 'NEQ',
    'exponent-2': 'EXP_2',
    'exponent-3': 'EXP_3',
    'exponent': 'EXP',
    'fraction': 'FRAC_INCLUSIVE',
    'fraction-mixed-number': 'FRAC_EXCLUSIVE',
    'greater-than-not': 'GEQ',
    'greater-than': 'GT',
    'less-than-not': 'LEQ',
    'less-than': 'LT',
    'log-10': 'LOG',
    'log-e': 'LN',
    'log': 'LOG_N',
    'move-backward': 'ARROW',
    'parenthesis-left': 'LEFT_PAREN',
    'parenthesis-right': 'RIGHT_PAREN',
    'multiplication-cross': 'TIMES',
    'multiplication-dot': 'CDOT',
    'percent': 'PERCENT',
    'radix-character': 'PERIOD',
    'radical': 'RADICAL',
    'radical-2': 'SQRT',
    'radical-3': 'CUBE_ROOT',
    'jump-out-numerator': 'JUMP_OUT_NUMERATOR',
    'jump-out-base': 'JUMP_OUT_BASE',
    'jump-out-exponent': 'JUMP_OUT_EXPONENT',
    'jump-out-mixed-number-integer': 'JUMP_INTO_NUMERATOR',
    'jump-out-denominator': 'JUMP_OUT_DENOMINATOR',
    'jump-out-parentheses': 'JUMP_OUT_PARENTHESES'
}
