I'd like to change the year and month only. So we can create keys for a month once.
Year = first two digits YY1 = 20, last two digits YY2 = 25
Month = 05 (MM)
Days = 01 to 31 (DD)
XX = 00 to FF (XX)
2025XX01XX05
..
XX25XX052001
I've tried this earlier but there are a lots of combinations.
# All possible formats (year is split into YY1 and YY2)
formats = [
"{YY1}{YY2}{DD}{MM}{XX}{XX}",
"{YY1}{DD}{MM}{XX}{YY2}{XX}", # Year first, then day, month, hex
"{DD}{XX}{MM}{YY1}{XX}{YY2}", # Day first, hex in between, year split
"{XX}{YY1}{DD}{MM}{YY2}{XX}", # Hex first, then year and date
"{XX}{YY2}{DD}{MM}{YY1}{XX}", # Hex first, reversed year order
"{DD}{MM}{YY1}{XX}{YY2}{XX}", # Standard date, split year, hex mixed
"{YY2}{XX}{DD}{YY1}{XX}{MM}", # Reversed year split, mixed hex
etc