import json, sys, io
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
b = json.load(open('_new_batch.json', encoding='utf-8'))
for it in b:
    s, l = len(it['short']), len(it['long'])
    fs = '' if 750 <= s <= 1050 else ' <-S'
    fl = '' if 750 <= l <= 1050 else ' <-L'
    print(f"{it['cks'][0]:18} short={s}{fs}  long={l}{fl}")
