1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| Major_Arcana = ["The Fool", "The Magician", "The High Priestess", "The Empress", "The Emperor", "The Hierophant", "The Lovers", "The Chariot", "Strength", "The Hermit", "Wheel of Fortune", "Justice", "The Hanged Man", "Death", "Temperance", "The Devil", "The Tower", "The Star", "The Moon", "The Sun", "Judgement", "The World"] wands = ["Ace of Wands", "Two of Wands", "Three of Wands", "Four of Wands", "Five of Wands", "Six of Wands", "Seven of Wands", "Eight of Wands", "Nine of Wands", "Ten of Wands", "Page of Wands", "Knight of Wands", "Queen of Wands", "King of Wands"] cups = ["Ace of Cups", "Two of Cups", "Three of Cups", "Four of Cups", "Five of Cups", "Six of Cups", "Seven of Cups", "Eight of Cups", "Nine of Cups", "Ten of Cups", "Page of Cups", "Knight of Cups", "Queen of Cups", "King of Cups"] swords = ["Ace of Swords", "Two of Swords", "Three of Swords", "Four of Swords", "Five of Swords", "Six of Swords", "Seven of Swords", "Eight of Swords", "Nine of Swords", "Ten of Swords", "Page of Swords", "Knight of Swords", "Queen of Swords", "King of Swords"] pentacles = ["Ace of Pentacles", "Two of Pentacles", "Three of Pentacles", "Four of Pentacles", "Five of Pentacles", "Six of Pentacles", "Seven of Pentacles", "Eight of Pentacles", "Nine of Pentacles", "Ten of Pentacles", "Page of Pentacles", "Knight of Pentacles", "Queen of Pentacles", "King of Pentacles"] Minor_Arcana = wands + cups + swords + pentacles tarot = Major_Arcana + Minor_Arcana
def inverse_fortune_wheel(current): a, b, c, d, e = current numerator = a + b + d - c - e if numerator % 2 != 0: raise ValueError("Cannot invert, odd numerator.") v1 = numerator // 2 v0 = a - v1 v2 = b - v1 v3 = c - v2 v4 = d - v3 assert (v4 + v0) == e, "Validation failed." return [v0, v1, v2, v3, v4]
final_values = [ 2532951952066291774890498369114195917240794704918210520571067085311474675019, 2532951952066291774890327666074100357898023013105443178881294700381509795270, 2532951952066291774890554459287276604903130315859258544173068376967072335730, 2532951952066291774890865328241532885391510162611534514014409174284299139015, 2532951952066291774890830662608134156017946376309989934175833913921142609334 ]
current = final_values.copy() for _ in range(250): current = inverse_fortune_wheel(current)
def get_card_name(v): idx = v % 78 reversed_idx = (idx ^ -1) % 78 if 0 <= reversed_idx < 22: return f"re-{Major_Arcana[reversed_idx]}" elif idx < 22: return Major_Arcana[idx] else: minor_idx = idx - 22 suit = minor_idx // 14 card = minor_idx % 14 suit_name = ['Wands', 'Cups', 'Swords', 'Pentacles'][suit] if card < 10: number = ['Ace', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten'][card] return f"{number} of {suit_name}" else: court = ['Page', 'Knight', 'Queen', 'King'][card - 10] return f"{court} of {suit_name}"
initial_fate = [get_card_name(v) for v in current] flag = "hgame{" + "&".join(initial_fate).replace(" ", "_") + "}" print(flag)
|