{% extends "global/Page.html" %} {% load otree static %} {% block title %} Part 2: Instructions
{% endblock %} {% block content %} Welcome to the second part of this study! As before, there will be various lotteries, all of which pay different amounts of money with different probabilities. Between the first and the second part, only the number of ball colors changes. From now on, each of the 100 balls in the bag will have one of the following {% player.choices_second %} colors:

The computer selects one of the 100 balls at random, where each ball is equally likely to get selected. Across lotteries, the number of balls of a given color might vary. Each color is associated with its own corresponding payout for you. An example lottery is:

{% for c in player.colors_second %} {% if c == 'red' %}73{% elif player.choices_first == 2 %}27{% else %}3{% endif %} out of 100 balls are {{ c }}. If one is drawn: Get ${% if c == 'red' %}20{% else %}0{% endif %}.

{% endfor %}


IMPORTANT: Red will always be the only winning color.
{% if player.choices_first == 10 %}Blue does not wing you anything.{% else %} The other colors do not win you anything.{% endif %}



{% next_button %}
{% endblock %}