from otree.api import ( models, widgets, BaseConstants, BaseSubsession, BaseGroup, BasePlayer, Currency as c, currency_range ) author = 'Nayla Abney and Haiyan Wu' doc = """ Participants will view different experiences and answer questions pertaining to their safety and comfort levels for each experience. """ class Constants(BaseConstants): name_in_url = 'experience_questionnaire' players_per_group = None num_rounds = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): # should all of the experiences just be string fields since don't have any values coming from them Exp_1 = models.StringField( verbose_name='Although there is danger, travel into space and get within 430,000 miles of the Sun \ using newly developed super-reflective material on the spacecraft', ) ExpQ_1 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_2 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_3 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_4 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_5 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', min=0, max=100000, widget=widgets.Slider(), ) Exp_2 = models.StringField( verbose_name='Although Venezuela is one of the most dangerous countries in the world to visit, travel \ to Venezuela to see Angel Falls (the tallest waterfall in the world)?', ) ExpQ_6 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_7 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_8 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_9 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_10 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_3 = models.StringField( verbose_name='Being an early player in a start-up company, which has the potential to be the next Google', ) ExpQ_11 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_12 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_13 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_14 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_15 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_4 = models.StringField( verbose_name='Bungee-jumping off of the Rio Grande Bridge in New Mexico', ) ExpQ_16 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_17 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_18 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_19 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_20 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_5 = models.StringField( verbose_name='Cliff jumping at a local river that has strong currents', ) ExpQ_21 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_22 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_23 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_24 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_25 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_6 = models.StringField( verbose_name='Despite the obvious dangers, visit North Korea, be given full access and meet Kim Jong UN, and be \ one of the first reporters to freely report on what you see', ) ExpQ_26 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_27 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_28 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_29 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_30 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_7 = models.StringField( verbose_name="Despite the recent crimes and escalating drug-cartel violence, travel to Jalisco, Mexico\ to see the beautiful beaches at Lake Chapala (Mexico's largest freshwater lake", ) ExpQ_31 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_32 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_33 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_34 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_35 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_8 = models.StringField( verbose_name='Doing a safari off-road adventure at your local amusement park', ) ExpQ_36 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_37 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_38 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_39 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_40 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_9 = models.StringField( verbose_name='Driving your car at 100 mph on a road where the speed is 65 mph', ) ExpQ_41 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_42 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_43 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_44 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_45 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_10 = models.StringField( verbose_name='Even though it just erupted a couple of months ago, go volcano-boarding down the active\ volcano, Kilauea, in Hawaii', ) ExpQ_46 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_47 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_48 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_49 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_50 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_11 = models.StringField( verbose_name='Going ATV riding in Kauai, Hawaii along the trail where famous movies, like Jurassic Park, have\ been filmed', ) ExpQ_51 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_52 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_53 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_54 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_55 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_12 = models.StringField( verbose_name='Going fishing on a boat in the middle of the lake', ) ExpQ_56 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_57 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_58 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_59 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_60 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_13 = models.StringField( verbose_name='Going for a walk with your dog in your local forest', ) ExpQ_61 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_62 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_63 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_64 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_65 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_14 = models.StringField( verbose_name='Going on a black diamond slope when it is your first-time skiing', ) ExpQ_66 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_67 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_68 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_69 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_70 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_15 = models.StringField( verbose_name='Going volcano-boarding down an active volcano of Cerro Negro (has not erupted since 1999 and is\ deemed safe) in Nicaragua', ) ExpQ_71 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_72 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_73 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_74 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_75 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_16 = models.StringField( verbose_name='Handling a loaded gun and pointing it at your head', ) ExpQ_76 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_77 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_78 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_79 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_80 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_17 = models.StringField( verbose_name="Having dinner in the sky, where your table is lifted in the air by a crane over London's Canary \ Wharf", ) ExpQ_81 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_82 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_83 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_84 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_85 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_18 = models.StringField( verbose_name='Invest a small amount of money into a new start-up company', ) ExpQ_86 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_87 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_88 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_89 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_90 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_19 = models.StringField( verbose_name='Invest all of your life-savings into a risky, but exciting start-up company that has been \ described as the next-big start-up and has been compared to Google', ) ExpQ_91 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_92 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_93 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_94 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_95 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_20 = models.StringField( verbose_name='Invest all your life savings into a highly risky start-up that could make you rich if everything\ goes as planned', ) ExpQ_96 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_97 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_98 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_99 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_100 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_21 = models.StringField( verbose_name='Jet skiing at your local beach/lake/river', ) ExpQ_101 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_102 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_103 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_104 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_105 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_22 = models.StringField( verbose_name='Jumping from roof to roof in a city with buildings that are close together', ) ExpQ_106 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_107 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_108 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_109 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_110 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_23 = models.StringField( verbose_name='Parasailing at the Copacabana Beach in Rio de Janeiro and being able to see the statue of Christ \ the Redeemer', ) ExpQ_111 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_112 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_113 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_114 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_115 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_24 = models.StringField( verbose_name='While at the beach, you go far ot into the ocean where there are strong riptides', ) ExpQ_116 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_117 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_118 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_119 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_120 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_25 = models.StringField( verbose_name='Walking in the dangerous local inner city at midnight', ) ExpQ_121 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_122 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_123 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_124 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_125 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_26 = models.StringField( verbose_name='Use CRISPR to edit your genome to prevent diseases even though there is a lack of confirmed \ success in humans', ) ExpQ_126 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_127 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_128 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_129 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_130 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_27 = models.StringField( verbose_name='Traveling on a plane that goes five times the speed of sound although it has not been deemed \ commercial ready yet', ) ExpQ_131 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_132 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_133 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_134 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_135 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_28 = models.StringField( verbose_name='Travel and hop around the surface of Pluto even though it could possibly take 9.5 years one way', ) ExpQ_136 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_137 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_138 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_139 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_140 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp29 = models.StringField( verbose_name='Texting/calling someone that you have not spoken to in years', ) ExpQ_141 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_142 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_143 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_144 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_145 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_30 = models.StringField( verbose_name='Taking flight in a hot air balloon', ) ExpQ_146 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_147 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_148 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_149 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_150 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_31 = models.StringField( verbose_name='Taking a safari trip in Tanzania, Africa', ) ExpQ_151 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_152 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_153 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_154 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_155 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_32 = models.StringField( verbose_name="Taking a first-class trip to United Arab Emirates on Etihad's Airbus A830, which has been deemed\ the most luxurious plane", ) ExpQ_156 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_157 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_158 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_159 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_160 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_33 = models.StringField( verbose_name='Taking a 5-mile hike to get to your local river', ) ExpQ_161 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_162 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_163 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_164 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_165 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_34 = models.StringField( verbose_name='Taking a 5-hour road trip to see a concert', ) ExpQ_166 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_167 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_168 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_169 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_170 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_35 = models.StringField( verbose_name='Stargazing in your backyard', ) ExpQ_171 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_172 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_173 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_174 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_175 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_36 = models.StringField( verbose_name='Spending time and having dinner with your family and friends for a night in the city', ) ExpQ_176 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_177 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_178 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_179 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_180 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_37 = models.StringField( verbose_name='Setting off commercial fireworks in your backyard', ) ExpQ_181 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_182 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_183 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_184 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_185 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_38 = models.StringField( verbose_name='Seeing the Northern Lights at Abisko National Park in Sweden', ) ExpQ_186 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_187 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_188 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_189 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_190 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_39 = models.StringField( verbose_name='Seeing a professional sports game in person at a stadium', ) ExpQ_191 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_192 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_193 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_194 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_195 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_40 = models.StringField( verbose_name='Scuba-diving/snorkeling off of the coast of Maui to see the coral reefs and exotic aquatic life', ) ExpQ_196 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_197 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_198 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_199 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_200 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_41 = models.StringField( verbose_name='Riding a motorcycle without a helmet', ) ExpQ_201 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_202 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_203 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_204 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_205 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_42 = models.StringField( verbose_name='Playing with a poisonous snake that could potentially bite', ) ExpQ_206 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_207 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_208 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_209 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_210 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_43 = models.StringField( verbose_name='Pay to travel to the moon and back even though it would be expensive adn there are possible health\ risks', ) ExpQ_211 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_212 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_213 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_214 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_215 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 ) Exp_44 = models.StringField( verbose_name='Participate in a clinical trial that uses new, but potentially harmful, technology to edit your \ genes in order to prevent you from having a disease that is recurrent in your family', ) ExpQ_216 = models.PositiveIntegerField( verbose_name='How safe would you feel in this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_217 = models.PositiveIntegerField( verbose_name='How likely are you to accomplish this?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_218 = models.PositiveIntegerField( verbose_name='How confident would you feel in doing this scenario?', choices=range(1, 5, 1), widget=widgets.RadioSelectHorizontal() ) ExpQ_219 = models.CharField( verbose_name='Would you let a loved one perform this experience?', choices=['Yes', 'No'], widget=widgets.RadioSelect() ) ExpQ_220 = models.PositiveIntegerField( verbose_name='How much would you pay to experience this scenario? (Amount in $)', widget=widgets.Slider(), min=0, max=100000 )