def base26_triplet_1(a):
    b0 = a[0]
    b1 = a[1] & 0x3f
    h = b0 | b1 << 8
    return t26[h]