Winner's earnings from this round: {{winner_earnings}} francs
Seller's earnings from this round: {{seller_earnings}} francs
Your Earnings
{% if role == 'seller' %}
Your role: {{role}}
You chose to sell {{quantity}} ticket{{plural}} and keep {{keep}}
ticket{{kplural}}
You earned:
{{quantity}}×{{price}}={{revenue}} francs from the
ticket{{plural}} you
sold
{{keep}}×{{seller_value}}={{retained_earnings}} francs from the
ticket{{kplural}} you kept
In this round, you earned: {{francs}} francs
{% endif %}
{% if role == 'buyer' %}
Your role: {{role}}
{% if not player.auction_winner %}
{% if player.in_auction %}
You did not win the auction
The auction ended at a price of {{price}} francs per-ticket, and the
software chose a winner randomly.
In this round, you earned {{player.francs}} francs
{% endif %}
{% if not player.in_auction %}
You did not win the auction
You left the auction at a price of {{player.leave_price}} francs
per-ticket
In this round, you earned {{player.francs}} francs
{% endif %}
{% endif %}
{% if player.auction_winner %}
You won the auction at a price of {{price}} francs per-ticket
The ticket{{plural}} you purchased have been exchanged for
{{ticket_value}} francs per-ticket for a total of {{ticket_value}}×{{quantity}}={{buyer_value}}
francs
You paid a total of {{price}}×{{quantity}}={{revenue}} francs
Your earnings from this
round: {{Constants.buyer_endowment}}-{{revenue}}+{{buyer_value}}={{francs}} francs