main.py [38:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ans = dict()
    active_type = None
    active_value = ''
    for i in range(len(tokens)):
        if labels[i] == 'O':
            if active_type is not None:
                if active_type not in ans:
                    ans[active_type] = []
                ans[active_type].append(active_value)
                active_type = None
                active_value = ''
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main.py [88:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ans = dict()
    active_type = None
    active_value = ''
    for i in range(len(tokens)):
        if labels[i] == 'O':
            if active_type is not None:
                if active_type not in ans:
                    ans[active_type] = []
                ans[active_type].append(active_value)
                active_type = None
                active_value = ''
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



