Quiz
1# games: players and level
2QUEUE_LEVEL_RANGE = 53GAME_MAX_PLAYERS = 24
5# games: questions and answers
6GAME_QUESTIONS_COUNT = 37GAME_ANSWERS_COUNT = 48GAME_SUBTYPE_ANSWERS_COUNT = 29
10# games: time
11GAME_TIME_BEFORE_START = 512GAME_TIME_TO_ANSWER = 1013GAME_TIME_SHOW_ANSWER = 314
15# games: points
16GAME_POINTS_FOR_CORRECT = 117GAME_POINTS_FOR_FASTEST = 118
19# games: xp
20XP_PER_LEVEL = 100021XP_PER_GAME = 100022XP_FIRST_PLACE_BONUS = 20023XP_OUT_OF_LEVEL_BONUS_RATIO = 0.224
25# for models
26NULLABLE = {"blank": True, "null": True}27
28# questions: grade
29VOTES = 230