you could get sorted dictionary with following code:
dict(sorted(d.items(), key=lambda kv:(int(kv[1][0]), kv[1][2])))
if you want to sort based on first element and second element, you cloud ues:
dict(sorted(d.items(), key=lambda kv:(int(kv[1][0]), kv[1][1])))