utils/compute_score.py [362:371]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            ',\n', '\n')
        result = {}
        if 'value' in content:
            find_list = re.findall('(key\d):(.*)\s*(value\d?):?\s*(.*)', content)
            bad_res = False
            for find_res in find_list:
                if len(find_res) != 4:
                    bad_res = True
                    break
                result[strip(find_res[1])] = strip(find_res[3])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



utils/compute_score.py [527:536]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ',\n', '\n')
    result = {}
    if 'value' in content:
        find_list = re.findall('(key\d):(.*)\s*(value\d?):?\s*(.*)', content)
        bad_res = False
        for find_res in find_list:
            if len(find_res) != 4:
                bad_res = True
                break
            result[strip(find_res[1])] = strip(find_res[3])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



